Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
chore: update dependencies (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-steinfeld authored Jan 23, 2024
1 parent 03dbbc1 commit 0f93644
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 30 deletions.
4 changes: 2 additions & 2 deletions gateway-service-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ protobuf {
// the identifier, which can be referred to in the "plugins"
// container of the "generateProtoTasks" closure.
id("grpc_java") {
artifact = "io.grpc:protoc-gen-grpc-java:1.57.2"
artifact = "io.grpc:protoc-gen-grpc-java:1.60.0"
}
}
generateProtoTasks {
Expand All @@ -44,7 +44,7 @@ sourceSets {
}

dependencies {
api(platform("io.grpc:grpc-bom:1.57.2"))
api(platform("io.grpc:grpc-bom:1.60.0"))
api("io.grpc:grpc-protobuf")
api("io.grpc:grpc-stub")
api("javax.annotation:javax.annotation-api:1.3.2")
Expand Down
2 changes: 1 addition & 1 deletion gateway-service-factory/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

dependencies {
api("org.hypertrace.core.serviceframework:platform-grpc-service-framework:0.1.62")
api("org.hypertrace.core.serviceframework:platform-grpc-service-framework:0.1.64")

implementation(project(":gateway-service-impl"))
}
6 changes: 3 additions & 3 deletions gateway-service-impl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ dependencies {

implementation("org.hypertrace.entity.service:entity-service-client:0.8.87")
implementation("org.hypertrace.entity.service:entity-service-api:0.8.87")
implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.12.5")
implementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.12.5")
implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.13.1")
implementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.13.1")
implementation("org.hypertrace.core.serviceframework:platform-metrics:0.1.58")

// Config
Expand All @@ -41,5 +41,5 @@ dependencies {
testImplementation("org.mockito:mockito-core:5.5.0")
testImplementation("org.mockito:mockito-inline:5.2.0")
testImplementation("org.apache.logging.log4j:log4j-slf4j-impl:2.17.1")
testImplementation("io.grpc:grpc-netty:1.57.2")
testImplementation("io.grpc:grpc-netty:1.60.0")
}
6 changes: 3 additions & 3 deletions gateway-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ plugins {
dependencies {
implementation(project(":gateway-service-factory"))

implementation("org.hypertrace.core.grpcutils:grpc-server-utils:0.12.5")
implementation("org.hypertrace.core.serviceframework:platform-grpc-service-framework:0.1.62")
implementation("org.hypertrace.core.grpcutils:grpc-server-utils:0.13.1")
implementation("org.hypertrace.core.serviceframework:platform-grpc-service-framework:0.1.64")
implementation("org.slf4j:slf4j-api:1.7.30")
implementation("com.typesafe:config:1.4.1")

runtimeOnly("io.grpc:grpc-netty:1.57.2")
runtimeOnly("io.grpc:grpc-netty:1.60.0")
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.17.1")
}

Expand Down
21 changes: 0 additions & 21 deletions owasp-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,4 @@
<cpe>cpe:/a:utils_project:utils</cpe>
<cpe>cpe:/a:service_project:service</cpe>
</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
than the transport. The change in default is under consideration for the next major Netty release, revisit then.
Regardless, our client (which is what brings in this dependency) enables the concerned feature, hostname verification
Ref:
https://github.com/grpc/grpc-java/issues/10033
https://github.com/netty/netty/issues/8537#issuecomment-1527896917
]]></notes>
<packageUrl regex="true">^pkg:maven/io\.netty/netty.*@.*$</packageUrl>
<vulnerabilityName>CVE-2023-4586</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 0f93644

Please sign in to comment.