From 568c842c0c8c74758a2cba12450c88408a442396 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 07:16:21 +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 5d62410..e7e8a47 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 12.89.0 + 13.0.0 codbex-helios-parent From dbe05d58b0a56fb1c1bb001052e140dd38ef428a Mon Sep 17 00:00:00 2001 From: Iliyan Velichkov Date: Fri, 5 Jun 2026 12:52:03 +0300 Subject: [PATCH 2/3] Migrate to Spring Boot 4 auto-configuration packages Dirigible 13.0.0 (via codbex-platform-parent 13.0.0) upgrades to Spring Boot 4, which relocated the JDBC/JPA auto-configuration classes out of spring-boot-autoconfigure into dedicated modules: org.springframework.boot.autoconfigure.jdbc.* -> org.springframework.boot.jdbc.autoconfigure.* org.springframework.boot.autoconfigure.orm.jpa.* -> org.springframework.boot.hibernate.autoconfigure.* Update the @SpringBootApplication exclude imports in HeliosApplication accordingly so the application compiles and boots. Verified via the context-loads test. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../main/java/com/codbex/helios/HeliosApplication.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/src/main/java/com/codbex/helios/HeliosApplication.java b/application/src/main/java/com/codbex/helios/HeliosApplication.java index 3bd2f1b..588a137 100644 --- a/application/src/main/java/com/codbex/helios/HeliosApplication.java +++ b/application/src/main/java/com/codbex/helios/HeliosApplication.java @@ -12,10 +12,10 @@ 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 36ee28d98ba28730c2bff41931f9385f74d49056 Mon Sep 17 00:00:00 2001 From: Iliyan Velichkov Date: Fri, 5 Jun 2026 16:39:58 +0300 Subject: [PATCH 3/3] Bump codbex-platform-parent 13.0.0 -> 13.1.0 13.1.0 brings the adapted upstream SecurityIT (eclipse-dirigible/dirigible#5980) which tolerates the absence of dirigible-components-engine-native-apps. Helios deliberately does not bundle that engine, so its developer/operator/native-apps management endpoints return 404; the previous SecurityIT asserted 200 and failed. Verified: full build succeeds and SecurityIT now passes (Tests run: 6, Failures: 0) on Spring Boot 4.0.6 / Spring 7.0.7. 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 e7e8a47..91bbbea 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 13.0.0 + 13.1.0 codbex-helios-parent