Skip to content

Commit

Permalink
fix: update grpc, jackson and framework versions (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-steinfeld authored Dec 4, 2023
1 parent 03f307d commit 2a2f83c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[versions]
protoc = "3.24.1"
grpc = "1.57.2"
hypertrace-framework = "0.1.62"
hypertrace-grpcutils = "0.12.6"
grpc = "1.59.1"
hypertrace-framework = "0.1.63"
hypertrace-grpcutils = "0.12.7"
hypertrace-kafka = "0.3.9"
hypertrace-bom = "+"
hypertrace-attributeservice = "0.14.35"
Expand All @@ -27,7 +27,7 @@ grpc-protobuf = { module = "io.grpc:grpc-protobuf" }
grpc-api = { module = "io.grpc:grpc-api" }
grpc-netty = { module = "io.grpc:grpc-netty" }
grpc-context = { module = "io.grpc:grpc-context" }
jackson-bom = { module = "com.fasterxml.jackson:jackson-bom", version = "2.15.2" }
jackson-bom = { module = "com.fasterxml.jackson:jackson-bom", version = "2.16.0" }
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind" }
jackson-datatype-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310" }
jackson-datatype-jdk8 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jdk8" }
Expand Down
18 changes: 9 additions & 9 deletions owasp-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@
<cpe>cpe:/a:service_project:service</cpe>
<cpe>cpe:/a:processing:processing</cpe>
</suppress>
<suppress until="2023-12-31Z">
<notes><![CDATA[
Doesn't appear to be a real vulnerability, jackson maintainers discuss at https://github.com/FasterXML/jackson-databind/issues/3973
Revisit when suppression expires
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$
</packageUrl>
<cve>CVE-2023-35116</cve>
</suppress>
<suppress until="2023-12-31Z">
<notes><![CDATA[
This vulnerability is disputed, with the argument that SSL configuration is the responsibility of the client rather
Expand All @@ -41,4 +32,13 @@
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty/jetty\[email protected]\..*$</packageUrl>
<vulnerabilityName>CVE-2023-36479</vulnerabilityName>
</suppress>
<suppress until="2023-12-31Z">
<notes><![CDATA[
This CVE (rapid RST) is already mitigated as our servers aren't directly exposed, but it's also
addressed in 1.59.1, which the CVE doesn't reflect (not all grpc impls versions are exactly aligned).
Ref: https://github.com/grpc/grpc-java/pull/10675
]]></notes>
<packageUrl regex="true">^pkg:maven/io\.grpc/grpc\-.*@.*$</packageUrl>
<cve>CVE-2023-44487</cve>
</suppress>
</suppressions>

0 comments on commit 2a2f83c

Please sign in to comment.