Skip to content

Commit a7ba64d

Browse files
Merge pull request #1615 from CMSgov/QPPA-11465
QPPA-11465: fix vulnerability issue
2 parents b4c922b + a301dc0 commit a7ba64d

2 files changed

Lines changed: 22 additions & 6 deletions

File tree

pom.xml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -237,25 +237,25 @@
237237
<dependency>
238238
<groupId>com.fasterxml.jackson.core</groupId>
239239
<artifactId>jackson-core</artifactId>
240-
<version>2.17.3</version>
240+
<version>2.18.6</version>
241241
</dependency>
242242

243243
<dependency>
244244
<groupId>com.fasterxml.jackson.core</groupId>
245245
<artifactId>jackson-annotations</artifactId>
246-
<version>2.17.3</version>
246+
<version>2.18.6</version>
247247
</dependency>
248248

249249
<dependency>
250250
<groupId>com.fasterxml.jackson.core</groupId>
251251
<artifactId>jackson-databind</artifactId>
252-
<version>2.17.3</version>
252+
<version>2.18.6</version>
253253
</dependency>
254254

255255
<dependency>
256256
<groupId>com.fasterxml.jackson.dataformat</groupId>
257257
<artifactId>jackson-dataformat-xml</artifactId>
258-
<version>2.17.3</version>
258+
<version>2.18.6</version>
259259
</dependency>
260260

261261
<dependency>
@@ -515,7 +515,23 @@
515515
<dependency>
516516
<groupId>com.fasterxml.jackson.module</groupId>
517517
<artifactId>jackson-module-jaxb-annotations</artifactId>
518-
<version>2.17.3</version>
518+
<version>2.18.6</version>
519+
</dependency>
520+
521+
<dependency>
522+
<groupId>org.apache.tomcat.embed</groupId>
523+
<artifactId>tomcat-embed-core</artifactId>
524+
<version>10.1.52</version>
525+
</dependency>
526+
<dependency>
527+
<groupId>org.apache.tomcat.embed</groupId>
528+
<artifactId>tomcat-embed-el</artifactId>
529+
<version>10.1.52</version>
530+
</dependency>
531+
<dependency>
532+
<groupId>org.apache.tomcat.embed</groupId>
533+
<artifactId>tomcat-embed-websocket</artifactId>
534+
<version>10.1.52</version>
519535
</dependency>
520536

521537
<dependency>

rest-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
<!-- For documentation only; actual coordination is done by the BOMs below -->
3535
<spring-framework.version>6.2.12</spring-framework.version>
36-
<tomcat.version>10.1.45</tomcat.version>
36+
<tomcat.version>10.1.52</tomcat.version>
3737

3838
<!-- Test stack kept explicit so CI is deterministic across JDK updates -->
3939
<junit.jupiter.version>5.10.3</junit.jupiter.version>

0 commit comments

Comments
 (0)