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.44.0 to 1.52.1 in /lang/java #320

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 15, 2023

Bumps grpc.version from 1.44.0 to 1.52.1.
Updates grpc-core from 1.44.0 to 1.52.1

Release notes

Sourced from grpc-core's releases.

v1.52.0

gRPC Java 1.52.0 Release Notes

grpc-xds starting with 1.51.0 had a regression where resources might stop receiving updates. The trigger could happen hours or days after the binary had started. xDS users should avoid this release and use 1.50.x until patch releases with the fix are available. grpc/grpc-java#9809

API Changes

  • Fix CallOptions to be properly @Immutable (#9689)
  • binder: Promote out of experimental status (#9669). Much of the API is now stable

New Features

  • xds: Support localities in multiple priorities (#9683)
  • xds: Log xDS node ID with verbosity INFO when environment variable GRPC_LOG_XDS_NODE_ID=true (#9731)

Examples

  • Add examples for name resolver and load balancer (#9700)
  • Swap to ChannelCredentials/ServerCredentials API, as it is preferred

Bug Fixes

  • xds:Fix ConcurrentModificationException in PriorityLoadBalancer (#9728)
  • ManagedChannelImpl.SubchannelImpl fix args check to avoid NPE (#9651)
  • okhttp: Add missing server support for TLS ClientAuth (#9711)
  • binder: Ensure the security interceptor is always closest to the actual transport (#9716)
  • bazel: Include @​Generated dep for autovalue. This fixes builds of xds and rls using Java 9+
  • xds: Nack xds response when weighted cluster total weight sums zero (#9738)
  • core: Fix a bug about a retriable stream lifecycle. It stops using the call executor resource in a retriable stream when the client call is closed, thus preventing potential channel panics. (#9626)

Behavior Changes

  • binder: Set default idle timeout to 60 seconds, and enable "strict lifecycle management". (#9486)
  • xds: Limit ring hash max size to 4K instead of 8M (#9709). RingHashOptions.setRingSizeCap() can increase the limit
  • binder: Set default idle timeout to 60 seconds, and add BinderChannelBuilder.strictLifecycleManagement() which disables idle timeout and prevents it from being changed (#9486). Disabling idle timeout can be useful to find bugs in applications that fail to promptly shut down the channel and are particularly sensitive to keeping Binder instances alive.
  • bazel: Replace ctx.host_configuration.host_path_separator with ctx.configuration.host_path_separator (#9742). This changes no behavior today, but improves future compatibility with newer versions of Bazel
  • xds: Refactor internal logics about LDS and CDS resource handling. It may cause minor log line changes about corresponding RDS and EDS subscriber event notification, but it should not change xds name resolution and LB behavior. (#9724)

Dependencies

Acknowledgement

@​RapperCL @​Smityz @​pandaapo

v1.51.1

grpc-xds starting with 1.51.0 had a regression where resources might stop receiving updates. The trigger could happen hours or days after the binary had started. xDS users should avoid this release and use 1.50.x until patch releases with the fix are available. grpc/grpc-java#9809

Bug Fixes

  • xds: Fix ConcurrentModificationException in PriorityLoadBalancer. (#9744)

v1.51.0

... (truncated)

Commits
  • 57dfe8c Bump version to 1.52.1
  • 69f10e2 Update README etc to reference 1.52.1
  • 15026d5 xds:fix cancel xds watcher accidentally removes the url (v1.52 backport) (#9810)
  • a13a2dd Bump version to 1.52.1-SNAPSHOT
  • a1a6d4f Bump version to 1.52.0
  • c450431 Update README etc to reference 1.52.0
  • 142078f Upgrade protobuf plugin version to 0.8.19. (#9801)
  • a75ed4d bazel: Export deps from maven stand-in targets
  • f71447c bazel: Include @Generated dep for autovalue
  • e325dc9 Replace ctx.host_configuration.host_path_separator with ctx.configuration.hos...
  • Additional commits viewable in compare view

Updates grpc-stub from 1.44.0 to 1.52.1

Release notes

Sourced from grpc-stub's releases.

v1.52.0

gRPC Java 1.52.0 Release Notes

grpc-xds starting with 1.51.0 had a regression where resources might stop receiving updates. The trigger could happen hours or days after the binary had started. xDS users should avoid this release and use 1.50.x until patch releases with the fix are available. grpc/grpc-java#9809

API Changes

  • Fix CallOptions to be properly @Immutable (#9689)
  • binder: Promote out of experimental status (#9669). Much of the API is now stable

New Features

  • xds: Support localities in multiple priorities (#9683)
  • xds: Log xDS node ID with verbosity INFO when environment variable GRPC_LOG_XDS_NODE_ID=true (#9731)

Examples

  • Add examples for name resolver and load balancer (#9700)
  • Swap to ChannelCredentials/ServerCredentials API, as it is preferred

Bug Fixes

  • xds:Fix ConcurrentModificationException in PriorityLoadBalancer (#9728)
  • ManagedChannelImpl.SubchannelImpl fix args check to avoid NPE (#9651)
  • okhttp: Add missing server support for TLS ClientAuth (#9711)
  • binder: Ensure the security interceptor is always closest to the actual transport (#9716)
  • bazel: Include @​Generated dep for autovalue. This fixes builds of xds and rls using Java 9+
  • xds: Nack xds response when weighted cluster total weight sums zero (#9738)
  • core: Fix a bug about a retriable stream lifecycle. It stops using the call executor resource in a retriable stream when the client call is closed, thus preventing potential channel panics. (#9626)

Behavior Changes

  • binder: Set default idle timeout to 60 seconds, and enable "strict lifecycle management". (#9486)
  • xds: Limit ring hash max size to 4K instead of 8M (#9709). RingHashOptions.setRingSizeCap() can increase the limit
  • binder: Set default idle timeout to 60 seconds, and add BinderChannelBuilder.strictLifecycleManagement() which disables idle timeout and prevents it from being changed (#9486). Disabling idle timeout can be useful to find bugs in applications that fail to promptly shut down the channel and are particularly sensitive to keeping Binder instances alive.
  • bazel: Replace ctx.host_configuration.host_path_separator with ctx.configuration.host_path_separator (#9742). This changes no behavior today, but improves future compatibility with newer versions of Bazel
  • xds: Refactor internal logics about LDS and CDS resource handling. It may cause minor log line changes about corresponding RDS and EDS subscriber event notification, but it should not change xds name resolution and LB behavior. (#9724)

Dependencies

Acknowledgement

@​RapperCL @​Smityz @​pandaapo

v1.51.1

grpc-xds starting with 1.51.0 had a regression where resources might stop receiving updates. The trigger could happen hours or days after the binary had started. xDS users should avoid this release and use 1.50.x until patch releases with the fix are available. grpc/grpc-java#9809

Bug Fixes

  • xds: Fix ConcurrentModificationException in PriorityLoadBalancer. (#9744)

v1.51.0

... (truncated)

Commits
  • 57dfe8c Bump version to 1.52.1
  • 69f10e2 Update README etc to reference 1.52.1
  • 15026d5 xds:fix cancel xds watcher accidentally removes the url (v1.52 backport) (#9810)
  • a13a2dd Bump version to 1.52.1-SNAPSHOT
  • a1a6d4f Bump version to 1.52.0
  • c450431 Update README etc to reference 1.52.0
  • 142078f Upgrade protobuf plugin version to 0.8.19. (#9801)
  • a75ed4d bazel: Export deps from maven stand-in targets
  • f71447c bazel: Include @Generated dep for autovalue
  • e325dc9 Replace ctx.host_configuration.host_path_separator with ctx.configuration.hos...
  • Additional commits viewable in compare view

Updates grpc-netty from 1.44.0 to 1.52.1

Release notes

Sourced from grpc-netty's releases.

v1.52.0

gRPC Java 1.52.0 Release Notes

grpc-xds starting with 1.51.0 had a regression where resources might stop receiving updates. The trigger could happen hours or days after the binary had started. xDS users should avoid this release and use 1.50.x until patch releases with the fix are available. grpc/grpc-java#9809

API Changes

  • Fix CallOptions to be properly @Immutable (#9689)
  • binder: Promote out of experimental status (#9669). Much of the API is now stable

New Features

  • xds: Support localities in multiple priorities (#9683)
  • xds: Log xDS node ID with verbosity INFO when environment variable GRPC_LOG_XDS_NODE_ID=true (#9731)

Examples

  • Add examples for name resolver and load balancer (#9700)
  • Swap to ChannelCredentials/ServerCredentials API, as it is preferred

Bug Fixes

  • xds:Fix ConcurrentModificationException in PriorityLoadBalancer (#9728)
  • ManagedChannelImpl.SubchannelImpl fix args check to avoid NPE (#9651)
  • okhttp: Add missing server support for TLS ClientAuth (#9711)
  • binder: Ensure the security interceptor is always closest to the actual transport (#9716)
  • bazel: Include @​Generated dep for autovalue. This fixes builds of xds and rls using Java 9+
  • xds: Nack xds response when weighted cluster total weight sums zero (#9738)
  • core: Fix a bug about a retriable stream lifecycle. It stops using the call executor resource in a retriable stream when the client call is closed, thus preventing potential channel panics. (#9626)

Behavior Changes

  • binder: Set default idle timeout to 60 seconds, and enable "strict lifecycle management". (#9486)
  • xds: Limit ring hash max size to 4K instead of 8M (#9709). RingHashOptions.setRingSizeCap() can increase the limit
  • binder: Set default idle timeout to 60 seconds, and add BinderChannelBuilder.strictLifecycleManagement() which disables idle timeout and prevents it from being changed (#9486). Disabling idle timeout can be useful to find bugs in applications that fail to promptly shut down the channel and are particularly sensitive to keeping Binder instances alive.
  • bazel: Replace ctx.host_configuration.host_path_separator with ctx.configuration.host_path_separator (#9742). This changes no behavior today, but improves future compatibility with newer versions of Bazel
  • xds: Refactor internal logics about LDS and CDS resource handling. It may cause minor log line changes about corresponding RDS and EDS subscriber event notification, but it should not change xds name resolution and LB behavior. (#9724)

Dependencies

Acknowledgement

@​RapperCL @​Smityz @​pandaapo

v1.51.1

grpc-xds starting with 1.51.0 had a regression where resources might stop receiving updates. The trigger could happen hours or days after the binary had started. xDS users should avoid this release and use 1.50.x until patch releases with the fix are available. grpc/grpc-java#9809

Bug Fixes

  • xds: Fix ConcurrentModificationException in PriorityLoadBalancer. (#9744)

v1.51.0

... (truncated)

Commits
  • 57dfe8c Bump version to 1.52.1
  • 69f10e2 Update README etc to reference 1.52.1
  • 15026d5 xds:fix cancel xds watcher accidentally removes the url (v1.52 backport) (#9810)
  • a13a2dd Bump version to 1.52.1-SNAPSHOT
  • a1a6d4f Bump version to 1.52.0
  • c450431 Update README etc to reference 1.52.0
  • 142078f Upgrade protobuf plugin version to 0.8.19. (#9801)
  • a75ed4d bazel: Export deps from maven stand-in targets
  • f71447c bazel: Include @Generated dep for autovalue
  • e325dc9 Replace ctx.host_configuration.host_path_separator with ctx.configuration.hos...
  • 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.44.0 to 1.52.1.

Updates `grpc-core` from 1.44.0 to 1.52.1
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.44.0...v1.52.1)

Updates `grpc-stub` from 1.44.0 to 1.52.1
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.44.0...v1.52.1)

Updates `grpc-netty` from 1.44.0 to 1.52.1
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.44.0...v1.52.1)

---
updated-dependencies:
- dependency-name: io.grpc:grpc-core
  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-netty
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jan 15, 2023
@github-actions github-actions bot added the build label Jan 15, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
0 participants