addressing vulnerabilities on high and critical
This commit is contained in:
parent
8b00da12c4
commit
5111a07a11
28
pom.xml
28
pom.xml
@ -42,13 +42,14 @@
|
||||
<jakarta.xml.bind-api.version>4.0.2</jakarta.xml.bind-api.version>
|
||||
<javax.xml.bind-api.version>2.4.0-b180830.0359</javax.xml.bind-api.version>
|
||||
<jaxb-runtime.version>4.0.5</jaxb-runtime.version>
|
||||
<tomcat.version>10.1.39</tomcat.version> <!--Remove after update spring-boot to new version-->
|
||||
<tomcat.version>10.1.40</tomcat.version> <!-- Vulnerability fix, Remove after update spring-boot to new version-->
|
||||
<net.minidev.json-smart>2.5.2</net.minidev.json-smart> <!-- Vulnerability fix, CVE-2024-57699, Remove after update spring-boot 3.2.12 to a newer version-->
|
||||
<spring-boot.version>3.2.12</spring-boot.version>
|
||||
<spring-data.version>3.2.12</spring-data.version>
|
||||
<spring-data-redis.version>3.2.12</spring-data-redis.version>
|
||||
<spring.version>6.1.15</spring.version>
|
||||
<spring-redis.version>6.2.11</spring-redis.version>
|
||||
<spring-security.version>6.2.8</spring-security.version>
|
||||
<spring-security.version>6.3.8</spring-security.version>
|
||||
<jedis.version>5.1.5</jedis.version>
|
||||
<jjwt.version>0.12.5</jjwt.version>
|
||||
<slf4j.version>2.0.13</slf4j.version>
|
||||
@ -102,7 +103,7 @@
|
||||
<jts.version>1.19.0</jts.version>
|
||||
<bouncycastle.version>1.78.1</bouncycastle.version>
|
||||
<winsw.version>2.0.1</winsw.version>
|
||||
<postgresql.driver.version>42.7.3</postgresql.driver.version>
|
||||
<postgresql.driver.version>42.7.5</postgresql.driver.version>
|
||||
<sonar.exclusions>org/thingsboard/server/gen/**/*,
|
||||
org/thingsboard/server/extensions/core/plugin/telemetry/gen/**/*
|
||||
</sonar.exclusions>
|
||||
@ -112,7 +113,7 @@
|
||||
<!-- IMPORTANT: If you change the version of the kafka client, make sure to synchronize our overwritten implementation of the
|
||||
org.apache.kafka.common.network.NetworkReceive class in the application module. It addresses the issue https://issues.apache.org/jira/browse/KAFKA-4090.
|
||||
Here is the source to track https://github.com/apache/kafka/tree/trunk/clients/src/main/java/org/apache/kafka/common/network -->
|
||||
<kafka.version>3.7.1</kafka.version>
|
||||
<kafka.version>3.7.2</kafka.version>
|
||||
<bucket4j.version>8.10.1</bucket4j.version>
|
||||
<antlr.version>3.5.3</antlr.version>
|
||||
<snakeyaml.version>2.2</snakeyaml.version>
|
||||
@ -1163,6 +1164,13 @@
|
||||
<artifactId>tomcat-embed-websocket</artifactId>
|
||||
<version>${tomcat.version}</version>
|
||||
</dependency>
|
||||
<!-- Vulnerability fix - transitive dependency from Spring Boot, remove after Spring Boot upgrade -->
|
||||
<dependency>
|
||||
<groupId>net.minidev</groupId>
|
||||
<artifactId>json-smart</artifactId>
|
||||
<version>${net.minidev.json-smart}</version>
|
||||
</dependency>
|
||||
<!-- ...Vulnerability fix - transitive dependency from Spring Boot, remove after Spring Boot upgrade -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter</artifactId>
|
||||
@ -1183,6 +1191,18 @@
|
||||
<artifactId>spring-security-oauth2-jose</artifactId>
|
||||
<version>${spring-security.version}</version>
|
||||
</dependency>
|
||||
<!-- Vulnerability fix - transitive dependency from Spring Boot, remove after Spring Boot upgrade -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.security</groupId>
|
||||
<artifactId>spring-security-config</artifactId>
|
||||
<version>${spring-security.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.security</groupId>
|
||||
<artifactId>spring-security-web</artifactId>
|
||||
<version>${spring-security.version}</version>
|
||||
</dependency>
|
||||
<!-- ... Vulnerability fix - transitive dependency from Spring Boot, remove after Spring Boot upgrade -->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-core</artifactId>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user