Skip to content

Commit df9fb71

Browse files
fix: update netty due to vuln (#47)
1 parent 08b7439 commit df9fb71

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

grpc-client-utils/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ dependencies {
1010
api(platform("io.grpc:grpc-bom:1.56.0"))
1111
api("io.grpc:grpc-context")
1212
api("io.grpc:grpc-api")
13-
api(platform("io.netty:netty-bom:4.1.86.Final")) {
14-
because("CVE-2022-41881")
13+
api(platform("io.netty:netty-bom:4.1.94.Final")) {
14+
because("CVE-2023-34462")
1515
}
1616

1717
implementation(project(":grpc-context-utils"))

grpc-server-utils/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ dependencies {
1414
api("io.grpc:grpc-context")
1515
api("io.grpc:grpc-api")
1616

17-
api(platform("io.netty:netty-bom:4.1.86.Final")) {
18-
because("CVE-2022-41881")
17+
api(platform("io.netty:netty-bom:4.1.94.Final")) {
18+
because("CVE-2023-34462")
1919
}
2020

2121
implementation(project(":grpc-context-utils"))

owasp-suppressions.xml

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
3+
<suppress>
4+
<notes><![CDATA[
5+
Any hypertrace dep
6+
]]></notes>
7+
<packageUrl regex="true">^pkg:maven/org\.hypertrace\..*@.*$</packageUrl>
8+
<cpe>cpe:/a:grpc:grpc</cpe>
9+
</suppress>
310
</suppressions>

0 commit comments

Comments
 (0)