EximeeBPMS 1.2.x Enterprise Edition Release Notes

Edition: Enterprise  |  Baseline: EximeeBPMS 1.2.0 CE

1.2.19-ee is the last release on this track. Starting with 1.3.1-ee, the Enterprise Edition version numbering moves to the 1.3.x line — see EximeeBPMS 1.3.x Enterprise Edition Release Notes.


1.2.19-ee

Release date: 15.07.2026

Highlights

  • Script Guard audit mode, persistent violation store, and SIEM integration
  • UUID v7 is now the default ID generator — UUID v1 kept as a deprecated fallback, scheduled for removal in 1.4.0
  • Signed SBOM published with every release — CycloneDX SBOM (JSON + XML), signed with both GPG and Sigstore
  • CMMN support removed from the engine, migration tooling, and test suite
  • javax (legacy) namespace support dropped — Jakarta EE only from this release on
  • Large dependency refresh addressing vulnerabilities across JDBC drivers, Spring, Tomcat, WildFly, and more
  • Fixed invalid X-Authorized-User header value for OAuth users with non-ASCII characters

New Features

Script Guard — Audit Mode, Violation Store & SIEM Integration

Building on the enforcement engine introduced in 1.2.13-ee, Script Guard adds:

  • An AUDIT enforcement mode: violations are recorded but script execution is not blocked — the recommended first step before enabling ENFORCE.
  • A persistent, queryable violation store: each violation (timestamp, process definition key, activity ID, scripting language, rule code, reason) is written to a dedicated script.security schema component, so it survives engine restarts and can be queried through the REST API.
  • Hot-reload configuration: enforcement mode and the process-definition allowlist can be changed at runtime via the REST API — no restart, propagated to all engine nodes within 30 seconds.
  • SIEM integration: a new ScriptViolationListener, wired through the BusinessEventPublisher SPI, forwards violations to downstream security monitoring in real time.

→ Script Guard → Securing Custom Code → Business Events

UUID v7 as Default ID Generator

The engine now generates entity IDs as UUID v7 by default (StrongUuidGenerator) instead of UUID v1. UUID v7 is time-ordered, which improves index locality on high-write tables, and — unlike UUID v1 — does not embed the generating machine’s MAC address.

The previous UUID v1 generator is kept as a deprecated fallback:

eximeebpms.bpm.id-generator=uuid-v1

It will be removed in EximeeBPMS 1.4.0.

→ Id Generators

Signed SBOM on Every Release

Every Enterprise Edition release now publishes a CycloneDX Software Bill of Materials (JSON and XML) covering all shipped modules, attached to the GitHub release alongside the build artifacts. Each SBOM file is signed twice — with a detached GPG signature and with Sigstore (cosign, keyless) — so the provenance of the SBOM itself can be verified independently of your artifact repository.

Other Engine Improvements

  • Graceful shutdown — pending external tasks are now unlocked when the engine stops, instead of staying locked until their lock timeout expires.
  • A new SPI listener for external task execution statistics.

Breaking Changes

CMMN Support Removed

CMMN 1.1 support — the engine, migration tooling, and associated tests — has been removed from EximeeBPMS Enterprise Edition. Case management use cases remain fully supported through BPMN.

This release removes CMMN ahead of the Community Edition, where it is still deprecated pending removal in 1.4.0. Enterprise Edition customers should follow the CMMN Deprecation & Removal guide before upgrading to 1.2.19-ee.

javax (Legacy) Namespace No Longer Supported

Support for the legacy javax namespace has been dropped; only Jakarta EE (jakarta.*) is supported from this release on. Application servers and containers that have not migrated to Jakarta EE cannot run this version.

Technical Updates

Dependency Updates

