From f995e3b72f215056486494b9e529beedd46d4d2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:53:00 +0000 Subject: [PATCH 1/3] Build(deps): Bump org.springframework.boot:spring-boot-starter-parent Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 4.0.7 to 4.1.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.7...v4.1.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b4774a0b1..7b71c875c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 4.0.7 + 4.1.0 org.eclipse.digitaltwin.basyx From c9b88b2a552694a52f3946aea9a67b076bee5014 Mon Sep 17 00:00:00 2001 From: Aaron Zielstorff Date: Sun, 19 Jul 2026 14:27:48 +0200 Subject: [PATCH 2/3] Fixes incorrect import path --- .../DisableSpringSecurityIfNoAuthorizationConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basyx.common/basyx.authorization/src/main/java/org/eclipse/digitaltwin/basyx/authorization/DisableSpringSecurityIfNoAuthorizationConfig.java b/basyx.common/basyx.authorization/src/main/java/org/eclipse/digitaltwin/basyx/authorization/DisableSpringSecurityIfNoAuthorizationConfig.java index 0bad4f373..5e920e76d 100644 --- a/basyx.common/basyx.authorization/src/main/java/org/eclipse/digitaltwin/basyx/authorization/DisableSpringSecurityIfNoAuthorizationConfig.java +++ b/basyx.common/basyx.authorization/src/main/java/org/eclipse/digitaltwin/basyx/authorization/DisableSpringSecurityIfNoAuthorizationConfig.java @@ -31,7 +31,7 @@ import org.springframework.boot.security.autoconfigure.SecurityAutoConfiguration; import org.springframework.boot.security.autoconfigure.actuate.web.servlet.ManagementWebSecurityAutoConfiguration; import org.springframework.boot.security.autoconfigure.web.servlet.ServletWebSecurityAutoConfiguration; -import org.springframework.boot.security.oauth2.server.resource.autoconfigure.servlet.OAuth2ResourceServerAutoConfiguration; +import org.springframework.boot.security.oauth2.server.resource.autoconfigure.OAuth2ResourceServerAutoConfiguration; import org.springframework.context.annotation.Conditional; import org.springframework.context.annotation.Configuration; From 3a89fa3d5964cccef57dd9cf3cb3544cc512fe73 Mon Sep 17 00:00:00 2001 From: Aaron Zielstorff Date: Sun, 19 Jul 2026 15:01:03 +0200 Subject: [PATCH 3/3] Fix Spring Boot 4.1 runtime compatibility --- .../service/storage/mongodb/MongoDbAasRegistryStorage.java | 2 +- .../src/main/resources/application.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/basyx.aasregistry/basyx.aasregistry-service-mongodb-storage/src/main/java/org/eclipse/digitaltwin/basyx/aasregistry/service/storage/mongodb/MongoDbAasRegistryStorage.java b/basyx.aasregistry/basyx.aasregistry-service-mongodb-storage/src/main/java/org/eclipse/digitaltwin/basyx/aasregistry/service/storage/mongodb/MongoDbAasRegistryStorage.java index 9010fddf3..92932c826 100644 --- a/basyx.aasregistry/basyx.aasregistry-service-mongodb-storage/src/main/java/org/eclipse/digitaltwin/basyx/aasregistry/service/storage/mongodb/MongoDbAasRegistryStorage.java +++ b/basyx.aasregistry/basyx.aasregistry-service-mongodb-storage/src/main/java/org/eclipse/digitaltwin/basyx/aasregistry/service/storage/mongodb/MongoDbAasRegistryStorage.java @@ -143,7 +143,7 @@ public Optional createFilterCriteria(DescriptorFilter filter) { if (criteria == null) { criteria = Criteria.where(ASSET_TYPE).is(assetType); } else { - criteria.and(ASSET_TYPE).is(assetType); + criteria = criteria.and(ASSET_TYPE).is(assetType); } } return Optional.of(criteria); diff --git a/basyx.submodelservice/basyx.submodelservice.component/src/main/resources/application.yml b/basyx.submodelservice/basyx.submodelservice.component/src/main/resources/application.yml index 58c6571bd..4003a4772 100644 --- a/basyx.submodelservice/basyx.submodelservice.component/src/main/resources/application.yml +++ b/basyx.submodelservice/basyx.submodelservice.component/src/main/resources/application.yml @@ -11,7 +11,6 @@ basyx: # enabled by default enabled: true defaultMapping: org.eclipse.digitaltwin.basyx.submodelservice.feature.operationdispatching.java.DefaultInvokableOperation - mappings: {} java: sources: classes: classes