Skip to content

Commit

Permalink
grpc: update to 1.68.2
Browse files Browse the repository at this point in the history
  • Loading branch information
raboof committed Nov 28, 2024
1 parent c3544a8 commit f9f2fa1
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ updates.pin = [
# when we update to protobuf 4.x we probably need to update a bunch of libraries
# in tandem, and possibly schedule this for a major pekko-grpc release
{ groupId = "com.google.protobuf", version = "3." }

# Issues when using GRPC 1.68+ - https://github.com/apache/pekko-grpc/pull/397
{ groupId = "io.grpc", version = "1.67." }
]

updatePullRequests = "always"
2 changes: 1 addition & 1 deletion benchmark-java/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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.67.1" // checked synced by VersionSyncCheckPlugin
val grpcVersion = "1.68.2" // checked synced by VersionSyncCheckPlugin

val runtimeProject = ProjectRef(file("../"), "runtime")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class PekkoGrpcPluginExtension {

static final String PROTOC_PLUGIN_SCALA_VERSION = "2.12"

static final String GRPC_VERSION = "1.67.1" // checked synced by VersionSyncCheckPlugin
static final String GRPC_VERSION = "1.68.2" // checked synced by VersionSyncCheckPlugin

static final String PLUGIN_CODE = 'org.apache.pekko.grpc.gradle'

Expand Down
2 changes: 1 addition & 1 deletion plugin-tester-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version>
<maven-exec-plugin.version>3.0.0</maven-exec-plugin.version>
<pekko.http.version>1.1.0</pekko.http.version>
<grpc.version>1.67.1</grpc.version> <!-- checked synced by VersionSyncCheckPlugin -->
<grpc.version>1.68.2</grpc.version> <!-- checked synced by VersionSyncCheckPlugin -->
<project.encoding>UTF-8</project.encoding>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion plugin-tester-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<pekko.version>1.1.2</pekko.version>
<pekko.http.version>1.1.0</pekko.http.version>
<grpc.version>1.67.1</grpc.version> <!-- checked synced by VersionSyncCheckPlugin -->
<grpc.version>1.68.2</grpc.version> <!-- checked synced by VersionSyncCheckPlugin -->
<project.encoding>UTF-8</project.encoding>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object Dependencies {
val pekkoHttp = PekkoHttpDependency.version
val pekkoHttpBinary = pekkoHttp.take(3)

val grpc = "1.67.1" // checked synced by VersionSyncCheckPlugin
val grpc = "1.68.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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ scalaVersion := "2.12.20"

organization := "org.apache.pekko"

val grpcVersion = "1.67.1" // checked synced by VersionSyncCheckPlugin
val grpcVersion = "1.68.2" // checked synced by VersionSyncCheckPlugin

libraryDependencies ++= Seq(
"io.grpc" % "grpc-interop-testing" % grpcVersion % "protobuf-src",
Expand Down

0 comments on commit f9f2fa1

Please sign in to comment.