Skip to content

Commit 4453cb6

Browse files
Merge pull request #1622 from CMSgov/QPPA-11541-update-vuln-remediation
QPPA-11541: Remediate security vulns
2 parents 91c399a + 010ae5b commit 4453cb6

4 files changed

Lines changed: 30 additions & 10 deletions

File tree

.java-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17
1+
21

acceptance-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.seleniumhq.selenium</groupId>
3232
<artifactId>selenium-java</artifactId>
33-
<version>4.1.2</version>
33+
<version>4.14.0</version>
3434
</dependency>
3535

3636
<dependency>

pom.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,27 @@
511511
<dependency>
512512
<groupId>org.springframework.security</groupId>
513513
<artifactId>spring-security-web</artifactId>
514-
<version>6.4.12</version>
514+
<version>6.5.9</version>
515+
</dependency>
516+
517+
<dependency>
518+
<groupId>org.springframework</groupId>
519+
<artifactId>spring-webmvc</artifactId>
520+
<version>6.2.17</version>
521+
</dependency>
522+
523+
<dependency>
524+
<groupId>org.springframework</groupId>
525+
<artifactId>spring-web</artifactId>
526+
<version>6.2.17</version>
527+
</dependency>
528+
529+
<dependency>
530+
<groupId>org.springframework</groupId>
531+
<artifactId>spring-framework-bom</artifactId>
532+
<version>6.2.17</version>
533+
<type>pom</type>
534+
<scope>import</scope>
515535
</dependency>
516536

517537
<dependency>

rest-api/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<requiredCodeCoverage>0.90</requiredCodeCoverage>
3333

3434
<!-- For documentation only; actual coordination is done by the BOMs below -->
35-
<spring-framework.version>6.2.12</spring-framework.version>
35+
<spring-framework.version>6.2.17</spring-framework.version>
3636
<tomcat.version>10.1.52</tomcat.version>
3737
<!-- Test stack kept explicit so CI is deterministic across JDK updates -->
3838
<junit.jupiter.version>5.11.4</junit.jupiter.version>
@@ -43,8 +43,8 @@
4343
<mockito.version>3.9.0</mockito.version>
4444
<jakarta.servlet.version>6.1.0</jakarta.servlet.version>
4545

46-
<!-- Spring Security aligned with Boot 3.4.8 to avoid split versions -->
47-
<spring.security.version>6.4.12</spring.security.version>
46+
<!-- Spring Security aligned with Boot BOM to avoid split versions -->
47+
<spring.security.version>6.5.9</spring.security.version>
4848

4949
<!-- JaCoCo aggregated report path used by Sonar -->
5050
<sonar.coverage.jacoco.xmlReportPaths>
@@ -196,19 +196,19 @@
196196
<dependency>
197197
<groupId>org.springframework</groupId>
198198
<artifactId>spring-webmvc</artifactId>
199-
<version>6.2.12</version>
199+
<version>6.2.17</version>
200200
</dependency>
201201
<dependency>
202202
<groupId>org.springframework</groupId>
203203
<artifactId>spring-beans</artifactId>
204-
<version>6.2.12</version>
204+
<version>6.2.17</version>
205205
</dependency>
206206

207-
<!-- Framework BOM import: lifts ALL spring-* modules to 6.2.12 (security fix) -->
207+
<!-- Framework BOM import: lifts ALL spring-* modules to 6.2.17 (security fix) -->
208208
<dependency>
209209
<groupId>org.springframework</groupId>
210210
<artifactId>spring-framework-bom</artifactId>
211-
<version>6.2.12</version>
211+
<version>6.2.17</version>
212212
<type>pom</type>
213213
<scope>import</scope>
214214
</dependency>

0 commit comments

Comments
 (0)