Skip to main content

priint:suite - Patch 162 - Change Log

This patch, released on May 14, 2025, focuses on significant backend code refactoring for the AdminUI to enhance performance and maintainability. Additionally, it addresses several bug fixes for priint:suite that were identified following the release of version 4.6.

The build name on FTP: 4.5.0.662

Software​

Windows:
PubServer_Install_Update_4.5.0.662.zip

Linux:
PubServer_Update_4.5.0.662_UbuntuLinux.deb

Release Notes​

The planner application

Issue keySummaryRelease notes
PRIINT-12131Neowise Permission Not EnforcedIt is now impossible to create a new document in Neowise without "NEO_DOCUMENT_CREATE" accessRight
PRIINT-12092Be able in Java to obtain the TeamID by looking up its display nameA temporary method has been added to PubServerSDK 4.5 for the outlined task. In newer versions of the priint:suite we support such Team searches via the PubServerAPI and its TeamServiceLocal and TeamQuery classes. An example of how to use this temporary API in 4.5: final String teamId = PlannerAPIServiceLocator.ServiceLocatorEnum.INSTANCE.getTeamFinder() .flatMap(teamFinder -> teamFinder.getTeamIdByName(teamName)) .orElseThrow(() -> new IllegalArgumentException("No team with name matching " + teamName));