Bump com.codbex.platform:codbex-platform-parent from 12.91.0 to 13.2.0#420
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 (via codbex-platform-parent 13.0.0) migrates from Spring Boot 3 to Spring Boot 4, which split spring-boot-autoconfigure into per-domain modules. Update the excluded auto-config imports to their new packages so the application compiles: - org.springframework.boot.autoconfigure.jdbc.* -> org.springframework.boot.jdbc.autoconfigure.* - org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration -> org.springframework.boot.hibernate.autoconfigure.HibernateJpaAutoConfiguration Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13.1.0 brings the adapted SecurityIT (eclipse-dirigible/dirigible#5980) that tolerates stacks with or without the native-apps functionality.
ThuF
approved these changes
Jun 5, 2026
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 brings Eclipse Dirigible 13.x and its migration from Spring Boot 3 to Spring Boot 4 (Spring Framework 7, Spring Security 7, Jakarta EE 11, Hibernate 7, Camel 4.20).This is a major bump, so it requires adapting Atlas source — a plain version bump does not compile.
Changes
12.91.0→13.1.0.AtlasApplication.java— Spring Boot 4 auto-config package moves. SB4 split the monolithicspring-boot-autoconfigurejar into per-domain modules, relocating the auto-config classes that Atlas excludes:org.springframework.boot.autoconfigure.jdbc.*→org.springframework.boot.jdbc.autoconfigure.*(DataSourceAutoConfiguration,DataSourceTransactionManagerAutoConfiguration,JdbcTemplateAutoConfiguration)org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration→org.springframework.boot.hibernate.autoconfigure.HibernateJpaAutoConfigurationWhy 13.1.0 (not 13.0.0)
13.1.0 includes the adapted
SecurityIT(eclipse-dirigible/dirigible#5980) that tolerates stacks with or without thenative-appsfunctionality (/services/native-appsmay returnOKorNOT_FOUND). Atlas keepsdirigible-components-engine-native-apps, so the endpoint returnsOK— compatible either way.Verified safe (no change needed)
@SpringBootApplication,@EnableScheduling,@EnableTransactionManagement,@EnableJpaAuditing,@EnableJpaRepositories,@CamelOpenTelemetry— packages unchanged.ApplicationListenersOrder.APP_LYFECYCLE_LOGGING_LISTENER— unchanged.*ITclasses — unchanged.--add-opensflags — already correct.Verification
mvn -T 1C clean install -P quick-build→ BUILD SUCCESS (all modules, executable jar produced).mvn clean install -P unit-tests→AtlasApplicationTestpasses (full Spring Boot 4 context boots cleanly).🤖 Generated with Claude Code