Skip to content

Commit eee2612

Browse files
chore: upgraded hypertrace grpc-utils version (#146)
* chore: upgraded hypertrace grpc-utils version * Updated versions * Added suppressions
1 parent ee2d2c7 commit eee2612

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

hypertrace-core-graphql-platform/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ dependencies {
1313
api(platform("com.fasterxml.jackson:jackson-bom:2.15.2"))
1414
constraints {
1515

16-
api("org.hypertrace.core.grpcutils:grpc-context-utils:0.12.2")
17-
api("org.hypertrace.core.grpcutils:grpc-client-utils:0.12.2")
18-
api("org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.2")
16+
api("org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6")
17+
api("org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6")
18+
api("org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6")
1919
api("org.hypertrace.gateway.service:gateway-service-api:0.3.2")
20+
api("org.hypertrace.core.serviceframework:platform-http-service-framework:0.1.62")
2021
api("org.hypertrace.core.attribute.service:caching-attribute-service-client:${attributeServiceVersion}")
2122
api("org.hypertrace.core.attribute.service:attribute-service-api:${attributeServiceVersion}")
2223

hypertrace-core-graphql-service/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
dependencies {
99
implementation(platform(project(":hypertrace-core-graphql-platform")))
1010

11-
implementation("org.hypertrace.core.serviceframework:platform-http-service-framework:0.1.52")
11+
implementation("org.hypertrace.core.serviceframework:platform-http-service-framework")
1212
implementation("org.slf4j:slf4j-api")
1313

1414
implementation("com.graphql-java-kickstart:graphql-java-servlet")

owasp-suppressions.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,29 @@
1515
<packageUrl regex="true">^pkg:maven/io\.github\.graphql\-java/graphql\-java\-annotations@.*$</packageUrl>
1616
<cpe>cpe:/a:graphql-java:graphql-java</cpe>
1717
</suppress>
18-
<suppress until="2023-07-30Z">
18+
<suppress until="2023-11-30Z">
19+
<notes><![CDATA[
20+
This vulnerability is disputed, with the argument that SSL configuration is the responsibility of the client rather
21+
than the transport. The change in default is under consideration for the next major Netty release, revisit then.
22+
Regardless, our client (which is what brings in this dependency) enables the concerned feature, hostname verification
23+
Ref:
24+
https://github.com/grpc/grpc-java/issues/10033
25+
https://github.com/netty/netty/issues/8537#issuecomment-1527896917
26+
]]></notes>
27+
<packageUrl regex="true">^pkg:maven/io\.netty/netty.*@.*$</packageUrl>
28+
<vulnerabilityName>CVE-2023-4586</vulnerabilityName>
29+
</suppress>
30+
<suppress until="2023-11-30Z">
31+
<notes><![CDATA[
32+
This CVE is declared fixed from 9.4.52, but the vuln db is not reflecting that. Suppress that specific version until
33+
db is updated.
34+
Ref:
35+
https://github.com/eclipse/jetty.project/security/advisories/GHSA-3gh6-v5v9-6v9j
36+
]]></notes>
37+
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty/jetty\[email protected]\..*$</packageUrl>
38+
<vulnerabilityName>CVE-2023-36479</vulnerabilityName>
39+
</suppress>
40+
<suppress until="2023-11-30Z">
1941
<notes><![CDATA[
2042
file name: jackson-databind-2.15.2.jar
2143
]]></notes>

0 commit comments

Comments
 (0)