File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed
example-spring-boot-starter-webflux
example-spring-boot-starter-web Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ plugins {
33 alias(libs. plugins. nexus. publish)
44}
55
6- ext[' spring-framework.version' ] = ' 6.2.10 '
6+ ext[' spring-framework.version' ] = ' 6.2.11 '
77ext[' tomcat.version' ] = ' 11.0.10'
88ext[' netty.version' ] = ' 4.2.6.Final' // Due to security vulnerabilities in 4.125.Final and older
99
@@ -70,11 +70,11 @@ subprojects {
7070
7171 // Security constraints
7272 constraints {
73- implementation(" org.springframework:spring-web:6.2.10 " ) {
74- because(" versions below 6.2.8 have security vulnerabilities including CVE-2024-38820 - see dependabot #12" )
73+ implementation(" org.springframework:spring-web:6.2.11 " ) {
74+ because(" versions below 6.2.11 have security vulnerabilities including CVE-2024-38820 and CVE-2025-41249 - see dependabot #12, #24 " )
7575 }
76- implementation(" org.springframework:spring-webmvc:6.2.10 " ) {
77- because(" versions below 6.2.10 have Path Traversal Vulnerability CVE-2025-41242 - see dependabot #247" )
76+ implementation(" org.springframework:spring-webmvc:6.2.11 " ) {
77+ because(" versions below 6.2.11 have security vulnerabilities including CVE-2025-41242 and CVE-2025-41249 - see dependabot #24, #247" )
7878 }
7979 implementation(" org.apache.tomcat.embed:tomcat-embed-core:11.0.10" ) {
8080 because(" versions below 10.1.42 have security vulnerabilities including CVE-2024-56337 - see dependabot #13" )
Original file line number Diff line number Diff line change @@ -6,13 +6,14 @@ plugins {
66}
77
88// Needed for security. See:
9+ // - https://github.com/getyourguide/openapi-validation-java/security/dependabot/25
910// - https://github.com/getyourguide/openapi-validation-java/security/dependabot/7
1011// - https://github.com/getyourguide/openapi-validation-java/security/dependabot/6
1112// Hopefully with spring-boot 3.4.2+ this won't be needed anymore and can be removed.
1213dependencyManagement {
1314 dependencies {
14- dependency ' ch.qos.logback:logback-core:1.5.18 '
15- dependency ' ch.qos.logback:logback-classic:1.5.18 '
15+ dependency ' ch.qos.logback:logback-core:1.5.19 '
16+ dependency ' ch.qos.logback:logback-classic:1.5.19 '
1617 }
1718}
1819
Original file line number Diff line number Diff line change @@ -6,13 +6,14 @@ plugins {
66}
77
88// Needed for security. See:
9+ // - https://github.com/getyourguide/openapi-validation-java/security/dependabot/25
910// - https://github.com/getyourguide/openapi-validation-java/security/dependabot/7
1011// - https://github.com/getyourguide/openapi-validation-java/security/dependabot/6
1112// Hopefully with spring-boot 3.4.2+ this won't be needed anymore and can be removed.
1213dependencyManagement {
1314 dependencies {
14- dependency ' ch.qos.logback:logback-core:1.5.18 '
15- dependency ' ch.qos.logback:logback-classic:1.5.18 '
15+ dependency ' ch.qos.logback:logback-core:1.5.19 '
16+ dependency ' ch.qos.logback:logback-classic:1.5.19 '
1617 }
1718}
1819
You can’t perform that action at this time.
0 commit comments