Skip to content

Commit 0ac270b

Browse files
dependabot[bot]MohsinHashmi-DataInnclaude
authored
chore(deps): bump org.springdoc:springdoc-openapi-starter-webmvc-ui from 2.7.0 to 3.0.0 in /apps/backend (#320)
* chore(deps): bump org.springdoc:springdoc-openapi-starter-webmvc-ui Bumps [org.springdoc:springdoc-openapi-starter-webmvc-ui](https://github.com/springdoc/springdoc-openapi) from 2.7.0 to 3.0.0. - [Release notes](https://github.com/springdoc/springdoc-openapi/releases) - [Changelog](https://github.com/springdoc/springdoc-openapi/blob/main/CHANGELOG.md) - [Commits](springdoc/springdoc-openapi@v2.7.0...v3.0.0) --- updated-dependencies: - dependency-name: org.springdoc:springdoc-openapi-starter-webmvc-ui dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix: add test config to resolve bean conflicts with springdoc 3.x Add test application.properties that: - Allows bean definition overriding to resolve JacksonAutoConfiguration conflicts between old and new package paths - Disables springdoc/swagger for tests since they aren't needed 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: MohsinHashmi-DataInn <108420505+MohsinHashmi-DataInn@users.noreply.github.com> Co-authored-by: MohsinHashmi-DataInn <mohsin@datainn.io> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 7010a1e commit 0ac270b

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

apps/backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
<dependency>
180180
<groupId>org.springdoc</groupId>
181181
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
182-
<version>2.7.0</version>
182+
<version>3.0.0</version>
183183
</dependency>
184184

185185
<dependency>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Test-specific configuration
2+
3+
# Allow bean definition overriding to resolve conflicts during WebMvcTest
4+
# This is needed for springdoc-openapi 3.x compatibility where Jackson
5+
# autoconfiguration classes have moved to different packages
6+
spring.main.allow-bean-definition-overriding=true
7+
8+
# Disable Swagger/OpenAPI for tests
9+
springdoc.api-docs.enabled=false
10+
springdoc.swagger-ui.enabled=false

0 commit comments

Comments
 (0)