DependencyPreviousUpdated
H22.3.2322.4.240
Liquibase5.0.15.0.3
MySQL Connector/J8.3.09.7.0
Oracle JDBC (ojdbc11)23.5.0.24.0723.26.2.0.0
PostgreSQL JDBC42.5.542.7.11
Microsoft SQL Server JDBC8.4.1.jre813.4.0.jre11
IBM DB2 JDBC11.5.0.011.5.9.0
Kafka Clients3.9.13.9.2
RESTEasy (engine-rest-jakarta)6.2.1.Final6.2.3.Final
RESTEasy (assembly-jakarta / webapps)6.2.8.Final6.2.16.Final
Netty4.1.89.Final4.1.135.Final
Arquillian BOM1.1.10.Final1.10.2.Final
Groovy5.0.55.0.6
Jackson2.21.32.21.4
Jakarta XML Bind API4.0.24.0.5
ShrinkWrap Resolvers3.3.43.3.7
Spring Boot4.0.64.1.0
Spring Framework7.0.77.0.8
Tomcat 1010.1.5510.1.56
WildFly37.0.0.Final40.0.1.Final
WildFly Core test framework29.0.0.Final32.0.2.Final
WildFly Arquillian container adapters5.0.1.Final5.1.0.Final
Java UUID Generator5.1.05.2.0
Apache Ant1.7.11.10.17
Tomcat JDBC / Tomcat Juli7.0.3311.0.22

Resolved CVE Vulnerabilities

Medium
CVECVSSComponentDescriptionFixed In
CVE-2024-29025—Netty (HttpPostRequestDecoder) ≤4.1.107.Final“Unbounded memory allocation via a crafted multipart/chunked POST request causes denial of service.” Fixed in Netty 4.1.108.Final.1.2.19-ee
CVE-2021-36373—Apache Ant ≤1.10.10“Reading a crafted tar archive during the build allocates unbounded memory, causing denial of service.” Fixed in Ant 1.10.11.1.2.19-ee
CVE-2021-36374—Apache Ant ≤1.10.10“Same unbounded-allocation issue as CVE-2021-36373, affecting zip and zip-derived archive formats.” Fixed in Ant 1.10.11.1.2.19-ee
CVE-2020-1945—Apache Ant ≤1.10.7“Use of the default, predictable system temp directory can leak sensitive build information to other local users.” Fixed in Ant 1.10.8.1.2.19-ee

The remaining dependency updates in this batch are routine security-motivated bumps (H2, Liquibase, MySQL Connector/J, Oracle JDBC, PostgreSQL JDBC, Microsoft SQL Server JDBC, Kafka Clients, RESTEasy, Groovy, Jackson, Jakarta XML Bind API, ShrinkWrap Resolvers, Spring Boot, Spring Framework, Tomcat, WildFly). No specific CVE was identified whose affected-version range matches this release’s starting versions for those components — consult each project’s own security advisories before citing this release in a compliance report.

Bug Fixes

  • Fixed invalid X-Authorized-User header value for OAuth users with non-ASCII characters in their display name.
  • Resolved flaky ExclusiveJobAcquisitionTest and other flaky integration tests; removed a redundant DROP INDEX in business-event drop scripts.
  • Fixed remaining CI and integration test issues (engine startup, ShrinkWrap CI resolution, HistoryCleanupTest timezone, CMMN migration leftovers, LoginIT).
  • Extracted ACT_RU_SCRIPT_VIOLATION into its own script.security schema component for correct dbSchemaUpdate handling across all supported databases.

Build Configuration

  • Signed SBOM generation added to the release pipeline (see Signed SBOM on Every Release above).
  • Continued EximeeBPMS rebranding across internal REST resource and configuration class names.
  • Removed an unused Camunda 7.2.0 reference; refactored instance-migration test fixtures to EximeeBPMS versioning.

1.2.18-ee

Release date: 16.06.2026

Highlights

  • Spring Framework 7.0.7 and Tomcat 10.1.55 security updates (9 CVEs resolved)
  • Removed legacy Tomcat 9 and WildFly 26 from the build matrix
  • Jakarta EL API 6.0.1 and Quarkus 3.36.1 upgrades

Technical Updates

Dependency Updates

