From 1da7bc551ed403b2440ac1614a6766e3ee493ab4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 07:14:41 +0000 Subject: [PATCH 1/3] Bump com.codbex.platform:codbex-platform-parent from 12.89.0 to 13.0.0 Bumps [com.codbex.platform:codbex-platform-parent](https://github.com/codbex/codbex-platform-parent) from 12.89.0 to 13.0.0. - [Release notes](https://github.com/codbex/codbex-platform-parent/releases) - [Commits](https://github.com/codbex/codbex-platform-parent/compare/v12.89.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] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 442d474..c7f2163 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 12.89.0 + 13.0.0 codbex-iapetus-parent From 48e5108dc1c3af8ca1b5d08ef9bb2c9b528a2213 Mon Sep 17 00:00:00 2001 From: Iliyan Velichkov Date: Fri, 5 Jun 2026 13:02:53 +0300 Subject: [PATCH 2/3] Adapt to Spring Boot 4 for Dirigible 13.0.0 Dirigible 13.0.0 (via codbex-platform-parent 13.0.0) migrates to Spring Boot 4.0.6, which split the monolithic spring-boot-autoconfigure jar into per-technology modules. Update the excluded auto-configuration imports in IapetusApplication to their new Spring Boot 4 packages: - org.springframework.boot.autoconfigure.jdbc.* -> org.springframework.boot.jdbc.autoconfigure.* - org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration -> org.springframework.boot.hibernate.autoconfigure.HibernateJpaAutoConfiguration Verified with a full quick-build and the @SpringBootTest contextLoads test booting the complete Dirigible context under Spring Boot 4. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../main/java/com/codbex/iapetus/IapetusApplication.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/src/main/java/com/codbex/iapetus/IapetusApplication.java b/application/src/main/java/com/codbex/iapetus/IapetusApplication.java index 823924b..6c4c1a5 100644 --- a/application/src/main/java/com/codbex/iapetus/IapetusApplication.java +++ b/application/src/main/java/com/codbex/iapetus/IapetusApplication.java @@ -13,10 +13,10 @@ import org.apache.camel.opentelemetry.starter.CamelOpenTelemetry; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; -import org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration; -import org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration; -import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration; +import org.springframework.boot.hibernate.autoconfigure.HibernateJpaAutoConfiguration; +import org.springframework.boot.jdbc.autoconfigure.DataSourceAutoConfiguration; +import org.springframework.boot.jdbc.autoconfigure.DataSourceTransactionManagerAutoConfiguration; +import org.springframework.boot.jdbc.autoconfigure.JdbcTemplateAutoConfiguration; import org.springframework.data.jpa.repository.config.EnableJpaAuditing; import org.springframework.data.jpa.repository.config.EnableJpaRepositories; import org.springframework.scheduling.annotation.EnableScheduling; From dd09d097653c27240b2ced594b7bbc4004f5d697 Mon Sep 17 00:00:00 2001 From: Iliyan Velichkov Date: Fri, 5 Jun 2026 15:59:48 +0300 Subject: [PATCH 3/3] Bump codbex-platform-parent to 13.1.0 13.1.0 ships Dirigible's adapted SecurityIT (eclipse-dirigible PR #5980), which tolerates a custom stack without the native-apps engine. iapetus does not bundle dirigible-components-engine-native-apps, so the prior 13.0.0 SecurityIT failed by asserting /services/native-apps returns 200 OK; the adapted test now accepts OK or NOT_FOUND. Co-Authored-By: Claude Opus 4.8 (1M context) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c7f2163..5ee0a11 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 13.0.0 + 13.1.0 codbex-iapetus-parent