Skip to content

Commit

Permalink
Update grpc-core, grpc-interop-testing, ... to 1.68.0 (#367)
Browse files Browse the repository at this point in the history
* Update grpc-core, grpc-interop-testing, ... to 1.68.0

* set version in other build files

* fix interop compile issues

* javafmt

* Update GrpcJavaClientTester.java

---------

Co-authored-by: scala-steward-asf[bot] <147768647+scala-steward-asf[bot]@users.noreply.github.com>
Co-authored-by: PJ Fanning <[email protected]>
  • Loading branch information
scala-steward-asf[bot] and pjfanning authored Sep 22, 2024
1 parent cf0484e commit f62fc6c
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 33 deletions.
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.66.0" // checked synced by VersionSyncCheckPlugin
val grpcVersion = "1.68.0" // checked synced by VersionSyncCheckPlugin

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import org.gradle.api.Project

class PekkoGrpcPluginExtension {

static final String PROTOC_VERSION = "3.25.4" // checked synced by VersionSyncCheckPlugin
static final String PROTOC_VERSION = "3.25.5" // checked synced by VersionSyncCheckPlugin

static final String PROTOC_PLUGIN_SCALA_VERSION = "2.12"

static final String GRPC_VERSION = "1.66.0" // checked synced by VersionSyncCheckPlugin
static final String GRPC_VERSION = "1.68.0" // checked synced by VersionSyncCheckPlugin

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ public void emptyUnary() throws Exception {
}

@Override
public void cacheableUnary() {
tester.cacheableUnary();
}
public void cacheableUnary() {}

@Override
public void largeUnary() throws Exception {
Expand Down Expand Up @@ -94,32 +92,22 @@ public void emptyStream() throws Exception {
}

@Override
public void computeEngineCreds(String serviceAccount, String oauthScope) throws Exception {
tester.computeEngineCreds(serviceAccount, oauthScope);
}
public void computeEngineCreds(String serviceAccount, String oauthScope) throws Exception {}

@Override
public void serviceAccountCreds(String jsonKey, InputStream credentialsStream, String authScope)
throws Exception {
tester.serviceAccountCreds(jsonKey, credentialsStream, authScope);
}
throws Exception {}

@Override
public void jwtTokenCreds(InputStream serviceAccountJson) throws Exception {
tester.jwtTokenCreds(serviceAccountJson);
}
public void jwtTokenCreds(InputStream serviceAccountJson) throws Exception {}

@Override
public void oauth2AuthToken(String jsonKey, InputStream credentialsStream, String authScope)
throws Exception {
tester.oauth2AuthToken(jsonKey, credentialsStream, authScope);
}
throws Exception {}

@Override
public void perRpcCreds(String jsonKey, InputStream credentialsStream, String oauthScope)
throws Exception {
tester.perRpcCreds(jsonKey, credentialsStream, oauthScope);
}
throws Exception {}

@Override
public void customMetadata() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,7 @@ public void testManualApproach() throws Exception {
HelloRequest request = HelloRequest.newBuilder().setName("Alice").build();
CompletionStage<HelloReply> response = client.sayHello(request);
StatusRuntimeException statusEx =
response
.toCompletableFuture()
.handle(
(res, ex) -> (StatusRuntimeException) ex)
.get();
response.toCompletableFuture().handle((res, ex) -> (StatusRuntimeException) ex).get();

com.google.rpc.Status status =
StatusProto.fromStatusAndTrailers(statusEx.getStatus(), statusEx.getTrailers());
Expand Down
4 changes: 2 additions & 2 deletions maven-plugin/src/main/maven/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<extraGenerators implementation="java.util.List" default-value=""/>
<protoPaths default-value="${project.basedir}/src/main/proto,${project.basedir}/src/main/protobuf">${pekko-grpc.protoPaths}</protoPaths>
<outputDirectory default-value="${project.build.directory}/generated-sources">${pekko-grpc.outputDirectory}</outputDirectory>
<protocVersion implementation="java.lang.String" default-value="-v3.25.4">${pekko-grpc.protoc-version}</protocVersion> <!-- checked synced by VersionSyncCheckPlugin -->
<protocVersion implementation="java.lang.String" default-value="-v3.25.5">${pekko-grpc.protoc-version}</protocVersion> <!-- checked synced by VersionSyncCheckPlugin -->
<includeStdTypes implementation="boolean" default-value="false" />
</configuration>
</mojo>
Expand Down Expand Up @@ -187,7 +187,7 @@
<extraGenerators implementation="java.util.List" default-value=""/>
<protoPaths default-value="src/test/proto,src/test/protobuf">${pekko-grpc.protoPaths}</protoPaths>
<outputDirectory default-value="target/generated-test-sources">${pekko-grpc.outputDirectory}</outputDirectory>
<protocVersion implementation="java.lang.String" default-value="-v3.25.4">${pekko-grpc.protoc-version}</protocVersion> <!-- checked synced by VersionSyncCheckPlugin -->
<protocVersion implementation="java.lang.String" default-value="-v3.25.5">${pekko-grpc.protoc-version}</protocVersion> <!-- checked synced by VersionSyncCheckPlugin -->
<includeStdTypes implementation="boolean" default-value="false" />
</configuration>
</mojo>
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-M1</pekko.http.version>
<grpc.version>1.66.0</grpc.version> <!-- checked synced by VersionSyncCheckPlugin -->
<grpc.version>1.68.0</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.1</pekko.version>
<pekko.http.version>1.1.0-M1</pekko.http.version>
<grpc.version>1.66.0</grpc.version> <!-- checked synced by VersionSyncCheckPlugin -->
<grpc.version>1.68.0</grpc.version> <!-- checked synced by VersionSyncCheckPlugin -->
<project.encoding>UTF-8</project.encoding>
</properties>

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

val grpc = "1.66.0" // checked synced by VersionSyncCheckPlugin
val grpc = "1.68.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
val googleProtoc = "3.25.4" // checked synced by VersionSyncCheckPlugin
val googleProtoc = "3.25.5" // checked synced by VersionSyncCheckPlugin
val googleProtobufJava = "3.25.5"

val scalaTest = "3.2.19"
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.66.0" // checked synced by VersionSyncCheckPlugin
val grpcVersion = "1.68.0" // checked synced by VersionSyncCheckPlugin

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

0 comments on commit f62fc6c

Please sign in to comment.