Skip to main content

priint:suite - Patch 161 - Change Log

This patch, released on August 1, 2025, continues development on new features and includes several bug fixes.

The build name on FTP: 4.6.0.814

Software

Windows:
PubServer_Install_Update_4.6.0.814.zip

Linux:
PubServer_Update_4.6.0.814_UbuntuLinux.deb

Release Notes

The Admin application

TicketDescriptionRelease note
ADMIN-2488Content module - Default tab on the content detail view should be the first in the valid tab listThe content detail view now always opens on the first valid tab. Previously, the view was inconsistent, sometimes showing details when clicked, and other times not displaying them at all.
ADMIN-2440Remove the clickable behavior from the wizard stepsWizard steps no longer appear clickable. Previously, the cursor suggested they could be clicked, but nothing happened. This update removes that confusing UI behavior.
ADMIN-2177[Content] require support hidden field in GuiParameterYou can now use hidden fields in GuiParameter. This allows dynamic forms to carry background data that users don’t need to see but is still required for the process. It keeps forms cleaner while ensuring all necessary information is passed along.
ADMIN-1405Implement a new endpoint to display the status of certain applicationsDisplays W2P and Data Management status in Technical Info section, including server version and connection state.

The planner application

TicketDescriptionRelease note
PRIINT-12121Temporarily remove the METADATA_SET options from RenderingServiceWhen updating to InDesignServer Plug-Ins 5.0 R37027 or newer or pdf native libraries for rendering 5.0 R37027 or newer, this will cause missing metadata after executing rendering processes. This is fixed in this update of rendering service 4.6.0 and newer.
PRIINT-12111Merge / port bugfix 10967 from 4.3 to 4.4, 4.5, 4.6, 4.7A problem with PubServer method registration caused some find statements to use a wrong instruction to fetch sub nodes, which typically led to an error message shown in InDesign Desktop.
PRIINT-12110Improve cleanup / removal of temporary and cache folders in rendering libraryTemporary files and folders created by the rendering service were not removed completely after shutdown. You will find a couple of (empty) directories named "priint-jrl*" and "com.priint.comet.renderer.ids.InDesignServerLink*" in the temporary folder of the service user or local user running the rendering service. You should stop the rendering service, delete all these directories, update and start again. The temporary left-over problem should be fixed then - at least, if the rendering service is stopped and started regularly.
PRIINT-12086Flatplan - Multiselection - Number of notes displays wrongly on each pageFixed incorrect note count display in multiselection mode
PRIINT-12083[MuaConnector] Error when serialize to jsonError when serialize to json has been solved.
PRIINT-12082GUI Parameters - Investigate/implement hidden GUI parameterGuiElementType.HIDDENFIELD was added
PRIINT-12029Upload documents do not work with a duplicated/imported comet projectUploading a document template with a duplicated/imported comet project was not possible. Fixed.
PRIINT-12013Upload InDesign Document locks sometimes documents - Can not unlockThe rendering-service now uses the so-called transparent sessions meaning it passes User’s session that started the process to perform all its actions. This should decrease the risk of running into real and technical user deadlocks.
PRIINT-11818Missing execution summary when camunda process is finishedExecution summary with the duration of the process is now correctly sent.
PRIINT-11603Set default application in authService configIt is now possible to set the default application in the authservice config. Please consult the AuthService configuration documentation for more details.
PRIINT-10606New Task Plugin Method: Download generated PDF from MinIO to FilesystemA new Pubserver plugin is available: com.priint.pubserver.engine.plugin.camunda.DownloadPdfsPlugin It can be used in custom processes to download document PDFs from object-storage and putting them in a designated folder on a file system.
Input variables:
- tenant (Tenant name, String)
- project (Project name, String)
- documentid (Id of the document, String)
- pdfProfiles (Optional List<String>)
- fileSystemPdfFilenamePrefix (Optional, String)
- fileSystemOutputFolder (String)
The plugin downloads the PDFs, renames them with the prefix (if given), and saves them in the output folder. A list of file paths is returned in variable DOWNLOADED_PDF_PATHS. If a requested PDF is missing in storage, a PriintStorageException is thrown.