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.48.0 to 1.54.0 #328

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 30, 2023

Bumps grpc.version from 1.48.0 to 1.54.0.
Updates grpc-bom from 1.48.0 to 1.54.0

Release notes

Sourced from grpc-bom's releases.

v1.54.0

gRPC Java 1.54.0 Release Notes

New Features

  • xds: Add weightedRoundRobin LB policy. The WRR policy allows picking the subchannel by weight based on the metrics feedback from the backend using ORCA API. See gRFC A58: Weighted Round Robin LB Policy. (#9873)
  • census: Add per call latency metric which is latency across all attempts (#9906)
  • Generated code now has an interface named AsyncService that the <service-name>ImplBase class implements. This allows you to provide your own base class when used with the static <service-name>Grpc.bindService(AsyncService) method(#9688).

Examples

  • Add examples for gcp observability (#9967)

Bugfixes

  • rls:Fix throttling in route lookup where success and error metrics had been inverted (b/262779100) (#9874)
  • protobuf: update external javadoc link (#9890)
  • core: fix outlier detection default ejection time (#9889)
  • xds: deletion only to watchers of same control plane (#9896)
  • api: Target scheme is now properly case insensitive (#9899). NameResolverProviders, however, are expected to return the scheme used for registration in lower-case
  • api: ForwardingServerCall now forwards getMethodDescriptor(). Previously only SimpleForwardingServerCall forwarded the method

Behavior Changes

  • xds:Allow a cluster’s sum of weights to exceed the maximum signed integer up to a limit of max unsigned integer (#9864)
  • grpclb: no SRV lookup for "metadata.google.internal."

Improvements

  • xds, orca: Allow removing OobLoadReportListener from a subchannel in OrcaOobUil. (#9881)
  • services: ORCA API change to allow recording QPS in MetricRecorder and CallMetricRecorder. (#9866)
  • Move name resolution retry from managed channel to name resolver (take #2) (#9812)
  • Rename AbstractXdsClient to ControlPlaneClient (#9934)
  • all: fix build with errorprone 2.18 (#9886)
  • build: allow Java 11+ to use modern error prone
  • errorprone: enable UnnecessaryAnonymousClass (#9927)
  • core: add logger to OutlierDetectionLoadBalancer (#9880)
  • census: add trace annotation to report received message sizes (#9944)
  • gcp-observability: emit latency and payload size metrics by default when monitoring is enabled (#9893)
  • gcp-observability: add trace information like TraceId and SpanId in logs for log correlation when both logging and traces are enabled (#9963)
  • gcp-observability: close() will take longer, to ensure metrics and traces are flushed (#9972)
  • gcp-observability: update status code type in logs to Google RPC code instead of an integer (#9959)
  • gcp-observability: retain default opencensus-task identifier even when custom labels are specified in the configuration (#9982)
  • Build Improvements (#9855)
  • Fixes MethodDescriptor java documentation (#9860)
  • api: forward getSecurityLevel on PartialForwardingServerCall (#9912)
  • Updating ServerInterceptors.java to support different marshallers for Request and Response messages. (#9877)

API stabilizations

  • Stabilize method ServerBuilder.intercept which had previously been marked experimental. (#9894)
  • api:stabilize offloadExecutor usage in ManagedChannelBuilder and NameResolver. (#9931)

Dependencies

  • netty:Upgrade Netty from 4.1.79 to 4.1.87, tcnative from 2.0.54 to 2.0.56 (#9784)
  • gcp-observability: Transitive gRPC components now have the same gRPC version

... (truncated)

Commits
  • e988f84 Bump version to 1.54.0
  • abdb698 Update README etc to reference 1.54.0
  • 61ec299 Remove sleep from Observability Interop Test binary now that its done in clos...
  • 9f26b7d gcp-o11y: add default custom tag for metrics exporter
  • fefa2d9 examples: add gcp-observability examples (v1.54.x backport) (#9987)
  • 882a27b gcp-o11y: add sleep in Observability close()
  • 2e41c9a disable recording real-time metrics using in gcp-o11y
  • 132bf3e interop-testing: Do not System.exit(0) from interop client
  • 85ce900 gcp-observability, census: add trace information to logs (#9963)
  • bb39ca3 gcp-observability: Update logging fields for GA and use custom BatchingSettin...
  • Additional commits viewable in compare view

Updates grpc-netty-shaded from 1.48.0 to 1.54.0

Release notes

Sourced from grpc-netty-shaded's releases.

v1.54.0

gRPC Java 1.54.0 Release Notes

New Features

  • xds: Add weightedRoundRobin LB policy. The WRR policy allows picking the subchannel by weight based on the metrics feedback from the backend using ORCA API. See gRFC A58: Weighted Round Robin LB Policy. (#9873)
  • census: Add per call latency metric which is latency across all attempts (#9906)
  • Generated code now has an interface named AsyncService that the <service-name>ImplBase class implements. This allows you to provide your own base class when used with the static <service-name>Grpc.bindService(AsyncService) method(#9688).

Examples

  • Add examples for gcp observability (#9967)

Bugfixes

  • rls:Fix throttling in route lookup where success and error metrics had been inverted (b/262779100) (#9874)
  • protobuf: update external javadoc link (#9890)
  • core: fix outlier detection default ejection time (#9889)
  • xds: deletion only to watchers of same control plane (#9896)
  • api: Target scheme is now properly case insensitive (#9899). NameResolverProviders, however, are expected to return the scheme used for registration in lower-case
  • api: ForwardingServerCall now forwards getMethodDescriptor(). Previously only SimpleForwardingServerCall forwarded the method

Behavior Changes

  • xds:Allow a cluster’s sum of weights to exceed the maximum signed integer up to a limit of max unsigned integer (#9864)
  • grpclb: no SRV lookup for "metadata.google.internal."

Improvements

  • xds, orca: Allow removing OobLoadReportListener from a subchannel in OrcaOobUil. (#9881)
  • services: ORCA API change to allow recording QPS in MetricRecorder and CallMetricRecorder. (#9866)
  • Move name resolution retry from managed channel to name resolver (take #2) (#9812)
  • Rename AbstractXdsClient to ControlPlaneClient (#9934)
  • all: fix build with errorprone 2.18 (#9886)
  • build: allow Java 11+ to use modern error prone
  • errorprone: enable UnnecessaryAnonymousClass (#9927)
  • core: add logger to OutlierDetectionLoadBalancer (#9880)
  • census: add trace annotation to report received message sizes (#9944)
  • gcp-observability: emit latency and payload size metrics by default when monitoring is enabled (#9893)
  • gcp-observability: add trace information like TraceId and SpanId in logs for log correlation when both logging and traces are enabled (#9963)
  • gcp-observability: close() will take longer, to ensure metrics and traces are flushed (#9972)
  • gcp-observability: update status code type in logs to Google RPC code instead of an integer (#9959)
  • gcp-observability: retain default opencensus-task identifier even when custom labels are specified in the configuration (#9982)
  • Build Improvements (#9855)
  • Fixes MethodDescriptor java documentation (#9860)
  • api: forward getSecurityLevel on PartialForwardingServerCall (#9912)
  • Updating ServerInterceptors.java to support different marshallers for Request and Response messages. (#9877)

API stabilizations

  • Stabilize method ServerBuilder.intercept which had previously been marked experimental. (#9894)
  • api:stabilize offloadExecutor usage in ManagedChannelBuilder and NameResolver. (#9931)

Dependencies

  • netty:Upgrade Netty from 4.1.79 to 4.1.87, tcnative from 2.0.54 to 2.0.56 (#9784)
  • gcp-observability: Transitive gRPC components now have the same gRPC version

... (truncated)

Commits
  • e988f84 Bump version to 1.54.0
  • abdb698 Update README etc to reference 1.54.0
  • 61ec299 Remove sleep from Observability Interop Test binary now that its done in clos...
  • 9f26b7d gcp-o11y: add default custom tag for metrics exporter
  • fefa2d9 examples: add gcp-observability examples (v1.54.x backport) (#9987)
  • 882a27b gcp-o11y: add sleep in Observability close()
  • 2e41c9a disable recording real-time metrics using in gcp-o11y
  • 132bf3e interop-testing: Do not System.exit(0) from interop client
  • 85ce900 gcp-observability, census: add trace information to logs (#9963)
  • bb39ca3 gcp-observability: Update logging fields for GA and use custom BatchingSettin...
  • Additional commits viewable in compare view

Updates grpc-protobuf from 1.48.0 to 1.54.0

Release notes

Sourced from grpc-protobuf's releases.

v1.54.0

gRPC Java 1.54.0 Release Notes

New Features

  • xds: Add weightedRoundRobin LB policy. The WRR policy allows picking the subchannel by weight based on the metrics feedback from the backend using ORCA API. See gRFC A58: Weighted Round Robin LB Policy. (#9873)
  • census: Add per call latency metric which is latency across all attempts (#9906)
  • Generated code now has an interface named AsyncService that the <service-name>ImplBase class implements. This allows you to provide your own base class when used with the static <service-name>Grpc.bindService(AsyncService) method(#9688).

Examples

  • Add examples for gcp observability (#9967)

Bugfixes

  • rls:Fix throttling in route lookup where success and error metrics had been inverted (b/262779100) (#9874)
  • protobuf: update external javadoc link (#9890)
  • core: fix outlier detection default ejection time (#9889)
  • xds: deletion only to watchers of same control plane (#9896)
  • api: Target scheme is now properly case insensitive (#9899). NameResolverProviders, however, are expected to return the scheme used for registration in lower-case
  • api: ForwardingServerCall now forwards getMethodDescriptor(). Previously only SimpleForwardingServerCall forwarded the method

Behavior Changes

  • xds:Allow a cluster’s sum of weights to exceed the maximum signed integer up to a limit of max unsigned integer (#9864)
  • grpclb: no SRV lookup for "metadata.google.internal."

Improvements

  • xds, orca: Allow removing OobLoadReportListener from a subchannel in OrcaOobUil. (#9881)
  • services: ORCA API change to allow recording QPS in MetricRecorder and CallMetricRecorder. (#9866)
  • Move name resolution retry from managed channel to name resolver (take #2) (#9812)
  • Rename AbstractXdsClient to ControlPlaneClient (#9934)
  • all: fix build with errorprone 2.18 (#9886)
  • build: allow Java 11+ to use modern error prone
  • errorprone: enable UnnecessaryAnonymousClass (#9927)
  • core: add logger to OutlierDetectionLoadBalancer (#9880)
  • census: add trace annotation to report received message sizes (#9944)
  • gcp-observability: emit latency and payload size metrics by default when monitoring is enabled (#9893)
  • gcp-observability: add trace information like TraceId and SpanId in logs for log correlation when both logging and traces are enabled (#9963)
  • gcp-observability: close() will take longer, to ensure metrics and traces are flushed (#9972)
  • gcp-observability: update status code type in logs to Google RPC code instead of an integer (#9959)
  • gcp-observability: retain default opencensus-task identifier even when custom labels are specified in the configuration (#9982)
  • Build Improvements (#9855)
  • Fixes MethodDescriptor java documentation (#9860)
  • api: forward getSecurityLevel on PartialForwardingServerCall (#9912)
  • Updating ServerInterceptors.java to support different marshallers for Request and Response messages. (#9877)

API stabilizations

  • Stabilize method ServerBuilder.intercept which had previously been marked experimental. (#9894)
  • api:stabilize offloadExecutor usage in ManagedChannelBuilder and NameResolver. (#9931)

Dependencies

  • netty:Upgrade Netty from 4.1.79 to 4.1.87, tcnative from 2.0.54 to 2.0.56 (#9784)
  • gcp-observability: Transitive gRPC components now have the same gRPC version

... (truncated)

Commits
  • e988f84 Bump version to 1.54.0
  • abdb698 Update README etc to reference 1.54.0
  • 61ec299 Remove sleep from Observability Interop Test binary now that its done in clos...
  • 9f26b7d gcp-o11y: add default custom tag for metrics exporter
  • fefa2d9 examples: add gcp-observability examples (v1.54.x backport) (#9987)
  • 882a27b gcp-o11y: add sleep in Observability close()
  • 2e41c9a disable recording real-time metrics using in gcp-o11y
  • 132bf3e interop-testing: Do not System.exit(0) from interop client
  • 85ce900 gcp-observability, census: add trace information to logs (#9963)
  • bb39ca3 gcp-observability: Update logging fields for GA and use custom BatchingSettin...
  • Additional commits viewable in compare view

Updates grpc-stub from 1.48.0 to 1.54.0

Release notes

Sourced from grpc-stub's releases.

v1.54.0

gRPC Java 1.54.0 Release Notes

New Features

  • xds: Add weightedRoundRobin LB policy. The WRR policy allows picking the subchannel by weight based on the metrics feedback from the backend using ORCA API. See gRFC A58: Weighted Round Robin LB Policy. (#9873)
  • census: Add per call latency metric which is latency across all attempts (#9906)
  • Generated code now has an interface named AsyncService that the <service-name>ImplBase class implements. This allows you to provide your own base class when used with the static <service-name>Grpc.bindService(AsyncService) method(#9688).

Examples

  • Add examples for gcp observability (#9967)

Bugfixes

  • rls:Fix throttling in route lookup where success and error metrics had been inverted (b/262779100) (#9874)
  • protobuf: update external javadoc link (#9890)
  • core: fix outlier detection default ejection time (#9889)
  • xds: deletion only to watchers of same control plane (#9896)
  • api: Target scheme is now properly case insensitive (#9899). NameResolverProviders, however, are expected to return the scheme used for registration in lower-case
  • api: ForwardingServerCall now forwards getMethodDescriptor(). Previously only SimpleForwardingServerCall forwarded the method

Behavior Changes

  • xds:Allow a cluster’s sum of weights to exceed the maximum signed integer up to a limit of max unsigned integer (#9864)
  • grpclb: no SRV lookup for "metadata.google.internal."

Improvements

  • xds, orca: Allow removing OobLoadReportListener from a subchannel in OrcaOobUil. (#9881)
  • services: ORCA API change to allow recording QPS in MetricRecorder and CallMetricRecorder. (#9866)
  • Move name resolution retry from managed channel to name resolver (take #2) (#9812)
  • Rename AbstractXdsClient to ControlPlaneClient (#9934)
  • all: fix build with errorprone 2.18 (#9886)
  • build: allow Java 11+ to use modern error prone
  • errorprone: enable UnnecessaryAnonymousClass (#9927)
  • core: add logger to OutlierDetectionLoadBalancer (#9880)
  • census: add trace annotation to report received message sizes (#9944)
  • gcp-observability: emit latency and payload size metrics by default when monitoring is enabled (#9893)
  • gcp-observability: add trace information like TraceId and SpanId in logs for log correlation when both logging and traces are enabled (#9963)
  • gcp-observability: close() will take longer, to ensure metrics and traces are flushed (#9972)
  • gcp-observability: update status code type in logs to Google RPC code instead of an integer (#9959)
  • gcp-observability: retain default opencensus-task identifier even when custom labels are specified in the configuration (#9982)
  • Build Improvements (#9855)
  • Fixes MethodDescriptor java documentation (#9860)
  • api: forward getSecurityLevel on PartialForwardingServerCall (#9912)
  • Updating ServerInterceptors.java to support different marshallers for Request and Response messages. (#9877)

API stabilizations

  • Stabilize method ServerBuilder.intercept which had previously been marked experimental. (#9894)
  • api:stabilize offloadExecutor usage in ManagedChannelBuilder and NameResolver. (#9931)

Dependencies

  • netty:Upgrade Netty from 4.1.79 to 4.1.87, tcnative from 2.0.54 to 2.0.56 (#9784)
  • gcp-observability: Transitive gRPC components now have the same gRPC version

... (truncated)

Commits
  • e988f84 Bump version to 1.54.0
  • abdb698 Update README etc to reference 1.54.0
  • 61ec299 Remove sleep from Observability Interop Test binary now that its done in clos...
  • 9f26b7d gcp-o11y: add default custom tag for metrics exporter
  • fefa2d9 examples: add gcp-observability examples (v1.54.x backport) (#9987)
  • 882a27b gcp-o11y: add sleep in Observability close()
  • 2e41c9a disable recording real-time metrics using in gcp-o11y
  • 132bf3e interop-testing: Do not System.exit(0) from interop client
  • 85ce900 gcp-observability, census: add trace information to logs (#9963)
  • bb39ca3 gcp-observability: Update logging fields for GA and use custom BatchingSettin...
  • Additional commits viewable in compare view

Updates grpc-api from 1.48.0 to 1.54.0

Release notes

Sourced from grpc-api's releases.

v1.54.0

gRPC Java 1.54.0 Release Notes

New Features

  • xds: Add weightedRoundRobin LB policy. The WRR policy allows picking the subchannel by weight based on the metrics feedback from the backend using ORCA API. See gRFC A58: Weighted Round Robin LB Policy. (#9873)
  • census: Add per call latency metric which is latency across all attempts (#9906)
  • Generated code now has an interface named AsyncService that the <service-name>ImplBase class implements. This allows you to provide your own base class when used with the static <service-name>Grpc.bindService(AsyncService) method(#9688).

Examples

  • Add examples for gcp observability (#9967)

Bugfixes

  • rls:Fix throttling in route lookup where success and error metrics had been inverted (b/262779100) (#9874)
  • protobuf: update external javadoc link (#9890)
  • core: fix outlier detection default ejection time (#9889)
  • xds: deletion only to watchers of same control plane (#9896)
  • api: Target scheme is now properly case insensitive (#9899). NameResolverProviders, however, are expected to return the scheme used for registration in lower-case
  • api: ForwardingServerCall now forwards getMethodDescriptor(). Previously only SimpleForwardingServerCall forwarded the method

Behavior Changes

  • xds:Allow a cluster’s sum of weights to exceed the maximum signed integer up to a limit of max unsigned integer (#9864)
  • grpclb: no SRV lookup for "metadata.google.internal."

Improvements

  • xds, orca: Allow removing OobLoadReportListener from a subchannel in OrcaOobUil. (#9881)
  • services: ORCA API change to allow recording QPS in MetricRecorder and CallMetricRecorder. (#9866)
  • Move name resolution retry from managed channel to name resolver (take #2) (#9812)
  • Rename AbstractXdsClient to ControlPlaneClient (#9934)
  • all: fix build with errorprone 2.18 (#9886)
  • build: allow Java 11+ to use modern error prone
  • errorprone: enable UnnecessaryAnonymousClass (#9927)
  • core: add logger to OutlierDetectionLoadBalancer (#9880)
  • census: add trace annotation to report received message sizes (#9944)
  • gcp-observability: emit latency and payload size metrics by default when monitoring is enabled (#9893)
  • gcp-observability: add trace information like TraceId and SpanId in logs for log correlation when both logging and traces are enabled (#9963)
  • gcp-observability: close() will take longer, to ensure metrics and traces are flushed (#9972)
  • gcp-observability: update status code type in logs to Google RPC code instead of an integer (#9959)
  • gcp-observability: retain default opencensus-task identifier even when custom labels are specified in the configuration (#9982)
  • Build Improvements (#9855)
  • Fixes MethodDescriptor java documentation (#9860)
  • api: forward getSecurityLevel on PartialForwardingServerCall (#9912)
  • Updating ServerInterceptors.java to support different marshallers for Request and Response messages. (#9877)

API stabilizations

  • Stabilize method ServerBuilder.intercept which had previously been marked experimental. (#9894)
  • api:stabilize offloadExecutor usage in ManagedChannelBuilder and NameResolver. (#9931)

Dependencies

  • netty:Upgrade Netty from 4.1.79 to 4.1.87, tcnative from 2.0.54 to 2.0.56 (#9784)
  • gcp-observability: Transitive gRPC components now have the same gRPC version

... (truncated)

Commits
  • e988f84 Bump version to 1.54.0
  • abdb698 Update README etc to reference 1.54.0
  • 61ec299 Remove sleep from Observability Interop Test binary now that its done in clos...
  • 9f26b7d gcp-o11y: add default custom tag for metrics exporter
  • fefa2d9 examples: add gcp-observability examples (v1.54.x backport) (#9987)
  • 882a27b gcp-o11y: add sleep in Observability close()
  • 2e41c9a disable recording real-time metrics using in gcp-o11y
  • 132bf3e interop-testing: Do not System.exit(0) from interop client
  • 85ce900 gcp-observability, census: add trace information to logs (#9963)
  • bb39ca3 gcp-observability: Update logging fields for GA and use custom BatchingSettin...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `grpc.version` from 1.48.0 to 1.54.0.

Updates `grpc-bom` from 1.48.0 to 1.54.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.48.0...v1.54.0)

Updates `grpc-netty-shaded` from 1.48.0 to 1.54.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.48.0...v1.54.0)

Updates `grpc-protobuf` from 1.48.0 to 1.54.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.48.0...v1.54.0)

Updates `grpc-stub` from 1.48.0 to 1.54.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.48.0...v1.54.0)

Updates `grpc-api` from 1.48.0 to 1.54.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.48.0...v1.54.0)

---
updated-dependencies:
- dependency-name: io.grpc:grpc-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:grpc-netty-shaded
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:grpc-protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:grpc-stub
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.grpc:grpc-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 30, 2023
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 30, 2023

The following labels could not be found: Source: Internal.

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Apr 3, 2023

OK, I won't notify you again about this release, but will get in touch when a new version is available.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/maven/grpc.version-1.54.0 branch April 3, 2023 18:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
1 participant