Skip to content

2.7.0

Compare
Choose a tag to compare
@saig0 saig0 released this 27 Jan 05:27
· 346 commits to main since this release
5f38e38

What's Changed ✨

  • feat: Migrate to Spring-GraphQL by @saig0 in #323
  • feat: Add subscriptions for process and process instance updates by @saig0 in #328
  • build: Update maven plugins by @saig0 in #329

Receive an update if a new process is deployed:

subscription {
  processUpdates {
    key
    bpmnProcessId
    version
  }
}

Receive an update if any process instance has changed (e.g. instance created, variable set, etc.):

subscription {
  processInstanceUpdates {
    processInstance {
      key
      state
    }
    updateType
  }
}

Databases schema 🔥

  • Rename the column key to key_ in all entities (forced by new H2 version)
  • Rename the column value to value_ in all entities (forced by new H2 version)
  • Add the column processDefinitionKey to the entities incidents, job, and variable

Runtime 🔧

Dump the Java version from 11 to 17.

Dependencies

  • chore(deps): bump maven-dependency-plugin from 3.4.0 to 3.5.0 by @dependabot in #319
  • chore(deps): bump zeebe-bom from 8.1.5 to 8.1.6 by @dependabot in #318
  • chore(deps): bump kotlin.version from 1.7.22 to 1.8.0 by @dependabot in #317
  • chore(deps): bump spring-boot-maven-plugin from 2.7.6 to 2.7.8 by @dependabot in #327

Full Changelog: 2.6.0...2.7.0