Bump com.codbex.platform:codbex-platform-parent from 12.91.0 to 13.2.0#293
Merged
ThuF merged 4 commits intoJun 5, 2026
Merged
Conversation
Bumps [com.codbex.platform:codbex-platform-parent](https://github.com/codbex/codbex-platform-parent) from 12.91.0 to 13.0.0. - [Release notes](https://github.com/codbex/codbex-platform-parent/releases) - [Commits](codbex/codbex-platform-parent@v12.91.0...v13.0.0) --- updated-dependencies: - dependency-name: com.codbex.platform:codbex-platform-parent dependency-version: 13.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Dirigible 13.0.0 (brought in by codbex-platform-parent 13.0.0) introduces the new dirigible-components-engine-java module. Its beans live under org.eclipse.dirigible.engine.java, and the BPM Flowable engine now requires one of them (ClientClassLoaderHolder) at startup. GaiaApplication restricted component scanning to com.codbex.gaia and org.eclipse.dirigible.components, so the new engine-java beans were never registered and the application context failed to start: No qualifying bean of type 'org.eclipse.dirigible.engine.java.runtime.ClientClassLoaderHolder' Add org.eclipse.dirigible.engine to the scanned base packages (Dirigible's own reference application scans all of org.eclipse.dirigible by default). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13.1.0 brings the adapted Dirigible SecurityIT (eclipse-dirigible/dirigible#5980) which tolerates editions that do not bundle the native-apps engine, so Gaia's re-run of the common test suite passes without adding dirigible-components-engine-native-apps. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
Author
|
A newer version of com.codbex.platform:codbex-platform-parent exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps
com.codbex.platform:codbex-platform-parentfrom 12.91.0 to 13.1.0, which upgrades the bundled Eclipse Dirigible to 13.x (Spring Boot 4, newdirigible-components-engine-javamodule, native-apps engine, etc.).This PR also adapts the Gaia edition to the new platform so the build and tests pass.
Changes
pom.xml—codbex-platform-parent12.91.0→13.1.0.application/.../GaiaApplication.java— addorg.eclipse.dirigible.enginetoscanBasePackages.Dirigible 13.0.0 introduced
dirigible-components-engine-java, whose Spring beans live underorg.eclipse.dirigible.engine.java(outside the previously-scannedorg.eclipse.dirigible.components).The BPM Flowable engine now requires one of them (
ClientClassLoaderHolder) at startup, so withoutthis the application context failed to start with:
Dirigible's own reference application scans all of
org.eclipse.dirigibleby default; this mirrorsthat intent while keeping Gaia's curated scan list.
Notes
dirigible-components-engine-native-apps) is intentionally not bundled —the Gaia edition curates
group-engines-coreand stays out of the fullgroup-engines. The adaptedSecurityITshipped in 13.1.0 (Change SecurityIT so that it tolerates custom stack which doesn't have the native apps functionality eclipse-dirigible/dirigible#5980) tolerates editions without thenative-apps stack, so the common test suite passes without it.
🤖 Generated with Claude Code