From 22ebb675e5723302708006234f7b3fa911b22bd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 21:39:51 +0000 Subject: [PATCH 1/4] chore(deps): bump the observability-and-docs group across 1 directory with 2 updates Bumps the observability-and-docs group with 2 updates in the / directory: [org.springdoc:springdoc-openapi-starter-webmvc-ui](https://github.com/springdoc/springdoc-openapi) and [org.springdoc:springdoc-openapi-starter-webmvc-api](https://github.com/springdoc/springdoc-openapi). Updates `org.springdoc:springdoc-openapi-starter-webmvc-ui` from 2.8.13 to 3.0.3 - [Release notes](https://github.com/springdoc/springdoc-openapi/releases) - [Changelog](https://github.com/springdoc/springdoc-openapi/blob/v3.0.3/CHANGELOG.md) - [Commits](https://github.com/springdoc/springdoc-openapi/compare/v2.8.13...v3.0.3) Updates `org.springdoc:springdoc-openapi-starter-webmvc-api` from 2.8.13 to 3.0.3 - [Release notes](https://github.com/springdoc/springdoc-openapi/releases) - [Changelog](https://github.com/springdoc/springdoc-openapi/blob/v3.0.3/CHANGELOG.md) - [Commits](https://github.com/springdoc/springdoc-openapi/compare/v2.8.13...v3.0.3) --- updated-dependencies: - dependency-name: org.springdoc:springdoc-openapi-starter-webmvc-api dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: observability-and-docs - dependency-name: org.springdoc:springdoc-openapi-starter-webmvc-ui dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: observability-and-docs ... Signed-off-by: dependabot[bot] --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fea2300..c3d38e8 100644 --- a/pom.xml +++ b/pom.xml @@ -146,13 +146,13 @@ org.springdoc springdoc-openapi-starter-webmvc-ui - 2.8.13 + 3.0.3 org.springdoc springdoc-openapi-starter-webmvc-api - 2.8.13 + 3.0.3 From 69aea7ea26742b12228957f7adbe3c5b9772f6b3 Mon Sep 17 00:00:00 2001 From: Noel Date: Wed, 1 Jul 2026 23:54:56 +0200 Subject: [PATCH 2/4] fix: allow bean definition overriding in test profile to resolve ErrorMvcAutoConfiguration conflict The test suite was failing due to a Spring bean definition conflict where 'conventionErrorViewResolver' was being registered twice by different error autoconfiguration classes. This property allows Spring to gracefully handle such conflicts during testing. Fixes #84643144925 (test job failure) --- src/test/resources/application-test.properties | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/test/resources/application-test.properties diff --git a/src/test/resources/application-test.properties b/src/test/resources/application-test.properties new file mode 100644 index 0000000..e439ebd --- /dev/null +++ b/src/test/resources/application-test.properties @@ -0,0 +1 @@ +spring.main.allow-bean-definition-overriding=true From 0efa81c2c225e6de18fe1d64307ef20f150cf5c3 Mon Sep 17 00:00:00 2001 From: Noel Date: Thu, 9 Jul 2026 13:34:14 +0200 Subject: [PATCH 3/4] fix: add spring-boot-starter-webmvc dependency to resolve ErrorPageRegistrar ClassNotFoundException This resolves the ClassNotFoundException for org.springframework.boot.web.error.ErrorPageRegistrar that was causing test failures. The spring-boot-starter-webmvc dependency ensures proper web MVC autoconfiguration including error handling classes. --- pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c3d38e8..cd06b42 100644 --- a/pom.xml +++ b/pom.xml @@ -48,6 +48,10 @@ org.springframework.boot spring-boot-starter-web + + org.springframework.boot + spring-boot-starter-webmvc + org.flywaydb flyway-core @@ -210,4 +214,4 @@ - \ No newline at end of file + From 5f69d0941053ed70fdd96cfc7af8c5f377de371d Mon Sep 17 00:00:00 2001 From: Noel Date: Thu, 9 Jul 2026 13:37:33 +0200 Subject: [PATCH 4/4] fix: add missing version for spring-boot-starter-webmvc dependency - Adds explicit version 3.5.8 to spring-boot-starter-webmvc dependency - Fixes Maven build failure: 'dependencies.dependency.version' was missing - Version matches the spring-boot-starter-parent version --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index cd06b42..f7f2646 100644 --- a/pom.xml +++ b/pom.xml @@ -51,6 +51,7 @@ org.springframework.boot spring-boot-starter-webmvc + 3.5.8 org.flywaydb