Skip to content

Commit 72c2f81

Browse files
authored
chore(deps): upgrade grpc (#32)
* chore(deps): upgrade grpc * remove unused dependencies * remove empty space
1 parent ff6014f commit 72c2f81

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

config-proto-converter/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55

66

77
dependencies {
8-
api("io.grpc:grpc-protobuf:1.35.0")
8+
api("io.grpc:grpc-protobuf:1.36.0")
99
implementation("com.google.protobuf:protobuf-java-util:3.13.0")
1010
constraints {
1111
implementation("com.google.guava:guava:30.1-jre") {

config-service-api/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ protobuf {
1818
// the identifier, which can be referred to in the "plugins"
1919
// container of the "generateProtoTasks" closure.
2020
id("grpc_java") {
21-
artifact = "io.grpc:protoc-gen-grpc-java:1.35.0"
21+
artifact = "io.grpc:protoc-gen-grpc-java:1.36.0"
2222
}
2323

2424
if (generateLocalGoGrpcFiles) {
@@ -57,8 +57,8 @@ sourceSets {
5757
}
5858

5959
dependencies {
60-
api("io.grpc:grpc-protobuf:1.35.0")
61-
api("io.grpc:grpc-stub:1.35.0")
60+
api("io.grpc:grpc-protobuf:1.36.0")
61+
api("io.grpc:grpc-stub:1.36.0")
6262
api("javax.annotation:javax.annotation-api:1.3.2")
6363
constraints {
6464
implementation("com.google.guava:guava:30.1-jre") {

config-service/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ dependencies {
6363
implementation("org.slf4j:slf4j-api:1.7.30")
6464

6565
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.13.3")
66-
runtimeOnly("io.grpc:grpc-netty:1.35.0")
66+
runtimeOnly("io.grpc:grpc-netty:1.36.0")
6767

6868
//Integration test dependencies
6969
integrationTestImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
@@ -72,7 +72,6 @@ dependencies {
7272
integrationTestImplementation(project(":config-service-impl"))
7373
integrationTestImplementation("org.hypertrace.core.serviceframework:integrationtest-service-framework:0.1.18")
7474
integrationTestImplementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.3.3")
75-
7675
constraints {
7776
runtimeOnly("io.netty:netty-codec-http2:4.1.59.Final") {
7877
because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1070799")

spaces-config-service-api/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ protobuf {
1212
}
1313
plugins {
1414
id("grpc") {
15-
artifact = "io.grpc:protoc-gen-grpc-java:1.35.0"
15+
artifact = "io.grpc:protoc-gen-grpc-java:1.36.0"
1616
}
1717
}
1818
generateProtoTasks {
@@ -25,8 +25,8 @@ protobuf {
2525
}
2626

2727
dependencies {
28-
api("io.grpc:grpc-protobuf:1.35.0")
29-
api("io.grpc:grpc-stub:1.35.0")
28+
api("io.grpc:grpc-protobuf:1.36.0")
29+
api("io.grpc:grpc-stub:1.36.0")
3030
api("javax.annotation:javax.annotation-api:1.3.2")
3131
constraints {
3232
implementation("com.google.guava:guava:30.1-jre") {

0 commit comments

Comments
 (0)