From 21f1219f6190811758a8cbc6ea6904c088d1bff9 Mon Sep 17 00:00:00 2001 From: kerr Date: Tue, 19 Sep 2023 15:18:04 +0800 Subject: [PATCH] =build Update grpc java to 1.58.0 (#383) --- java_armeria_bench/build.gradle | 2 +- java_hotspot_grpc_sgc_bench/build.gradle | 2 +- java_vertx_grpc_bench/build.gradle | 2 +- kotlin_grpc_bench/build.gradle.kts | 2 +- scala_zio_bench/build.sbt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/java_armeria_bench/build.gradle b/java_armeria_bench/build.gradle index 672aafdb..b36b9b93 100644 --- a/java_armeria_bench/build.gradle +++ b/java_armeria_bench/build.gradle @@ -16,7 +16,7 @@ targetCompatibility = 17 def armeriaVersion = '1.20.3' -def grpcVersion = '1.49.0' +def grpcVersion = '1.58.0' def protocVersion = '3.21.5' dependencies { diff --git a/java_hotspot_grpc_sgc_bench/build.gradle b/java_hotspot_grpc_sgc_bench/build.gradle index 739b22d7..19a13753 100644 --- a/java_hotspot_grpc_sgc_bench/build.gradle +++ b/java_hotspot_grpc_sgc_bench/build.gradle @@ -22,7 +22,7 @@ targetCompatibility = 17 // Feel free to delete the comment at the next line. It is just for safely // updating the version in our release process. -def grpcVersion = '1.49.1' // CURRENT_GRPC_VERSION +def grpcVersion = '1.58.0' // CURRENT_GRPC_VERSION def protobufVersion = '3.21.7' def protocVersion = protobufVersion diff --git a/java_vertx_grpc_bench/build.gradle b/java_vertx_grpc_bench/build.gradle index 1cab4abe..338c247f 100644 --- a/java_vertx_grpc_bench/build.gradle +++ b/java_vertx_grpc_bench/build.gradle @@ -8,7 +8,7 @@ repositories { mavenCentral() } -def grpcVersion = '1.49.1' // CURRENT_GRPC_VERSION +def grpcVersion = '1.58.0' // CURRENT_GRPC_VERSION def protobufVersion = '3.21.6' def protocVersion = protobufVersion diff --git a/kotlin_grpc_bench/build.gradle.kts b/kotlin_grpc_bench/build.gradle.kts index 2ef06484..77154c4a 100644 --- a/kotlin_grpc_bench/build.gradle.kts +++ b/kotlin_grpc_bench/build.gradle.kts @@ -5,7 +5,7 @@ import com.google.protobuf.gradle.plugins import com.google.protobuf.gradle.protobuf import com.google.protobuf.gradle.protoc -val grpcVersion = "1.49.0" +val grpcVersion = "1.58.0" val grpcKotlinVersion = "1.3.0" val protobufVersion = "3.21.5" val coroutinesVersion = "1.6.4" diff --git a/scala_zio_bench/build.sbt b/scala_zio_bench/build.sbt index 66f42283..4338f997 100644 --- a/scala_zio_bench/build.sbt +++ b/scala_zio_bench/build.sbt @@ -6,7 +6,7 @@ scalaVersion := "2.13.11" run / fork := true -val grpcVersion = "1.56.1" +val grpcVersion = "1.58.0" Compile / PB.targets := Seq( scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,