Skip to content

Commit 19727c4

Browse files
authored
Merge branch 'master' into maven
2 parents 664cbdf + ca99a8c commit 19727c4

128 files changed

Lines changed: 2788 additions & 2427 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module(
22
name = "grpc-java",
33
compatibility_level = 0,
44
repo_name = "io_grpc_grpc_java",
5-
version = "1.74.0-SNAPSHOT", # CURRENT_GRPC_VERSION
5+
version = "1.75.0-SNAPSHOT", # CURRENT_GRPC_VERSION
66
)
77

88
# GRPC_DEPS_START

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ For [Bazel](https://bazel.build), you can either
102102
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.73.0
103103

104104
Development snapshots are available in [Sonatypes's snapshot
105-
repository](https://oss.sonatype.org/content/repositories/snapshots/).
105+
repository](https://central.sonatype.com/repository/maven-snapshots/).
106106

107107
Generated Code
108108
--------------

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Tagging the Release
160160
repository can then be `released`, which will begin the process of pushing
161161
the new artifacts to Maven Central (the staging repository will be destroyed
162162
in the process). You can see the complete process for releasing to Maven
163-
Central on the [OSSRH site](https://central.sonatype.org/pages/releasing-the-deployment.html).
163+
Central on the [OSSRH site](https://central.sonatype.org/publish/publish-portal-ossrh-staging-api/#deploying).
164164

165165
10. We have containers for each release to detect compatibility regressions with
166166
old releases. Generate one for the new release by following the [GCR image

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/LoadBalancerStatsServiceGrpc.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ protected LoadBalancerStatsServiceBlockingV2Stub build(
242242
* Gets the backend distribution for RPCs sent by a test client.
243243
* </pre>
244244
*/
245-
public io.grpc.testing.integration.Messages.LoadBalancerStatsResponse getClientStats(io.grpc.testing.integration.Messages.LoadBalancerStatsRequest request) {
246-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
245+
public io.grpc.testing.integration.Messages.LoadBalancerStatsResponse getClientStats(io.grpc.testing.integration.Messages.LoadBalancerStatsRequest request) throws io.grpc.StatusException {
246+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
247247
getChannel(), getGetClientStatsMethod(), getCallOptions(), request);
248248
}
249249

@@ -252,8 +252,8 @@ public io.grpc.testing.integration.Messages.LoadBalancerStatsResponse getClientS
252252
* Gets the accumulated stats for RPCs sent by a test client.
253253
* </pre>
254254
*/
255-
public io.grpc.testing.integration.Messages.LoadBalancerAccumulatedStatsResponse getClientAccumulatedStats(io.grpc.testing.integration.Messages.LoadBalancerAccumulatedStatsRequest request) {
256-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
255+
public io.grpc.testing.integration.Messages.LoadBalancerAccumulatedStatsResponse getClientAccumulatedStats(io.grpc.testing.integration.Messages.LoadBalancerAccumulatedStatsRequest request) throws io.grpc.StatusException {
256+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
257257
getChannel(), getGetClientAccumulatedStatsMethod(), getCallOptions(), request);
258258
}
259259
}

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/MetricsServiceGrpc.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ protected MetricsServiceBlockingV2Stub build(
242242
* Returns the value of one gauge
243243
* </pre>
244244
*/
245-
public io.grpc.testing.integration.Metrics.GaugeResponse getGauge(io.grpc.testing.integration.Metrics.GaugeRequest request) {
246-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
245+
public io.grpc.testing.integration.Metrics.GaugeResponse getGauge(io.grpc.testing.integration.Metrics.GaugeRequest request) throws io.grpc.StatusException {
246+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
247247
getChannel(), getGetGaugeMethod(), getCallOptions(), request);
248248
}
249249
}

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/ReconnectServiceGrpc.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,15 +227,15 @@ protected ReconnectServiceBlockingV2Stub build(
227227

228228
/**
229229
*/
230-
public io.grpc.testing.integration.EmptyProtos.Empty start(io.grpc.testing.integration.Messages.ReconnectParams request) {
231-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
230+
public io.grpc.testing.integration.EmptyProtos.Empty start(io.grpc.testing.integration.Messages.ReconnectParams request) throws io.grpc.StatusException {
231+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
232232
getChannel(), getStartMethod(), getCallOptions(), request);
233233
}
234234

235235
/**
236236
*/
237-
public io.grpc.testing.integration.Messages.ReconnectInfo stop(io.grpc.testing.integration.EmptyProtos.Empty request) {
238-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
237+
public io.grpc.testing.integration.Messages.ReconnectInfo stop(io.grpc.testing.integration.EmptyProtos.Empty request) throws io.grpc.StatusException {
238+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
239239
getChannel(), getStopMethod(), getCallOptions(), request);
240240
}
241241
}

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/TestServiceGrpc.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -573,8 +573,8 @@ protected TestServiceBlockingV2Stub build(
573573
* One empty request followed by one empty response.
574574
* </pre>
575575
*/
576-
public io.grpc.testing.integration.EmptyProtos.Empty emptyCall(io.grpc.testing.integration.EmptyProtos.Empty request) {
577-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
576+
public io.grpc.testing.integration.EmptyProtos.Empty emptyCall(io.grpc.testing.integration.EmptyProtos.Empty request) throws io.grpc.StatusException {
577+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
578578
getChannel(), getEmptyCallMethod(), getCallOptions(), request);
579579
}
580580

@@ -583,8 +583,8 @@ public io.grpc.testing.integration.EmptyProtos.Empty emptyCall(io.grpc.testing.i
583583
* One request followed by one response.
584584
* </pre>
585585
*/
586-
public io.grpc.testing.integration.Messages.SimpleResponse unaryCall(io.grpc.testing.integration.Messages.SimpleRequest request) {
587-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
586+
public io.grpc.testing.integration.Messages.SimpleResponse unaryCall(io.grpc.testing.integration.Messages.SimpleRequest request) throws io.grpc.StatusException {
587+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
588588
getChannel(), getUnaryCallMethod(), getCallOptions(), request);
589589
}
590590

@@ -595,8 +595,8 @@ public io.grpc.testing.integration.Messages.SimpleResponse unaryCall(io.grpc.tes
595595
* satisfy subsequent requests.
596596
* </pre>
597597
*/
598-
public io.grpc.testing.integration.Messages.SimpleResponse cacheableUnaryCall(io.grpc.testing.integration.Messages.SimpleRequest request) {
599-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
598+
public io.grpc.testing.integration.Messages.SimpleResponse cacheableUnaryCall(io.grpc.testing.integration.Messages.SimpleRequest request) throws io.grpc.StatusException {
599+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
600600
getChannel(), getCacheableUnaryCallMethod(), getCallOptions(), request);
601601
}
602602

@@ -661,8 +661,8 @@ public io.grpc.testing.integration.Messages.SimpleResponse cacheableUnaryCall(io
661661
* to test the behavior when clients call unimplemented methods.
662662
* </pre>
663663
*/
664-
public io.grpc.testing.integration.EmptyProtos.Empty unimplementedCall(io.grpc.testing.integration.EmptyProtos.Empty request) {
665-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
664+
public io.grpc.testing.integration.EmptyProtos.Empty unimplementedCall(io.grpc.testing.integration.EmptyProtos.Empty request) throws io.grpc.StatusException {
665+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
666666
getChannel(), getUnimplementedCallMethod(), getCallOptions(), request);
667667
}
668668
}

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/UnimplementedServiceGrpc.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ protected UnimplementedServiceBlockingV2Stub build(
196196
* A call that no server should implement
197197
* </pre>
198198
*/
199-
public io.grpc.testing.integration.EmptyProtos.Empty unimplementedCall(io.grpc.testing.integration.EmptyProtos.Empty request) {
200-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
199+
public io.grpc.testing.integration.EmptyProtos.Empty unimplementedCall(io.grpc.testing.integration.EmptyProtos.Empty request) throws io.grpc.StatusException {
200+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
201201
getChannel(), getUnimplementedCallMethod(), getCallOptions(), request);
202202
}
203203
}

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/XdsUpdateClientConfigureServiceGrpc.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ protected XdsUpdateClientConfigureServiceBlockingV2Stub build(
191191
* Update the tes client's configuration.
192192
* </pre>
193193
*/
194-
public io.grpc.testing.integration.Messages.ClientConfigureResponse configure(io.grpc.testing.integration.Messages.ClientConfigureRequest request) {
195-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
194+
public io.grpc.testing.integration.Messages.ClientConfigureResponse configure(io.grpc.testing.integration.Messages.ClientConfigureRequest request) throws io.grpc.StatusException {
195+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
196196
getChannel(), getConfigureMethod(), getCallOptions(), request);
197197
}
198198
}

android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/XdsUpdateHealthServiceGrpc.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,15 +227,15 @@ protected XdsUpdateHealthServiceBlockingV2Stub build(
227227

228228
/**
229229
*/
230-
public io.grpc.testing.integration.EmptyProtos.Empty setServing(io.grpc.testing.integration.EmptyProtos.Empty request) {
231-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
230+
public io.grpc.testing.integration.EmptyProtos.Empty setServing(io.grpc.testing.integration.EmptyProtos.Empty request) throws io.grpc.StatusException {
231+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
232232
getChannel(), getSetServingMethod(), getCallOptions(), request);
233233
}
234234

235235
/**
236236
*/
237-
public io.grpc.testing.integration.EmptyProtos.Empty setNotServing(io.grpc.testing.integration.EmptyProtos.Empty request) {
238-
return io.grpc.stub.ClientCalls.blockingUnaryCall(
237+
public io.grpc.testing.integration.EmptyProtos.Empty setNotServing(io.grpc.testing.integration.EmptyProtos.Empty request) throws io.grpc.StatusException {
238+
return io.grpc.stub.ClientCalls.blockingV2UnaryCall(
239239
getChannel(), getSetNotServingMethod(), getCallOptions(), request);
240240
}
241241
}

0 commit comments

Comments
 (0)