Skip to content

Commit 5e876e2

Browse files
committed
fix: fixed high vulnerability CVEs
1 parent e385e64 commit 5e876e2

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

.idea/springai-rag-db23ai.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,46 @@
2121
</properties>
2222
<dependencyManagement>
2323
<dependencies>
24+
<!-- Update Logback to fix CVE-2023-6378 -->
25+
<dependency>
26+
<groupId>ch.qos.logback</groupId>
27+
<artifactId>logback-classic</artifactId>
28+
<version>1.4.14</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>ch.qos.logback</groupId>
32+
<artifactId>logback-core</artifactId>
33+
<version>1.4.14</version>
34+
</dependency>
35+
36+
<!-- Update Jackson to fix CVE-2023-35116 -->
37+
<dependency>
38+
<groupId>com.fasterxml.jackson.core</groupId>
39+
<artifactId>jackson-databind</artifactId>
40+
<version>2.15.3</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.fasterxml.jackson.datatype</groupId>
44+
<artifactId>jackson-datatype-jdk8</artifactId>
45+
<version>2.15.3</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>com.fasterxml.jackson.datatype</groupId>
49+
<artifactId>jackson-datatype-jsr310</artifactId>
50+
<version>2.15.3</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>com.fasterxml.jackson.module</groupId>
54+
<artifactId>jackson-module-parameter-names</artifactId>
55+
<version>2.15.3</version>
56+
</dependency>
57+
58+
<!-- Update Commons Compress to fix CVE-2024-25710, CVE-2024-26308, CVE-2023-42503 -->
59+
<dependency>
60+
<groupId>org.apache.commons</groupId>
61+
<artifactId>commons-compress</artifactId>
62+
<version>1.24.0</version>
63+
</dependency>
2464
<dependency>
2565
<groupId>org.springframework.ai</groupId>
2666
<artifactId>spring-ai-bom</artifactId>

0 commit comments

Comments
 (0)