Skip to content

Commit ebdf994

Browse files
authored
Merge branch 'main' into dependabot/gradle/org.junit.platform-junit-platform-launcher-1.13.4
2 parents 4e3fc1a + a91a3a5 commit ebdf994

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ subprojects {
6969

7070
// Security constraints
7171
constraints {
72-
implementation("org.springframework:spring-web:6.2.8") {
72+
implementation("org.springframework:spring-web:6.2.10") {
7373
because("versions below 6.2.8 have security vulnerabilities including CVE-2024-38820 - see dependabot #12")
7474
}
7575
implementation("org.apache.tomcat.embed:tomcat-embed-core:10.1.42") {
@@ -78,6 +78,12 @@ subprojects {
7878
implementation("org.apache.commons:commons-lang3:3.18.0") {
7979
because("versions below 3.18.0 have security vulnerabilities including CVE-2025-48924 - see dependabot #15")
8080
}
81+
implementation("io.projectreactor.netty:reactor-netty-http:1.2.9") {
82+
because("versions below 1.2.8 have security vulnerabilities including CVE-2025-22227 - see dependabot #16")
83+
}
84+
implementation("io.netty:netty-codec-http2:4.1.124.Final") {
85+
because("versions below 4.1.124.Final have security vulnerabilities including CVE-2025-55163 - see dependabot #17")
86+
}
8187
}
8288
}
8389

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[versions]
22
java = "21"
3-
spring-boot = "3.5.3"
3+
spring-boot = "3.5.4"
44
spring-dependency-management = "1.1.7"
5-
openapi-generator = "7.13.0"
5+
openapi-generator = "7.14.0"
66
openapi-tools = "0.2.6"
7-
swagger = "2.2.34"
8-
swagger-request-validator = "2.44.9"
7+
swagger = "2.2.36"
8+
swagger-request-validator = "2.45.1"
99
jakarta-validation = "3.1.1"
1010
lombok = "1.18.38"
1111
commons-codec = "1.18.0"
@@ -17,8 +17,8 @@ checkstyle = "8.44"
1717
pmd = "7.14.0"
1818
jacoco = "0.8.13"
1919
# Testing
20-
mockito = "5.18.0"
21-
junit-jupiter = "5.13.1"
20+
mockito = "5.19.0"
21+
junit-jupiter = "5.13.4"
2222
junit-platform = "1.13.4"
2323

2424
[libraries]
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
version: '1'
21
service:
32
name: openapi-validation-java
4-
type: Library
5-
main_language: Java
63
owner: chk
4+
type: Library
75
level: best effort
6+
main_language: Java

0 commit comments

Comments
 (0)