Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
711:releasenotes [2024/08/02 12:16] Meier, Erich711:releasenotes [2024/09/16 13:48] (current) Weinlein, Thomas
Line 18: Line 18:
  
 Show initiator of process release automations Show initiator of process release automations
 +
 +In the release automation, the responsible users can now be displayed if tasks have not yet been assigned. The information can also be queried via the Stages API:
 +
 +<code ->
 +stages.getAllTasks().forEach(task => {
 +  if (task.getProperty("State") == "TODO") {
 +    const step = task.getEntities("containsStep@SYSTEM")[0];
 +    const participant = step.getEntities("containsParticipant@SYSTEM")[0];
 +    if (!!participant) {
 +      const users = participant.getEntities("containsUser@SYSTEM");
 +      users.forEach(user => {
 +        log.warn(step.getProperty("Name") + ": " +  user.getProperty("Fullname"));
 +      });
 +    }
 +  }
 +});
 +</code>
  
 SCIM Support SCIM Support
  
 Number of supported languages was increased from 5 to 8 Number of supported languages was increased from 5 to 8
 +
 +Redesign of report pages: reuse existing report results, etc.
  
 User interface improvements User interface improvements
Line 27: Line 46:
   * Added element path to search result page   * Added element path to search result page
   * Handling of processes with many modules was improved   * Handling of processes with many modules was improved
-  * Redesign of report pages 
   * Process automation participant menu has been moved to the "Management" menu   * Process automation participant menu has been moved to the "Management" menu
   * Process interfaces page redesign   * Process interfaces page redesign
Line 40: Line 58:
   * SPNEGO SSO support removed   * SPNEGO SSO support removed
   * "Admin only" license type   * "Admin only" license type
 +
 +Reporting
 +
 +  * New UI
 +  * Execution in background
 +  * Support for DOCX and PPTX removed