Camunda Automation Platform 7.23.0-alpha4 released

We are pleased to announce the next alpha release of Camunda 7.23.0 This release features the following improvements:

  • Configure the default value for the cascade flag
  • Display business key for called process instances
  • Process Instance API extended
  • 4 Bug Fixes

You can Download Camunda for free or Run it with Docker.

For a complete list of all improvements, take a look at the release notes. Please also see the list of known issues.

If you want to dig in deeper, you can find the source code on GitHub.

Configure the default value for the cascade flag

With this release, it’s now possible to configure the default value of the cascade flag for Cockpit. This flag is used when deleting process definitions or deployments and has always had a default value of false, meaning that the user would have to manually set it to true on every deletion. It can now be configured via the cascade property in the app/cockpit/scripts/config.js file as shown below:

export default {
  cascade: {
    default: true,
  }
};

Display business key for called process instances

In Cockpit, the “called process instances” tab of the process instance view now displays the business key of every called process instance referenced by the current process. This is available for both runtime and historic (enterprise edition only).

Process Instance API extended

With this release, you can now retrieve the process definition key of a process instance. The addition is made available to Java and REST API. For usages, please refer to our documentation:

This is a community contribution, thanks to Nandanrshenoy! :tada:

Share Your Thoughts with Us!

Your feedback is really important to us, so please download Camunda 7.23.0-alpha4, try it out, and let us know what you think about it.

You can contact us in the forum, send a tweet to @Camunda, or file a bug in our issue tracker.

2 Likes