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/07/31 22:14] Meier, Erich711:releasenotes [2024/09/16 13:48] (current) Weinlein, Thomas
Line 1: Line 1:
 ====== Release Notes for Stages 7.11 ====== ====== Release Notes for Stages 7.11 ======
 +
 +TBD: Intro text
  
 **Version 7.11 comes with Long Term Support (LTS), so customers looking for long term stability are able to upgrade to this release and stay there for at least two years with full maintenance. As a consequence, the maintenance for the previous LTS release 7.9 will end on March 31, 2025.** **Version 7.11 comes with Long Term Support (LTS), so customers looking for long term stability are able to upgrade to this release and stay there for at least two years with full maintenance. As a consequence, the maintenance for the previous LTS release 7.9 will end on March 31, 2025.**
Line 17: Line 19:
 Show initiator of process release automations Show initiator of process release automations
  
-SKIM Support+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:
  
-Added element path to search result page+<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>
  
-Handling of processes with many modules was improved+SCIM Support
  
-Redesign of report pages+Number of supported languages was increased from 5 to 8
  
-Process interfaces page redesign+Redesign of report pages: reuse existing report results, etc.
  
-"fire once" admin jobs+User interface improvements
  
-Support for embedding Stages content in other web applications+  * Added element path to search result page 
 +  * Handling of processes with many modules was improved 
 +  * Process automation participant menu has been moved to the "Management" menu 
 +  * Process interfaces page redesign 
 +  * Warning when creating versions of reference models 
 +  * Comments for collapsed associations to multiple workspaces can now be directly edited
  
-MFA Support for Local Accounts+Admin & Security
  
-Improved SSO login+  * "fire once" admin jobs 
 +  * MFA Support for Local Accounts 
 +  * Improved login page for SSO 
 +  * SPNEGO SSO support removed 
 +  * "Admin only" license type
  
-"Admin only" license type+Reporting
  
-Warning when creating versions of reference models+  * New UI 
 +  * Execution in background 
 +  * Support for DOCX and PPTX removed