DependencyPreviousUpdated
Spring Boot4.0.34.0.6
Spring Framework7.0.57.0.7
Tomcat 1010.1.5010.1.55
Jakarta EL API4.0.06.0.1
Quarkus3.28.43.36.1
Groovy5.0.45.0.5
AssertJ3.27.63.27.7
Maven Dependency Plugin2.83.11.0
commons-codec1.151.22.0
eximeebpms-monitor1.4.01.6.0

Resolved CVE Vulnerabilities

High
CVECVSSComponentDescriptionFixed In
CVE-2026-29145—Apache Tomcat 10.1.50–10.1.52“Improper input validation (incomplete fix for CVE-2025-66614).” Fixed in Tomcat 10.1.53.1.2.18-ee
Medium
CVECVSSComponentDescriptionFixed In
CVE-2026-22740—spring-webflux ≤7.0.6“Denial of service via orphaned multipart temporary files when client disconnects.” Fixed in Spring Framework 7.0.7.1.2.18-ee
CVE-2026-22741—spring-webmvc / spring-webflux ≤7.0.6“Static resource cache poisoning via specially crafted requests.” Fixed in Spring Framework 7.0.7.1.2.18-ee
CVE-2026-22745—spring-webmvc ≤7.0.6“Denial of service in static resource resolution on Windows paths.” Fixed in Spring Framework 7.0.7.1.2.18-ee
CVE-2026-227375.9spring-webmvc / spring-webflux ≤7.0.5“Path traversal / information disclosure via script view templates (JRuby/Jython).” Fixed in Spring Framework 7.0.6.1.2.18-ee
CVE-2026-22735—spring-webmvc / spring-webflux ≤7.0.5“Server-Sent Event stream corruption.” Fixed in Spring Framework 7.0.6.1.2.18-ee
CVE-2026-29129—Apache Tomcat“Open redirect via crafted URL when LoadBalancerDrainingValve is active.” Fixed in Tomcat 10.1.55.1.2.18-ee
CVE-2026-24734—Apache Tomcat Native“OCSP response not fully verified; certificate revocation bypass.”1.2.18-ee
CVE-2026-24733—Apache Tomcat ≤10.1.49“HTTP/0.9 GET request bypasses HEAD-only security constraints.” Fixed in Tomcat 10.1.50.since 1.2.16-ee

Bug Fixes

  • Fixed Jython BOM dependency configuration.
  • Resolved integration test failures in the CI matrix (PostgreSQL, cross-database, WildFly + webapps).

Build Configuration

  • Removed legacy Tomcat 9 and WildFly 26 from the build matrix. The shaded JUEL dependency was replaced with the standard distribution.

1.2.17-ee

Release date: 03.06.2026

Highlights

  • Java version and dependency refresh
  • Critical Jython deserialization vulnerability fixed (CVE-2016-4000)

Technical Updates

Dependency Updates

DependencyPreviousUpdated
eximeebpms-monitor1.2.01.4.0

Resolved CVE Vulnerabilities

Critical
CVECVSSComponentDescriptionFixed In
CVE-2016-40009.8org.python:jython ≤2.7.0“Unsafe deserialization of untrusted data enabling arbitrary code execution (since Jython 2.7.0).” This vulnerability is exploitable if process definitions use Jython scripts. Fixed by upgrading Jython.1.2.17-ee

1.2.16-ee

Release date: 02.06.2026

Highlights

New Features

Business Events with Transactional Outbox

A native business event system with a transactional outbox pattern. Process-level events (process instance lifecycle, task lifecycle, job execution) are captured inside the engine transaction and written to a dedicated outbox table. A relay component reads from the outbox and delivers events to configured downstream systems (Kafka, HTTP webhooks, etc.), guaranteeing at-least-once delivery without coupling downstream systems to the engine transaction.

A BusinessEventPublisher SPI allows custom event routing and transformation. Database schema upgrade scripts for all supported databases are included.

→ Business Events

Configurable OAuth2 Endpoints

OAuth2 configuration is now fully externalised. Authorization, token, and userinfo endpoints are configurable via Spring Boot properties. The engine also respects a configurable webapp context path for correct OAuth2 redirect handling.

