Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump grpc.version from 1.55.1 to 1.56.0 #34110

Merged
merged 1 commit into from
Jun 19, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 16, 2023

Bumps grpc.version from 1.55.1 to 1.56.0.
Updates grpc-bom from 1.55.1 to 1.56.0

Release notes

Sourced from grpc-bom's releases.

v1.56.0

API Changes

  • api: Stabilize the SynchronizationContext class (#10130).
  • api: Stabilize io.grpc.CallCredentials (#10208, #10211). thisUsesUnstableApi() is @Deprecated and has a default implementation. CallCredentials implementations should delete their implementation or remove @Overrides, as the method will be deleted in the future.
  • api: Stabilize the ProxyDetector hierarchy and ManagedChannelBuilder.proxyDetector method.

Behavior Changes

  • core: Sticky TRANSIENT_FAILURE in PickFirstLoadBalancer (#10106). See gRFC A62. If it can't connect, pick-first will now immediately fail RPCs until after it successfully connects. RPCs will no longer be delayed while it performs those attempts, which previously could cause significant (error) latency. It now also performs reconnect attempts after failure and backoff without prompting; previously it required an RPC to trigger the reconnect. ManagedChannel.idleTimeout (defaults to 30 minutes) still applies and forces the channel idle after a period of no RPCs.
  • stub: Add a null check for responseObserver into the methods for initiating a call that takes a responseObserver argument. This ensures a fail fast with a clearer cause instead of an NPE when the observer is first used.
  • xds: Flip default for RLS being enabled to true for XDS (#10248) (#10252). If there are no RLS configurations in your XDS or you already enabled it with the environment variable this will have no effect. To disable it, set the flag GRPC_EXPERIMENTAL_XDS_RLS_LB to false.
  • xds: Rename weighted_round_robin_experimental LB Policy to weighted_round_robin (#10162).

New Features

  • protobuf,protobuf-lite: Allow to configure protobuf recursion limit (#10094).
  • core: Optional address shuffle in PickFirstLoadBalancer (#10110).
  • xds: pick_first LB configuration (#10181).

Improvements

  • xds: Add error-per-second in weight formula for client-side WRR (#10177).
  • xds: Use application_utilization and fallback to cpu_utilization if unset in weight formula for client-side WRR. (#10256).
  • bazel: The README now mentions Bazel and where to find the example. (#10217).

Bug Fixes

  • binder: Handle unexpected exceptions on binder threads. (#10092.
  • ​​android,binder,cronet: .aar file when publishing. (#10138).
  • api: Fix boundary check in Status.fromCodeValue(). (#10155).
  • core: Don't use system Locale for content-type matching. (#10097).
  • okhttp: Fix signed-byte comparison in server when checking for ASCII in header (#10151). Without fix, authority could contain utf-8.

Dependencies

  • Version pinning (e.g., [1.56.0] instead of 1.56.0) has been removed from POMs, for both Netty and gRPC dependencies. The pinning was unreliable in Maven and ignored in Gradle, yet caused downloads during the build to fetch the version list. For a while we've had a BOM that helps reduce version skew. (#10175).
  • bazel: Add java toolchain type to all rules using java_common. (#10225).
  • Upgraded netty-tcnative-boringssl-static in grpc-netty-shaded to 2.0.61.Final (#10260). Netty itself was not updated.
  • Upgraded AndroidX Annotation to 1.6.0 (#10178).
  • Upgraded AndroidX Core to 1.10.0 (#10178).
  • Upgraded AndroidX Lifecycle-Common to 2.6.1 (#10178).
  • Upgraded OpenCensus to 0.31.1 (#10178).
  • Upgraded Cronet API to 108.5359.79 (#10178).
  • Upgraded proto-google-common-protos to 2.17.0 (#10178).
  • Upgraded Gson to 2.10.1 (#10178).
  • Upgraded PerfMark API to 0.26.0 (#10178).
  • Upgraded RE2/J to 1.7 (#10178).

Acknowledgements

Commits
  • d25095c Bump version to 1.56.0
  • 6168330 Update README etc to reference 1.56.0
  • b89207f Upgrade netty-tcnative to 2.0.61.Final
  • caeeb06 services, xds, orca: use application_utilization and fallback to cpu_utilizat...
  • 311e7bc Download Maven from Maven Central
  • be4dc4c Flip default for RLS on XDS being enabled to true. (#10248) (#10252)
  • 09260ce buildscripts, psm interop: Don't fail target if sub-target already failed (#1...
  • e6d9b41 bazel: Add java toolchain type to all rules which are using java_common (#10225)
  • 4277867 gcp observability: Update Docker images to eclipse-temurin (#10218)
  • df85a45 Add a java specific description of manual flow control to the example. (#10223)
  • Additional commits viewable in compare view

Updates protoc-gen-grpc-java from 1.55.1 to 1.56.0

Release notes

Sourced from protoc-gen-grpc-java's releases.

v1.56.0

API Changes

  • api: Stabilize the SynchronizationContext class (#10130).
  • api: Stabilize io.grpc.CallCredentials (#10208, #10211). thisUsesUnstableApi() is @Deprecated and has a default implementation. CallCredentials implementations should delete their implementation or remove @Overrides, as the method will be deleted in the future.
  • api: Stabilize the ProxyDetector hierarchy and ManagedChannelBuilder.proxyDetector method.

Behavior Changes

  • core: Sticky TRANSIENT_FAILURE in PickFirstLoadBalancer (#10106). See gRFC A62. If it can't connect, pick-first will now immediately fail RPCs until after it successfully connects. RPCs will no longer be delayed while it performs those attempts, which previously could cause significant (error) latency. It now also performs reconnect attempts after failure and backoff without prompting; previously it required an RPC to trigger the reconnect. ManagedChannel.idleTimeout (defaults to 30 minutes) still applies and forces the channel idle after a period of no RPCs.
  • stub: Add a null check for responseObserver into the methods for initiating a call that takes a responseObserver argument. This ensures a fail fast with a clearer cause instead of an NPE when the observer is first used.
  • xds: Flip default for RLS being enabled to true for XDS (#10248) (#10252). If there are no RLS configurations in your XDS or you already enabled it with the environment variable this will have no effect. To disable it, set the flag GRPC_EXPERIMENTAL_XDS_RLS_LB to false.
  • xds: Rename weighted_round_robin_experimental LB Policy to weighted_round_robin (#10162).

New Features

  • protobuf,protobuf-lite: Allow to configure protobuf recursion limit (#10094).
  • core: Optional address shuffle in PickFirstLoadBalancer (#10110).
  • xds: pick_first LB configuration (#10181).

Improvements

  • xds: Add error-per-second in weight formula for client-side WRR (#10177).
  • xds: Use application_utilization and fallback to cpu_utilization if unset in weight formula for client-side WRR. (#10256).
  • bazel: The README now mentions Bazel and where to find the example. (#10217).

Bug Fixes

  • binder: Handle unexpected exceptions on binder threads. (#10092.
  • ​​android,binder,cronet: .aar file when publishing. (#10138).
  • api: Fix boundary check in Status.fromCodeValue(). (#10155).
  • core: Don't use system Locale for content-type matching. (#10097).
  • okhttp: Fix signed-byte comparison in server when checking for ASCII in header (#10151). Without fix, authority could contain utf-8.

Dependencies

  • Version pinning (e.g., [1.56.0] instead of 1.56.0) has been removed from POMs, for both Netty and gRPC dependencies. The pinning was unreliable in Maven and ignored in Gradle, yet caused downloads during the build to fetch the version list. For a while we've had a BOM that helps reduce version skew. (#10175).
  • bazel: Add java toolchain type to all rules using java_common. (#10225).
  • Upgraded netty-tcnative-boringssl-static in grpc-netty-shaded to 2.0.61.Final (#10260). Netty itself was not updated.
  • Upgraded AndroidX Annotation to 1.6.0 (#10178).
  • Upgraded AndroidX Core to 1.10.0 (#10178).
  • Upgraded AndroidX Lifecycle-Common to 2.6.1 (#10178).
  • Upgraded OpenCensus to 0.31.1 (#10178).
  • Upgraded Cronet API to 108.5359.79 (#10178).
  • Upgraded proto-google-common-protos to 2.17.0 (#10178).
  • Upgraded Gson to 2.10.1 (#10178).
  • Upgraded PerfMark API to 0.26.0 (#10178).
  • Upgraded RE2/J to 1.7 (#10178).

Acknowledgements

Commits
  • d25095c Bump version to 1.56.0
  • 6168330 Update README etc to reference 1.56.0
  • b89207f Upgrade netty-tcnative to 2.0.61.Final
  • caeeb06 services, xds, orca: use application_utilization and fallback to cpu_utilizat...
  • 311e7bc Download Maven from Maven Central
  • be4dc4c Flip default for RLS on XDS being enabled to true. (#10248) (#10252)
  • 09260ce buildscripts, psm interop: Don't fail target if sub-target already failed (#1...
  • e6d9b41 bazel: Add java toolchain type to all rules which are using java_common (#10225)
  • 4277867 gcp observability: Update Docker images to eclipse-temurin (#10218)
  • df85a45 Add a java specific description of manual flow control to the example. (#10223)
  • Additional commits viewable in compare view

Updates protoc-gen-grpc-java from 1.55.1 to 1.56.0

Release notes

Sourced from protoc-gen-grpc-java's releases.

v1.56.0

API Changes

  • api: Stabilize the SynchronizationContext class (#10130).
  • api: Stabilize io.grpc.CallCredentials (#10208, #10211). thisUsesUnstableApi() is @Deprecated and has a default implementation. CallCredentials implementations should delete their implementation or remove @Overrides, as the method will be deleted in the future.
  • api: Stabilize the ProxyDetector hierarchy and ManagedChannelBuilder.proxyDetector method.

Behavior Changes

  • core: Sticky TRANSIENT_FAILURE in PickFirstLoadBalancer (#10106). See gRFC A62. If it can't connect, pick-first will now immediately fail RPCs until after it successfully connects. RPCs will no longer be delayed while it performs those attempts, which previously could cause significant (error) latency. It now also performs reconnect attempts after failure and backoff without prompting; previously it required an RPC to trigger the reconnect. ManagedChannel.idleTimeout (defaults to 30 minutes) still applies and forces the channel idle after a period of no RPCs.
  • stub: Add a null check for responseObserver into the methods for initiating a call that takes a responseObserver argument. This ensures a fail fast with a clearer cause instead of an NPE when the observer is first used.
  • xds: Flip default for RLS being enabled to true for XDS (#10248) (#10252). If there are no RLS configurations in your XDS or you already enabled it with the environment variable this will have no effect. To disable it, set the flag GRPC_EXPERIMENTAL_XDS_RLS_LB to false.
  • xds: Rename weighted_round_robin_experimental LB Policy to weighted_round_robin (#10162).

New Features

  • protobuf,protobuf-lite: Allow to configure protobuf recursion limit (#10094).
  • core: Optional address shuffle in PickFirstLoadBalancer (#10110).
  • xds: pick_first LB configuration (#10181).

Improvements

  • xds: Add error-per-second in weight formula for client-side WRR (#10177).
  • xds: Use application_utilization and fallback to cpu_utilization if unset in weight formula for client-side WRR. (#10256).
  • bazel: The README now mentions Bazel and where to find the example. (#10217).

Bug Fixes

  • binder: Handle unexpected exceptions on binder threads. (#10092.
  • ​​android,binder,cronet: .aar file when publishing. (#10138).
  • api: Fix boundary check in Status.fromCodeValue(). (#10155).
  • core: Don't use system Locale for content-type matching. (#10097).
  • okhttp: Fix signed-byte comparison in server when checking for ASCII in header (#10151). Without fix, authority could contain utf-8.

Dependencies

  • Version pinning (e.g., [1.56.0] instead of 1.56.0) has been removed from POMs, for both Netty and gRPC dependencies. The pinning was unreliable in Maven and ignored in Gradle, yet caused downloads during the build to fetch the version list. For a while we've had a BOM that helps reduce version skew. (#10175).
  • bazel: Add java toolchain type to all rules using java_common. (#10225).
  • Upgraded netty-tcnative-boringssl-static in grpc-netty-shaded to 2.0.61.Final (#10260). Netty itself was not updated.
  • Upgraded AndroidX Annotation to 1.6.0 (#10178).
  • Upgraded AndroidX Core to 1.10.0 (#10178).
  • Upgraded AndroidX Lifecycle-Common to 2.6.1 (#10178).
  • Upgraded OpenCensus to 0.31.1 (#10178).
  • Upgraded Cronet API to 108.5359.79 (#10178).
  • Upgraded proto-google-common-protos to 2.17.0 (#10178).
  • Upgraded Gson to 2.10.1 (#10178).
  • Upgraded PerfMark API to 0.26.0 (#10178).
  • Upgraded RE2/J to 1.7 (#10178).

Acknowledgements

Commits
  • d25095c Bump version to 1.56.0
  • 6168330 Update README etc to reference 1.56.0
  • b89207f Upgrade netty-tcnative to 2.0.61.Final
  • caeeb06 services, xds, orca: use application_utilization and fallback to cpu_utilizat...
  • 311e7bc Download Maven from Maven Central
  • be4dc4c Flip default for RLS on XDS being enabled to true. (#10248) (#10252)
  • 09260ce buildscripts, psm interop: Don't fail target if sub-target already failed (#1...
  • e6d9b41 bazel: Add java toolchain type to all rules which are using java_common (#10225)
  • 4277867 gcp observability: Update Docker images to eclipse-temurin (#10218)
  • df85a45 Add a java specific description of manual flow control to the example. (#10223)
  • Additional commits viewable in compare view

Updates protoc-gen-grpc-java from 1.55.1 to 1.56.0

Release notes

Sourced from protoc-gen-grpc-java's releases.

v1.56.0

API Changes

  • api: Stabilize the SynchronizationContext class (#10130).
  • api: Stabilize io.grpc.CallCredentials (#10208, #10211). thisUsesUnstableApi() is @Deprecated and has a default implementation. CallCredentials implementations should delete their implementation or remove @Overrides, as the method will be deleted in the future.
  • api: Stabilize the ProxyDetector hierarchy and ManagedChannelBuilder.proxyDetector method.

Behavior Changes

  • core: Sticky TRANSIENT_FAILURE in PickFirstLoadBalancer (#10106). See gRFC A62. If it can't connect, pick-first will now immediately fail RPCs until after it successfully connects. RPCs will no longer be delayed while it performs those attempts, which previously could cause significant (error) latency. It now also performs reconnect attempts after failure and backoff without prompting; previously it required an RPC to trigger the reconnect. ManagedChannel.idleTimeout (defaults to 30 minutes) still applies and forces the channel idle after a period of no RPCs.
  • stub: Add a null check for responseObserver into the methods for initiating a call that takes a responseObserver argument. This ensures a fail fast with a clearer cause instead of an NPE when the observer is first used.
  • xds: Flip default for RLS being enabled to true for XDS (#10248) (#10252). If there are no RLS configurations in your XDS or you already enabled it with the environment variable this will have no effect. To disable it, set the flag GRPC_EXPERIMENTAL_XDS_RLS_LB to false.
  • xds: Rename weighted_round_robin_experimental LB Policy to weighted_round_robin (#10162).

New Features

  • protobuf,protobuf-lite: Allow to configure protobuf recursion limit (#10094).
  • core: Optional address shuffle in PickFirstLoadBalancer (#10110).
  • xds: pick_first LB configuration (#10181).

Improvements

  • xds: Add error-per-second in weight formula for client-side WRR (#10177).
  • xds: Use application_utilization and fallback to cpu_utilization if unset in weight formula for client-side WRR. (#10256).
  • bazel: The README now mentions Bazel and where to find the example. (#10217).

Bug Fixes

  • binder: Handle unexpected exceptions on binder threads. (#10092.
  • ​​android,binder,cronet: .aar file when publishing. (#10138).
  • api: Fix boundary check in Status.fromCodeValue(). (#10155).
  • core: Don't use system Locale for content-type matching. (#10097).
  • okhttp: Fix signed-byte comparison in server when checking for ASCII in header (#10151). Without fix, authority could contain utf-8.

Dependencies

  • Version pinning (e.g., [1.56.0] instead of 1.56.0) has been removed from POMs, for both Netty and gRPC dependencies. The pinning was unreliable in Maven and ignored in Gradle, yet caused downloads during the build to fetch the version list. For a while we've had a BOM that helps reduce version skew. (#10175).
  • bazel: Add java toolchain type to all rules using java_common. (#10225).
  • Upgraded netty-tcnative-boringssl-static in grpc-netty-shaded to 2.0.61.Final (#10260). Netty itself was not updated.
  • Upgraded AndroidX Annotation to 1.6.0 (#10178).
  • Upgraded AndroidX Core to 1.10.0 (#10178).
  • Upgraded AndroidX Lifecycle-Common to 2.6.1 (#10178).
  • Upgraded OpenCensus to 0.31.1 (#10178).
  • Upgraded Cronet API to 108.5359.79 (#10178).
  • Upgraded proto-google-common-protos to 2.17.0 (#10178).
  • Upgraded Gson to 2.10.1 (#10178).
  • Upgraded PerfMark API to 0.26.0 (#10178).
  • Upgraded RE2/J to 1.7 (#10178).

Acknowledgements

Commits
  • d25095c Bump version to 1.56.0
  • 6168330 Update README etc to reference 1.56.0
  • b89207f Upgrade netty-tcnative to 2.0.61.Final
  • caeeb06 services, xds, orca: use application_utilization and fallback to cpu_utilizat...
  • 311e7bc Download Maven from Maven Central
  • be4dc4c Flip default for RLS on XDS being enabled to true. (#10248) (#10252)
  • 09260ce buildscripts, psm interop: Don't fail target if sub-target already failed (#1...
  • e6d9b41 bazel: Add java toolchain type to all rules which are using java_common (#10225)
  • 4277867 gcp observability: Update Docker images to eclipse-temurin (#10218)
  • df85a45 Add a java specific description of manual flow control to the example. (#10223)
  • Additional commits viewable in compare view

Updates protoc-gen-grpc-java from 1.55.1 to 1.56.0

Release notes

Sourced from protoc-gen-grpc-java's releases.

v1.56.0

API Changes

  • api: Stabilize the SynchronizationContext class (#10130).
  • api: Stabilize io.grpc.CallCredentials (#10208, #10211). thisUsesUnstableApi() is @Deprecated and has a default implementation. CallCredentials implementations should delete their implementation or remove @Overrides, as the method will be deleted in the future.
  • api: Stabilize the ProxyDetector hierarchy and ManagedChannelBuilder.proxyDetector method.

Behavior Changes

  • core: Sticky TRANSIENT_FAILURE in PickFirstLoadBalancer (#10106). See gRFC A62. If it can't connect, pick-first will now immediately fail RPCs until after it successfully connects. RPCs will no longer be delayed while it performs those attempts, which previously could cause significant (error) latency. It now also performs reconnect attempts after failure and backoff without prompting; previously it required an RPC to trigger the reconnect. ManagedChannel.idleTimeout (defaults to 30 minutes) still applies and forces the channel idle after a period of no RPCs.
  • stub: Add a null check for responseObserver into the methods for initiating a call that takes a responseObserver argument. This ensures a fail fast with a clearer cause instead of an NPE when the observer is first used.
  • xds: Flip default for RLS being enabled to true for XDS (#10248) (#10252). If there are no RLS configurations in your XDS or you already enabled it with the environment variable this will have no effect. To disable it, set the flag GRPC_EXPERIMENTAL_XDS_RLS_LB to false.
  • xds: Rename weighted_round_robin_experimental LB Policy to weighted_round_robin (#10162).

New Features

  • protobuf,protobuf-lite: Allow to configure protobuf recursion limit (#10094).
  • core: Optional address shuffle in PickFirstLoadBalancer (#10110).
  • xds: pick_first LB configuration (#10181).

Improvements

  • xds: Add error-per-second in weight formula for client-side WRR (#10177).
  • xds: Use application_utilization and fallback to cpu_utilization if unset in weight formula for client-side WRR. (#10256).
  • bazel: The README now mentions Bazel and where to find the example. (#10217).

Bug Fixes

  • binder: Handle unexpected exceptions on binder threads. (#10092.
  • ​​android,binder,cronet: .aar file when publishing. (#10138).
  • api: Fix boundary check in Status.fromCodeValue(). (#10155).
  • core: Don't use system Locale for content-type matching. (#10097).
  • okhttp: Fix signed-byte comparison in server when checking for ASCII in header (#10151). Without fix, authority could contain utf-8.

Dependencies

  • Version pinning (e.g., [1.56.0] instead of 1.56.0) has been removed from POMs, for both Netty and gRPC dependencies. The pinning was unreliable in Maven and ignored in Gradle, yet caused downloads during the build to fetch the version list. For a while we've had a BOM that helps reduce version skew. (#10175).
  • bazel: Add java toolchain type to all rules using java_common. (#10225).
  • Upgraded netty-tcnative-boringssl-static in grpc-netty-shaded to 2.0.61.Final (#10260). Netty itself was not updated.
  • Upgraded AndroidX Annotation to 1.6.0 (#10178).
  • Upgraded AndroidX Core to 1.10.0 (#10178).
  • Upgraded AndroidX Lifecycle-Common to 2.6.1 (#10178).
  • Upgraded OpenCensus to 0.31.1 (#10178).
  • Upgraded Cronet API to 108.5359.79 (#10178).
  • Upgraded proto-google-common-protos to 2.17.0 (#10178).
  • Upgraded Gson to 2.10.1 (#10178).
  • Upgraded PerfMark API to 0.26.0 (#10178).
  • Upgraded RE2/J to 1.7 (#10178).

Acknowledgements

Commits
  • d25095c Bump version to 1.56.0
  • 6168330 Update README etc to reference 1.56.0
  • b89207f Upgrade netty-tcnative to 2.0.61.Final
  • caeeb06 services, xds, orca: use application_utilization and fallback to cpu_utilizat...
  • 311e7bc Download Maven from Maven Central
  • be4dc4c Flip default for RLS on XDS being enabled to true. (#10248) (#10252)
  • 09260ce buildscripts, psm interop: Don't fail target if sub-target already failed (#1...
  • e6d9b41 bazel: Add java toolchain type to all rules which are using java_common (#10225)
  • 4277867 gcp observability: Update Docker images to eclipse-temurin (#10218)
  • df85a45 Add a java specific description of manual flow control to the example. (#10223)
  • Additional commits viewable in compare view

Updates protoc-gen-grpc-java from 1.55.1 to 1.56.0

Release notes

Sourced from protoc-gen-grpc-java's releases.

v1.56.0

API Changes

  • api: Stabilize the SynchronizationContext class (#10130).
  • api: Stabilize io.grpc.CallCredentials (#10208, #10211). thisUsesUnstableApi() is @Deprecated and has a default implementation. CallCredentials implementations should delete their implementation or remove @Overrides, as the method will be deleted in the future.
  • api: Stabilize the ProxyDetector hierarchy and ManagedChannelBuilder.proxyDetector method.

Behavior Changes

  • core: Sticky TRANSIENT_FAILURE in PickFirstLoadBalancer (#10106). See gRFC A62. If it can't connect, pick-first will now immediately fail RPCs until after it successfully connects. RPCs will no longer be delayed while it performs those attempts, which previously could cause significant (error) latency. It now also performs reconnect attempts after failure and backoff without prompting; previously it required an RPC to trigger the reconnect. ManagedChannel.idleTimeout (defaults to 30 minutes) still applies and forces the channel idle after a period of no RPCs.
  • stub: Add a null check for responseObserver into the methods for initiating a call that takes a responseObserver argument. This ensures a fail fast with a clearer cause instead of an NPE when the observer is first used.
  • xds: Flip default for RLS being enabled to true for XDS (#10248) (#10252). If there are no RLS configurations in your XDS or you already enabled it with the environment variable this will have no effect. To disable it, set the flag GRPC_EXPERIMENTAL_XDS_RLS_LB to false.
  • xds: Rename weighted_round_robin_experimental LB Policy to weighted_round_robin (#10162).

New Features

  • protobuf,protobuf-lite: Allow to configure protobuf recursion limit (#10094).
  • core: Optional address shuffle in PickFirstLoadBalancer (#10110).
  • xds: pick_first LB configuration (#10181).

Improvements

  • xds: Add error-per-second in weight formula for client-side WRR (#10177).
  • xds: Use application_utilization and fallback to cpu_utilization if unset in weight formula for client-side WRR. (#10256).
  • bazel: The README now mentions Bazel and where to find the example. (#10217).

Bug Fixes

  • binder: Handle unexpected exceptions on binder threads. (#10092.
  • ​​android,binder,cronet: .aar file when publishing. (#10138).
  • api: Fix boundary check in Status.fromCodeValue(). (#10155).
  • core: Don't use system Locale for content-type matching. (#10097).
  • okhttp: Fix signed-byte comparison in server when checking for ASCII in header (#10151). Without fix, authority could contain utf-8.

Dependencies

  • Version pinning (e.g., [1.56.0] instead of 1.56.0) has been removed from POMs, for both Netty and gRPC dependencies. The pinning was unreliable in Maven and ignored in Gradle, yet caused downloads during the build to fetch the version list. For a while we've had a BOM that helps reduce version skew. (#10175).
  • bazel: Add java toolchain type to all rules using java_common. (#10225).
  • Upgraded netty-tcnative-boringssl-static in grpc-netty-shaded to 2.0.61.Final (#10260). Netty itself was not updated.
  • Upgraded AndroidX Annotation to 1.6.0 (#10178).
  • Upgraded AndroidX Core to 1.10.0 (#10178).
  • Upgraded AndroidX Lifecycle-Common to 2.6.1 (#10178).
  • Upgraded OpenCensus to 0.31.1 (#10178).
  • Upgraded Cronet API to 108.5359.79 (#10178).
  • Upgraded proto-google-common-protos to 2.17.0 (#10178).
  • Upgraded Gson to 2.10.1 (#10178).
  • Upgraded PerfMark API to 0.26.0 (#10178).
  • Upgraded RE2/J to 1.7 (#10178).

Acknowledgements

Commits
  • d25095c Bump version to 1.56.0
  • 6168330 Update README etc to reference 1.56.0
  • b89207f Upgrade netty-tcnative to 2.0.61.Final
  • caeeb06 services, xds, orca: use application_utilization and fallback to cpu_utilizat...
  • 311e7bc Download Maven from Maven Central
  • be4dc4c Flip default for RLS on XDS being enabled to true. (#10248) (#10252)
  • 09260ce buildscripts, psm interop: Don't fail target if sub-target already failed (#1...
  • e6d9b41 bazel: Add java toolchain type to all rules which are using java_common (#10225)
  • 4277867 gcp observability: Update Docker images to eclipse-temurin (#10218)
  • df85a45 Add a java specific description of manual flow control to the example. (#10223)
  • Additional commits viewable in compare view

Updates protoc-gen-grpc-java from 1.55.1 to 1.56.0

Release notes

Sourced from protoc-gen-grpc-java's releases.

v1.56.0

API Changes

  • api: Stabilize the SynchronizationContext class (#10130).
  • api: Stabilize io.grpc.CallCredentials (#10208, #10211). thisUsesUnstableApi() is @Deprecated and has a default implementation. CallCredentials implementations should delete their implementation or remove @Overrides, as the method will be deleted in the future.
  • api: Stabilize the ProxyDetector hierarchy and ManagedChannelBuilder.proxyDetector method.

Behavior Changes

  • core: Sticky TRANSIENT_FAILURE in PickFirstLoadBalancer (#10106). See gRFC A62. If it can't connect, pick-first will now immediately fail RPCs until after it successfully connects. RPCs will no longer be delayed while it performs those attempts, which previously could cause significant (error) latency. It now also performs reconnect attempts after failure and backoff without prompting; previously it required an RPC to trigger the reconnect. ManagedChannel.idleTimeout (defaults to 30 minutes) still applies and forces the channel idle after a period of no RPCs.
  • stub: Add a null check for responseObserver into the methods for initiating a call that takes a responseObserver argument. This ensures a fail fast with a clearer cause instead of an NPE when the observer is first used.
  • xds: Flip default for RLS being enabled to true for XDS (#10248) (#10252). If there are no RLS configurations in your XDS or you already enabled it with the environment variable this will have no effect. To disable it, set the flag GRPC_EXPERIMENTAL_XDS_RLS_LB to false.
  • xds: Rename weighted_round_robin_experimental LB Policy to weighted_round_robin (#10162).

New Features

  • protobuf,protobuf-lite: Allow to configure protobuf recursion limit (#10094).
  • core: Optional address shuffle in PickFirstLoadBalancer (#10110).
  • xds: pick_first LB configuration (#10181).

Improvements

  • xds: Add error-per-second in weight formula for client-side WRR (#10177).
  • xds: Use application_utilization and fallback to cpu_utilization if unset in weight formula for client-side WRR. (#10256).
  • bazel: The README now mentions Bazel and where to find the example. (#10217).

Bug Fixes

  • binder: Handle unexpected exceptions on binder threads. (#10092.
  • ​​android,binder,cronet: .aar file when publishing. (#10138).
  • api: Fix boundary check in Status.fromCodeValue(). (#10155).
  • core: Don't use system Locale for content-type matching. (#10097).
  • okhttp: Fix signed-byte comparison in server when checking for ASCII in header (#10151). Without fix, authority could contain utf-8.

Dependencies

  • Version pinning (e.g., [1.56.0] instead of 1.56.0) has been removed from POMs, for both Netty and gRPC dependencies. The pinning was unreliable in Maven and ignored in Gradle, yet caused downloads during the build to fetch the version list. For a while we've had a BOM that helps reduce version skew. (#10175).
  • bazel: Add java toolchain type to all rules using java_common. (#10225).
  • Upgraded netty-tcnative-boringssl-static in grpc-netty-shaded to 2.0.61.Final (#10260). Netty itself was not updated.
  • Upgraded AndroidX Annotation to 1.6.0 (#10178).
  • Upgraded AndroidX Core to 1.10.0 (#10178).
  • Upgraded AndroidX Lifecycle-Common to 2.6.1 (#10178).
  • Upgraded OpenCensus to 0.31.1 (#10178).
  • Upgraded Cronet API to 108.5359.79 (#10178).
  • Upgraded proto-google-common-protos to 2.17.0 (#10178).
  • Upgraded Gson to 2.10.1 (#10178).
  • Upgraded PerfMark API to 0.26.0 (#10178).
  • Upgraded RE2/J to 1.7 (#10178).

Acknowledgements

Commits
  • d25095c Bump version to 1.56.0
  • 6168330 Update README etc to reference 1.56.0
  • b89207f Upgrade netty-tcnative to 2.0.61.Final
  • caeeb06 services, xds, orca: use application_utilization and fallback to cpu_utilizat...
  • 311e7bc Download Maven from Maven Central
  • be4dc4c Flip default for RLS on XDS being enabled to true. (#10248) (#10252)
  • 09260ce buildscripts, psm interop: Don't fail target if sub-target already failed (

Bumps `grpc.version` from 1.55.1 to 1.56.0.

Updates `grpc-bom` from 1.55.1 to 1.56.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.55.1...v1.56.0)

Updates `protoc-gen-grpc-java` from 1.55.1 to 1.56.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.55.1...v1.56.0)

Updates `protoc-gen-grpc-java` from 1.55.1 to 1.56.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.55.1...v1.56.0)

Updates `protoc-gen-grpc-java` from 1.55.1 to 1.56.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.55.1...v1.56.0)

Updates `protoc-gen-grpc-java` from 1.55.1 to 1.56.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.55.1...v1.56.0)

Updates `protoc-gen-grpc-java` from 1.55.1 to 1.56.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.55.1...v1.56.0)

Updates `protoc-gen-grpc-java` from 1.55.1 to 1.56.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.55.1...v1.56.0)

Updates `protoc-gen-grpc-java` from 1.55.1 to 1.56.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.55.1...v1.56.0)

---
updated-dependencies:
- dependency-name: io.grpc:grpc-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:protoc-gen-grpc-java:linux-aarch_64
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:protoc-gen-grpc-java:linux-x86_32
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:protoc-gen-grpc-java:linux-x86_64
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:protoc-gen-grpc-java:osx-x86_64
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:protoc-gen-grpc-java:osx-aarch_64
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:protoc-gen-grpc-java:windows-x86_32
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:protoc-gen-grpc-java:windows-x86_64
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the area/dependencies Pull requests that update a dependency file label Jun 16, 2023
@quarkus-bot quarkus-bot bot added the area/grpc gRPC label Jun 16, 2023
@quarkus-bot
Copy link

quarkus-bot bot commented Jun 17, 2023

Failing Jobs - Building e76c59f

Status Name Step Failures Logs Raw logs
✔️ JVM Tests - JDK 11
✔️ JVM Tests - JDK 17
JVM Tests - JDK 17 Windows Build ⚠️ Check → Logs Raw logs
✔️ JVM Tests - JDK 19
Native Tests - Windows - RESTEasy Jackson Setup GraalVM ⚠️ Check → Logs Raw logs

@cescoffier cescoffier merged commit bde7cb5 into main Jun 19, 2023
@quarkus-bot quarkus-bot bot added this to the 3.2 - main milestone Jun 19, 2023
@dependabot dependabot bot deleted the dependabot/maven/grpc.version-1.56.0 branch June 19, 2023 13:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/dependencies Pull requests that update a dependency file area/grpc gRPC kind/component-upgrade
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant