From 402e8ce15955530f9942723a29c8605fb88fa086 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 07:15:01 +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 5635bf0..4696fbc 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 12.89.0 + 13.0.0 codbex - oceanus - parent From 35784d877d078ca55ac148582475caa9dcf5eb81 Mon Sep 17 00:00:00 2001 From: Iliyan Velichkov Date: Fri, 5 Jun 2026 13:04:27 +0300 Subject: [PATCH 2/3] Migrate auto-configuration imports for Spring Boot 4 / Dirigible 13 The codbex-platform-parent 13.0.0 bump brings Eclipse Dirigible 13.0.0, which migrates from Spring Boot 3 to Spring Boot 4. In Spring Boot 4 the auto-configuration classes were split into modular packages, so the imports excluded in OceanusApplication had to be relocated: org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration -> org.springframework.boot.jdbc.autoconfigure.DataSourceAutoConfiguration org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration -> org.springframework.boot.jdbc.autoconfigure.DataSourceTransactionManagerAutoConfiguration org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration -> org.springframework.boot.jdbc.autoconfigure.JdbcTemplateAutoConfiguration org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration -> org.springframework.boot.hibernate.autoconfigure.HibernateJpaAutoConfiguration Verified: the standalone jar builds, boots on Tomcat (port 80), and serves /actuator/health (200), login redirect (302), authenticated index (200) and swagger-ui (200). Co-Authored-By: Claude Opus 4.8 (1M context) --- .../main/java/com/codbex/oceanus/OceanusApplication.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/src/main/java/com/codbex/oceanus/OceanusApplication.java b/application/src/main/java/com/codbex/oceanus/OceanusApplication.java index 28df593..a461fb8 100644 --- a/application/src/main/java/com/codbex/oceanus/OceanusApplication.java +++ b/application/src/main/java/com/codbex/oceanus/OceanusApplication.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 778446fbce7777cbc3355824349b6500bdbc0009 Mon Sep 17 00:00:00 2001 From: Iliyan Velichkov Date: Fri, 5 Jun 2026 16:06:37 +0300 Subject: [PATCH 3/3] Bump codbex-platform-parent to 13.1.0 (adapted SecurityIT) 13.1.0 brings Eclipse Dirigible 13.1.0, whose shared SecurityIT now tolerates a missing dirigible-components-engine-native-apps engine (eclipse-dirigible/dirigible#5980). Oceanus intentionally does not ship the native-apps engine, so the /services/native-apps assertions no longer fail. Verified with `mvn clean install -P integration-tests`: 8 tests, 0 failures (CmsSuiteIT, SecurityIT 6/6, HomePageIT). 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 4696fbc..ff5651c 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.codbex.platform codbex-platform-parent - 13.0.0 + 13.1.0 codbex - oceanus - parent