This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-grpc.git
The following commit(s) were added to refs/heads/main by this push:
new eca9b9fb Update grpc-core, grpc-interop-testing, ... to 1.78.0 (#582)
eca9b9fb is described below
commit eca9b9fb61f11ddee7bdd61445efc5ee32949c36
Author: scala-steward-asf[bot]
<147768647+scala-steward-asf[bot]@users.noreply.github.com>
AuthorDate: Fri Jan 23 09:52:51 2026 +0100
Update grpc-core, grpc-interop-testing, ... to 1.78.0 (#582)
* Update grpc-core, grpc-interop-testing, ... to 1.78.0
* more updates
* exclude opentelemetry-exporter-prometheus as it brings in incompatible
protobuf-java
---------
Co-authored-by: scala-steward-asf[bot]
<147768647+scala-steward-asf[bot]@users.noreply.github.com>
Co-authored-by: PJ Fanning <[email protected]>
---
benchmark-java/build.sbt | 2 +-
.../org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy | 2 +-
plugin-tester-java/pom.xml | 2 +-
plugin-tester-scala/pom.xml | 2 +-
project/Dependencies.scala | 3 ++-
sbt-plugin/src/sbt-test/gen-scala-server/00-interop/build.sbt | 2 +-
6 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/benchmark-java/build.sbt b/benchmark-java/build.sbt
index 6ef16fbd..dfb874b1 100644
--- a/benchmark-java/build.sbt
+++ b/benchmark-java/build.sbt
@@ -16,7 +16,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.77.1" // checked synced by VersionSyncCheckPlugin
+val grpcVersion = "1.78.0" // checked synced by VersionSyncCheckPlugin
val runtimeProject = ProjectRef(file("../"), "runtime")
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 8523d728..b5f1328a 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.77.1" // checked synced by
VersionSyncCheckPlugin
+ static final String GRPC_VERSION = "1.78.0" // checked synced by
VersionSyncCheckPlugin
static final String PLUGIN_CODE = 'org.apache.pekko.grpc.gradle'
diff --git a/plugin-tester-java/pom.xml b/plugin-tester-java/pom.xml
index 1b80580e..b0477d3d 100644
--- a/plugin-tester-java/pom.xml
+++ b/plugin-tester-java/pom.xml
@@ -25,7 +25,7 @@
<maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version>
<maven-exec-plugin.version>3.5.1</maven-exec-plugin.version>
<pekko.http.version>1.3.0</pekko.http.version>
- <grpc.version>1.77.1</grpc.version> <!-- checked synced by
VersionSyncCheckPlugin -->
+ <grpc.version>1.78.0</grpc.version> <!-- checked synced by
VersionSyncCheckPlugin -->
<project.encoding>UTF-8</project.encoding>
</properties>
diff --git a/plugin-tester-scala/pom.xml b/plugin-tester-scala/pom.xml
index 34477956..bd401d19 100644
--- a/plugin-tester-scala/pom.xml
+++ b/plugin-tester-scala/pom.xml
@@ -24,7 +24,7 @@
<maven.compiler.target>17</maven.compiler.target>
<pekko.version>2.0.0-M1</pekko.version>
<pekko.http.version>1.3.0</pekko.http.version>
- <grpc.version>1.77.1</grpc.version> <!-- checked synced by
VersionSyncCheckPlugin -->
+ <grpc.version>1.78.0</grpc.version> <!-- checked synced by
VersionSyncCheckPlugin -->
<project.encoding>UTF-8</project.encoding>
</properties>
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 81c221fd..f77a86bb 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -33,7 +33,7 @@ object Dependencies {
val pekkoHttp = PekkoHttpDependency.version
val pekkoHttpBinary = pekkoHttp.take(3)
- val grpc = "1.77.1" // checked synced by VersionSyncCheckPlugin
+ val grpc = "1.78.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
@@ -60,6 +60,7 @@ object Dependencies {
val grpcInteropTesting = ("io.grpc" % "grpc-interop-testing" %
Versions.grpc)
.exclude("io.grpc", "grpc-alts")
.exclude("io.grpc", "grpc-xds")
+ .exclude("io.opentelemetry", "opentelemetry-exporter-prometheus")
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.17"
val mavenPluginApi = "org.apache.maven" % "maven-plugin-api" %
Versions.maven
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 08a8cc24..22a8c117 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
@@ -11,7 +11,7 @@ organization := "org.apache.pekko"
scalaVersion := "2.13.18"
-val grpcVersion = "1.77.1" // checked synced by VersionSyncCheckPlugin
+val grpcVersion = "1.78.0" // checked synced by VersionSyncCheckPlugin
libraryDependencies ++= Seq(
"io.grpc" % "grpc-interop-testing" % grpcVersion % "protobuf-src",
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]