Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions build-tools/owasp/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,28 +38,36 @@
</suppress>

<!-- Suppressed vulnerabilities. These need monthly review. -->
<suppress until="2025-08-10Z">
<suppress until="2025-11-10Z">
<notes><![CDATA[
This vulnerability affects a transitive dependency of the test module but is not relevant
for how it is used in the context of the Java Client Libraries.
]]></notes>
<packageUrl regex="true">^pkg:maven/net\.minidev/json-smart@.*$</packageUrl>
<vulnerabilityName>CVE-2024-57699</vulnerabilityName>
</suppress>
<suppress until="2025-08-10Z">
<suppress until="2025-11-10Z">
<notes><![CDATA[
This vulnerability affects a transitive dependency of the test module but is not relevant
for how it is used in the context of the Java Client Libraries.
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
<cve>CVE-2024-6763</cve>
</suppress>
<suppress until="2025-08-10Z">
<suppress until="2025-11-10Z">
<notes><![CDATA[
This vulnerability affects a transitive dependency of the test module but is not relevant
for how it is used in the context of the Java Client Libraries.
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
<cve>CVE-2025-1948</cve>
</suppress>
<suppress until="2025-11-10Z">
<notes><![CDATA[
This vulnerability affects a transitive dependency of the test module but is not relevant
for how it is used in the context of the Java Client Libraries.
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
<cve>CVE-2025-5115</cve>
</suppress>
</suppressions>
4 changes: 2 additions & 2 deletions spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>6.2.9</version>
<version>6.2.10</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -107,7 +107,7 @@
<jdk>[17,)</jdk>
</activation>
<properties>
<spring.security.version>6.5.2</spring.security.version>
<spring.security.version>6.5.3</spring.security.version>
</properties>
</profile>
</profiles>
Expand Down
Loading