From de8b3180abd7f97c88d0a0c4210d8f1e39f88de7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 07:14:31 +0000 Subject: [PATCH 1/4] Bump com.codbex.platform:codbex-platform-parent from 12.91.0 to 13.0.0 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](https://github.com/codbex/codbex-platform-parent/compare/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] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b40eed6..b06aca0 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 12.91.0 + 13.0.0 codbex - atlas - parent From 669ac916f282d9b5f92a9546accefc697bb4806e Mon Sep 17 00:00:00 2001 From: Iliyan Velichkov Date: Fri, 5 Jun 2026 13:15:51 +0300 Subject: [PATCH 2/4] Adapt AtlasApplication to Spring Boot 4 auto-config package moves 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) --- .../src/main/java/com/codbex/atlas/AtlasApplication.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/src/main/java/com/codbex/atlas/AtlasApplication.java b/application/src/main/java/com/codbex/atlas/AtlasApplication.java index 320e0d1..a83b790 100644 --- a/application/src/main/java/com/codbex/atlas/AtlasApplication.java +++ b/application/src/main/java/com/codbex/atlas/AtlasApplication.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 5aaea71b690162f3f1d852b9b859511a11f13f9f Mon Sep 17 00:00:00 2001 From: Iliyan Velichkov Date: Fri, 5 Jun 2026 15:52:28 +0300 Subject: [PATCH 3/4] Bump codbex-platform-parent to 13.1.0 13.1.0 brings the adapted SecurityIT (eclipse-dirigible/dirigible#5980) that tolerates stacks with or without the native-apps functionality. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b06aca0..17759bc 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 13.0.0 + 13.1.0 codbex - atlas - parent From 39c703ec02a78da574042655ea193272dff4d17b Mon Sep 17 00:00:00 2001 From: Yordan Pavlov Date: Fri, 5 Jun 2026 23:18:54 +0300 Subject: [PATCH 4/4] Update parent version to 13.2.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 17759bc..2f8bec0 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 13.1.0 + 13.2.0 codbex - atlas - parent