This is an automated email from the ASF dual-hosted git repository.

pjfanning 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 d104fa3d Update grpc-core, grpc-interop-testing, ... to 1.82.2 (#789)
d104fa3d is described below

commit d104fa3d232e9084213a630c832f727c4845c5bd
Author: Scala Steward <[email protected]>
AuthorDate: Fri Jul 10 19:17:39 2026 +0200

    Update grpc-core, grpc-interop-testing, ... to 1.82.2 (#789)
    
    * Update grpc-core, grpc-interop-testing, ... to 1.82.2
    
    * more updates
    
    ---------
    
    Co-authored-by: PJ Fanning <[email protected]>
---
 benchmark-java/build.sbt                                                | 2 +-
 .../groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy | 2 +-
 gradle-plugin/src/test/java/unit/DependenciesSpecTest.java              | 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 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/benchmark-java/build.sbt b/benchmark-java/build.sbt
index c361b435..8e2895fa 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.82.1" // checked synced by VersionSyncCheckPlugin
+val grpcVersion = "1.82.2" // 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 7a938b42..c86da88d 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.82.1" // checked synced by 
VersionSyncCheckPlugin
+    static final String GRPC_VERSION = "1.82.2" // checked synced by 
VersionSyncCheckPlugin
 
     static final String PLUGIN_CODE = 'org.apache.pekko.grpc.gradle'
 
diff --git a/gradle-plugin/src/test/java/unit/DependenciesSpecTest.java 
b/gradle-plugin/src/test/java/unit/DependenciesSpecTest.java
index 3a390cad..0d119e00 100644
--- a/gradle-plugin/src/test/java/unit/DependenciesSpecTest.java
+++ b/gradle-plugin/src/test/java/unit/DependenciesSpecTest.java
@@ -32,7 +32,7 @@ class DependenciesSpecTest extends BaseSpec {
     static final String PROTOC_PLUGIN_CODEGEN = "pekkoGrpc";
     static final String PROTOC_PLUGIN_SCALAPB = "scalapb";
     static final String PROTOC_PLUGIN_SCALA_VERSION = "2.12";
-    static final String GRPC_VERSION = "1.82.1";
+    static final String GRPC_VERSION = "1.82.2";
 
     private Project project;
 
diff --git a/plugin-tester-java/pom.xml b/plugin-tester-java/pom.xml
index 795f21c7..11dd418f 100644
--- a/plugin-tester-java/pom.xml
+++ b/plugin-tester-java/pom.xml
@@ -26,7 +26,7 @@
     <maven-exec-plugin.version>3.6.3</maven-exec-plugin.version>
     <pekko.version>2.0.0-M3</pekko.version>
     <pekko.http.version>2.0.0-M1</pekko.http.version>
-    <grpc.version>1.82.1</grpc.version> <!-- checked synced by 
VersionSyncCheckPlugin -->
+    <grpc.version>1.82.2</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 fb45885c..e499ed7c 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-M3</pekko.version>
     <pekko.http.version>2.0.0-M1</pekko.http.version>
-    <grpc.version>1.82.1</grpc.version> <!-- checked synced by 
VersionSyncCheckPlugin -->
+    <grpc.version>1.82.2</grpc.version> <!-- checked synced by 
VersionSyncCheckPlugin -->
     <project.encoding>UTF-8</project.encoding>
   </properties>
 
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 7038c552..54b8216d 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -36,7 +36,7 @@ object Dependencies {
     val pekkoHttp = PekkoHttpDependency.version
     val pekkoHttpBinary = pekkoHttp.take(3)
 
-    val grpc = "1.82.1" // checked synced by VersionSyncCheckPlugin
+    val grpc = "1.82.2" // 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 aaa4a8bf..a0cc2849 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.82.1" // checked synced by VersionSyncCheckPlugin
+val grpcVersion = "1.82.2" // 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]

Reply via email to