From a630880a4d1c49689b9f2093ae685828ee62a93e Mon Sep 17 00:00:00 2001 From: "scala-steward-asf[bot]" <147768647+scala-steward-asf[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 14:25:28 +0000 Subject: [PATCH 1/2] Update grpc-core, grpc-interop-testing, ... to 1.63.0 --- benchmark-java/build.sbt | 2 +- plugin-tester-java/pom.xml | 2 +- plugin-tester-scala/pom.xml | 2 +- project/Dependencies.scala | 2 +- sbt-plugin/src/sbt-test/gen-scala-server/00-interop/build.sbt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/benchmark-java/build.sbt b/benchmark-java/build.sbt index a2be6041..efe1bf24 100644 --- a/benchmark-java/build.sbt +++ b/benchmark-java/build.sbt @@ -14,7 +14,7 @@ run / javaOptions ++= List("-Xms1g", "-Xmx1g", "-XX:+PrintGCDetails", "-XX:+Prin // generate both client and server (default) in Java pekkoGrpcGeneratedLanguages := Seq(PekkoGrpc.Java) -val grpcVersion = "1.62.2" // checked synced by VersionSyncCheckPlugin +val grpcVersion = "1.63.0" // checked synced by VersionSyncCheckPlugin val runtimeProject = ProjectRef(file("../"), "runtime") diff --git a/plugin-tester-java/pom.xml b/plugin-tester-java/pom.xml index a2f8cf17..73898043 100644 --- a/plugin-tester-java/pom.xml +++ b/plugin-tester-java/pom.xml @@ -25,7 +25,7 @@ 3.1.2 3.0.0 1.0.1 - 1.62.2 + 1.63.0 UTF-8 diff --git a/plugin-tester-scala/pom.xml b/plugin-tester-scala/pom.xml index 48ec4ff4..84e6b281 100644 --- a/plugin-tester-scala/pom.xml +++ b/plugin-tester-scala/pom.xml @@ -24,7 +24,7 @@ 1.8 1.0.2 1.0.1 - 1.62.2 + 1.63.0 UTF-8 diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 5ab60e93..768de749 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -32,7 +32,7 @@ object Dependencies { val pekkoHttp = PekkoHttpDependency.version val pekkoHttpBinary = pekkoHttp.take(3) - val grpc = "1.62.2" // checked synced by VersionSyncCheckPlugin + val grpc = "1.63.0" // checked synced by VersionSyncCheckPlugin // Even referenced explicitly in the sbt-plugin's sbt-tests // If changing this, remember to update protoc plugin version to align in // maven-plugin/src/main/maven/plugin.xml and org.apache.pekko.grpc.sbt.PekkoGrpcPlugin diff --git a/sbt-plugin/src/sbt-test/gen-scala-server/00-interop/build.sbt b/sbt-plugin/src/sbt-test/gen-scala-server/00-interop/build.sbt index faf8c2ae..84449c63 100644 --- a/sbt-plugin/src/sbt-test/gen-scala-server/00-interop/build.sbt +++ b/sbt-plugin/src/sbt-test/gen-scala-server/00-interop/build.sbt @@ -13,7 +13,7 @@ scalaVersion := "2.12.19" organization := "org.apache.pekko" -val grpcVersion = "1.62.2" // checked synced by VersionSyncCheckPlugin +val grpcVersion = "1.63.0" // checked synced by VersionSyncCheckPlugin libraryDependencies ++= Seq( "io.grpc" % "grpc-interop-testing" % grpcVersion % "protobuf-src", From fe5858fecd40614052e8c35ccf95314fb5f1e774 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sat, 6 Apr 2024 16:58:17 +0200 Subject: [PATCH 2/2] Update gRPC version in gradle PekkoGrpcPlugin as well --- .../apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy b/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy index 140cc99d..230694d6 100644 --- a/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy +++ b/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy @@ -18,7 +18,7 @@ class PekkoGrpcPluginExtension { static final String PROTOC_PLUGIN_SCALA_VERSION = "2.12" - static final String GRPC_VERSION = "1.62.2" // checked synced by VersionSyncCheckPlugin + static final String GRPC_VERSION = "1.63.0" // checked synced by 'sbt grpcVersionSyncCheck' static final String PLUGIN_CODE = 'org.apache.pekko.grpc.gradle'