Skip to content

Commit 8bbd69c

Browse files
authored
Merge branch 'main' into fix/no-400-on-additional-query-param
2 parents a824063 + 3adfed7 commit 8bbd69c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ subprojects {
7070

7171
// Security constraints
7272
constraints {
73-
implementation("org.springframework:spring-web:6.2.11") {
73+
implementation("org.springframework:spring-web:6.2.12") {
7474
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.11") {
76+
implementation("org.springframework:spring-webmvc:6.2.12") {
7777
because("versions below 6.2.11 have security vulnerabilities including CVE-2025-41242 and CVE-2025-41249 - see dependabot #24, #247")
7878
}
79-
implementation("org.apache.tomcat.embed:tomcat-embed-core:11.0.10") {
79+
implementation("org.apache.tomcat.embed:tomcat-embed-core:11.0.13") {
8080
because("versions below 10.1.42 have security vulnerabilities including CVE-2024-56337 - see dependabot #13")
8181
}
82-
implementation("org.apache.commons:commons-lang3:3.18.0") {
82+
implementation("org.apache.commons:commons-lang3:3.19.0") {
8383
because("versions below 3.18.0 have security vulnerabilities including CVE-2025-48924 - see dependabot #15")
8484
}
85-
implementation("io.projectreactor.netty:reactor-netty-http:1.2.9") {
85+
implementation("io.projectreactor.netty:reactor-netty-http:1.2.11") {
8686
because("versions below 1.2.8 have security vulnerabilities including CVE-2025-22227 - see dependabot #16")
8787
}
8888
implementation("io.netty:netty-codec-http2:4.2.6.Final") {

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[versions]
22
java = "21"
3-
spring-boot = "3.5.5"
3+
spring-boot = "3.5.6"
44
spring-dependency-management = "1.1.7"
5-
openapi-generator = "7.15.0"
5+
openapi-generator = "7.16.0"
66
openapi-tools = "0.2.7"
7-
swagger = "2.2.36"
7+
swagger = "2.2.39"
88
swagger-request-validator = "2.45.1"
99
jakarta-validation = "3.1.1"
10-
lombok = "1.18.40"
10+
lombok = "1.18.42"
1111
commons-codec = "1.19.0"
1212
find-bugs = "3.0.2"
1313
gradle-nexus-publish-plugin = "2.0.0"
@@ -17,7 +17,7 @@ checkstyle = "8.44"
1717
pmd = "7.14.0"
1818
jacoco = "0.8.13"
1919
# Testing
20-
mockito = "5.19.0"
20+
mockito = "5.20.0"
2121
junit-jupiter = "5.13.4"
2222
junit-platform = "1.13.4"
2323

0 commit comments

Comments
 (0)