camunda BPM 7.0-alpha7 released

By
  • Blog
  • >
  • camunda BPM 7.0-alpha7 released
TOPICS

30 Day Free Trial

Bring together legacy systems, RPA bots, microservices and more with Camunda

Sign Up for Camunda Content

Get the latest on Camunda features, events, top trends, and more.

TRENDING CONTENT
camunda BPM 7.0.0-alpha7 is out now!

The highlights of this new release are:

  • In Cockpit we worked on the visualization of Process Instances:
    • Incidents of a running process instance will be shown in the corresponding rendered process diagram.
    • The former introduced Activity Instance Tree will be visualized as a tree.
    • Now it is possible to select a BPMN element in the rendered process diagram or to select a activity instance within the activity instance tree. If a single BPMN Element is selected, the corresponding activity instances will also be selected in the tree (and vice versa).
    • Variable instances of the process instance/activity instances will be shown in the view.
  • In Cockpit you can switch between the configured process engines (multi-tenancy).
  • The variable instances can be selected via an introduced Java and REST Api.
  • Support of a further BPMN 2.0 Element: Link Event.
  • New user guide for Cycle and Tasklist.

33 issues were closed. See the complete release notes in Jira.

Visualization of a Process Instance

The following screencast summarizes all in this release implemented features in Camunda Cockpit:

Camunda BPM 7.0-alpha7 released

Support of multi-tenancy in Camunda Cockpit

Due to the possibility to run multiple tenants on the Camunda BPM platform you can now switch between the configured process engines in Cockpit to get the process engine specific information.

switching the configured process engines

Variable Instance query

Now it is possible to create a variable instance query to get variables instances:
runtimeService
  .createVariableInstanceQuery()
  .list()
Furthermore, with the Java Api you are able to query after variables instances for more than one task id, process instance id, execution id and activity instance id at once. For example:

runtimeService
  .createVariableInstanceQuery()
  .taskId("aTaskId", "anotherTaskId")
  .list

In the case of the example you will get all variable instances with the task id “aTaskId” and “anotherTaskId”. This is also possible with the process instance ids, execution ids and activity instance ids.

Note: At the moment it is not possible to select variable instance with the type ‘bytes’.

The variable instance query is also exposed via the REST API.

Try All Features of Camunda

Related Content

Process blueprints can now be found on Camunda marketplace! Read on to learn how they can help you and how you can contribute.
Achieve operational superiority with the intelligent backbone of service orchestration. Learn how and why you should orchestrate your services.
Learn about how AI automation can help you and your business thrive. Get insights into how you can lower costs, scale faster, improve service and more with AI.