→ Spring Security Integration

Configuration Changes

New properties for Business Events and OAuth2:

# Business Events
eximeebpms.bpm.business-events.enabled=true

# OAuth2 endpoints
eximeebpms.bpm.security.oauth2.authorization-endpoint=https://auth.example.com/oauth2/authorize
eximeebpms.bpm.security.oauth2.token-endpoint=https://auth.example.com/oauth2/token
eximeebpms.bpm.security.oauth2.userinfo-endpoint=https://auth.example.com/oauth2/userinfo

# Webapp context path
eximeebpms.bpm.webapp.path=/bpm

User Experience Improvements

Script Guard — Reduced False Positives

The NIO blocking enforcement in Script Guard was narrowed to file and network APIs only. Pure computation (sorting, string manipulation) is no longer subject to blocking checks, reducing false positives and improving performance of compliant scripts.

→ Script Guard
→ Securing Custom Code

Technical Updates

Dependency Updates

DependencyPreviousUpdated
Gson2.8.92.14.0
Jackson2.15.22.21.3
Mockito5.10.05.23.0

Resolved CVE Vulnerabilities

Medium
CVECVSSComponentDescriptionFixed In
CVE-2023-351164.7com.fasterxml.jackson.core:jackson-databind ≤2.15.2“Cyclic dependency chain causes denial of service on crafted input. (Disputed by Jackson maintainers as not externally exploitable — included for completeness.)” Fixed in jackson-databind 2.16.0.1.2.16-ee

1.2.15-ee

Release date: 22.05.2026

Release-pipeline bookkeeping only. No functional or security changes.


1.2.14-ee

Release date: 22.05.2026

Release-pipeline bookkeeping only. No functional or security changes.


1.2.13-ee

Release date: 21.05.2026

Highlights

  • Script Guard — enforce which scripts are allowed to execute in the engine
  • Groovy upgraded from 4.x to 5.x

New Features

Script Guard

A framework for controlling which scripts are permitted to execute in the process engine, enforced at two levels:

  • BPMN parse time — script content is validated when a process definition is deployed; definitions containing disallowed scripts are rejected before they can run.
  • Runtime — scripts are validated immediately before execution; violations abort execution with a ScriptEvaluationException.

A built-in NIO blocking policy prevents scripts from performing blocking file system and network calls on the engine thread pool. Policies can be composed freely:

configuration.setScriptSecurityPolicy(new CompositeScriptSecurityPolicy(
    new NioBlockingPolicy(),
    new AllowlistScriptPolicy(allowedScriptIds)
));

→ Script Guard
→ Securing Custom Code
→ Scripting

Technical Updates

Dependency Updates

DependencyPreviousUpdated
Groovy4.0.225.0.4

Bug Fixes

  • Fixed Sonar build configuration causing analysis failures on CI.

Infrastructure Releases: 1.2.1-ep – 1.2.12-ee

Releases 1.2.1-ep through 1.2.12-ee established the Enterprise Edition release pipeline.

VersionDateSummary
1.2.1-ep08.05.2026First EE release — includes CE 1.3.0 features (multithreaded External Task Client, UUID v7, task query OR fix) and initial CI/CD pipeline
1.2.2-ep11.05.2026Release action configuration; snapshot release pipeline fix
1.2.3-ee11.05.2026Nexus TLS certificate for snapshot builds; distribution management release repository
1.2.4-ee12.05.2026Version release preparation
1.2.5-ee12.05.2026Release workflow fix
1.2.6-ee12.05.2026Release workflow fix
1.2.7-ee12.05.2026Release workflow fix
1.2.8-ee12.05.2026Update Sonar host URL to current internal instance
1.2.9-ee13.05.2026Release workflow fixes
1.2.10-ee13.05.2026Exclude duplicated sources from release artifact
1.2.11-ee13.05.2026Exclude duplicated sources from release artifact
1.2.12-ee13.05.2026Workflow simplification; disable snapshot deploys

On this page