Skip to content

Conversation

@dependabot-preview
Copy link

Bumps grpc.version from 1.12.0 to 1.27.1.
Updates grpc-netty from 1.12.0 to 1.27.1

Release notes

Sourced from grpc-netty's releases.

v1.27.1

Bug Fixes

  • alts: Fix using the wrong way of checking if Conscrypt is available (#6672)

v1.27.0

Bazel users should migrate to maven_install. Please open an issue to report problems migrating to maven_install.

Dependencies

  • core, census: census dependency is removed from grpc-core. A grpc-census artifact now exists to provide interceptor/stream tracer factory that applies census stats/tracing features. For users not using gRPC’s integration of census, nothing should be affected. Users who want census integration need to add grpc-census artifact to runtime classpath (#6577)
  • Bump animal-sniffer-annotations to 1.18 (#6488)
  • Bump error_prone_annotations to 2.3.4 (#6574)
  • auth: Bump google-auth-library-credentials and google-auth-library-oauth2-http to 0.19.0 (#6537)
  • protobuf: Bump proto-google-common-protos to 1.17.0 (#6572)

Bug Fixes

  • netty: the warning “Received GOAWAY with ENHANCE_YOUR_CALM. Debug data:” will now actually contain the debug data (#6596)
  • examples: example servers now shutdown gracefully (#6512)
  • api: update documentation to encourage libraries to provide scheme in target string during channel creation (#6499)
  • bazel: Use https to download from Maven Central (#6543)
  • bazel: Fix renamed javalite target that caused build failures in 1.26.0 (#6544)

API Changes

  • bazel: Remove omit* args in favor of existing_rule() check (#6553). If you are passing any arguments to grpc_java_repositories() within your WORKSPACE, you will need to remove those arguments and make sure you run grpc_java_repositories() after defining any overridden repositories
  • bazel: Support maven_install (#6553). See examples/WORKSPACE for typical usage. grpc-java still supports the jvm_maven_import_external()-based loading only to ease migration. grpc-java will drop usages of jvm_maven_import_external() in the future

New Features

  • core: delay sending cancel request on client-side by one second when deadline expires (#6328). This only impacts metrics reported by the server. It provides the server a second to internally fail the call with DEADLINE_EXCEEDED instead of CANCELLED which should substantially improve the accuracy of the metrics
  • grpclb: support explicit fallback from LB (#6549)
  • netty: set -Dio.grpc.netty.useCustomAllocator=true by default (#6528). This causes grpc to use a different Netty allocator by default which is configured to allocate in smaller chunks which may reduce memory usage by 8x on lightly loaded systems. Performance benchmarks show virtually no change with any potential slowdowns hidden in the noise (~1%). See also #6407. If you notice problems, set the property to false and file an issue
  • api: support for lazily serialized values in Metadata (#6466). Metadata marshallers must opt-in to being serialized lazily. Nothing is using this support at the moment (including protobufs). This can be used for avoiding serialization with in-process transport or for transport-specific features like file descriptor passing in metadata (such things were already possible with RPC messages).
  • alts: add AuthorizationUtil utility library for verifying a client is a particular account (#6529)

Known issues

  • netty: listening on multiple ports (via NettyServerBuilder.addListenAddress()) may deadlock (bug #6641). This has been the case since its introduction

Acknowledgements

v1.26.1

Bug Fixes

  • bazel: Use https to download from Maven Central (#6543)
... (truncated)
Commits
  • 0b4fa21 Bump version to 1.27.1
  • 2be7cc3 Update README etc to reference 1.27.1
  • 2a83637 alts: Actually use Conscrypt when available (#6700)
  • 7727098 interop-testing: fix bug of xds test missing transitive dependency
  • f0b2d77 interop-testing: fix bug for xds dependency not published yet
  • 467649b Bump version to 1.27.1-SNAPSHOT
  • 1e2f28d Bump version to 1.27.0
  • 754e7aa Update README etc to reference 1.27.0
  • 8c346d0 netty: fix a race for channelz at server transport creation
  • 5acb70e examples: Bump Gradle to 5.6.2
  • Additional commits viewable in compare view

Updates grpc-protobuf from 1.12.0 to 1.27.1

Release notes

Sourced from grpc-protobuf's releases.

v1.27.1

Bug Fixes

  • alts: Fix using the wrong way of checking if Conscrypt is available (#6672)

v1.27.0

Bazel users should migrate to maven_install. Please open an issue to report problems migrating to maven_install.

Dependencies

  • core, census: census dependency is removed from grpc-core. A grpc-census artifact now exists to provide interceptor/stream tracer factory that applies census stats/tracing features. For users not using gRPC’s integration of census, nothing should be affected. Users who want census integration need to add grpc-census artifact to runtime classpath (#6577)
  • Bump animal-sniffer-annotations to 1.18 (#6488)
  • Bump error_prone_annotations to 2.3.4 (#6574)
  • auth: Bump google-auth-library-credentials and google-auth-library-oauth2-http to 0.19.0 (#6537)
  • protobuf: Bump proto-google-common-protos to 1.17.0 (#6572)

Bug Fixes

  • netty: the warning “Received GOAWAY with ENHANCE_YOUR_CALM. Debug data:” will now actually contain the debug data (#6596)
  • examples: example servers now shutdown gracefully (#6512)
  • api: update documentation to encourage libraries to provide scheme in target string during channel creation (#6499)
  • bazel: Use https to download from Maven Central (#6543)
  • bazel: Fix renamed javalite target that caused build failures in 1.26.0 (#6544)

API Changes

  • bazel: Remove omit* args in favor of existing_rule() check (#6553). If you are passing any arguments to grpc_java_repositories() within your WORKSPACE, you will need to remove those arguments and make sure you run grpc_java_repositories() after defining any overridden repositories
  • bazel: Support maven_install (#6553). See examples/WORKSPACE for typical usage. grpc-java still supports the jvm_maven_import_external()-based loading only to ease migration. grpc-java will drop usages of jvm_maven_import_external() in the future

New Features

  • core: delay sending cancel request on client-side by one second when deadline expires (#6328). This only impacts metrics reported by the server. It provides the server a second to internally fail the call with DEADLINE_EXCEEDED instead of CANCELLED which should substantially improve the accuracy of the metrics
  • grpclb: support explicit fallback from LB (#6549)
  • netty: set -Dio.grpc.netty.useCustomAllocator=true by default (#6528). This causes grpc to use a different Netty allocator by default which is configured to allocate in smaller chunks which may reduce memory usage by 8x on lightly loaded systems. Performance benchmarks show virtually no change with any potential slowdowns hidden in the noise (~1%). See also #6407. If you notice problems, set the property to false and file an issue
  • api: support for lazily serialized values in Metadata (#6466). Metadata marshallers must opt-in to being serialized lazily. Nothing is using this support at the moment (including protobufs). This can be used for avoiding serialization with in-process transport or for transport-specific features like file descriptor passing in metadata (such things were already possible with RPC messages).
  • alts: add AuthorizationUtil utility library for verifying a client is a particular account (#6529)

Known issues

  • netty: listening on multiple ports (via NettyServerBuilder.addListenAddress()) may deadlock (bug #6641). This has been the case since its introduction

Acknowledgements

v1.26.1

Bug Fixes

  • bazel: Use https to download from Maven Central (#6543)
... (truncated)
Commits
  • 0b4fa21 Bump version to 1.27.1
  • 2be7cc3 Update README etc to reference 1.27.1
  • 2a83637 alts: Actually use Conscrypt when available (#6700)
  • 7727098 interop-testing: fix bug of xds test missing transitive dependency
  • f0b2d77 interop-testing: fix bug for xds dependency not published yet
  • 467649b Bump version to 1.27.1-SNAPSHOT
  • 1e2f28d Bump version to 1.27.0
  • 754e7aa Update README etc to reference 1.27.0
  • 8c346d0 netty: fix a race for channelz at server transport creation
  • 5acb70e examples: Bump Gradle to 5.6.2
  • Additional commits viewable in compare view

Updates grpc-stub from 1.12.0 to 1.27.1

Release notes

Sourced from grpc-stub's releases.

v1.27.1

Bug Fixes

  • alts: Fix using the wrong way of checking if Conscrypt is available (#6672)

v1.27.0

Bazel users should migrate to maven_install. Please open an issue to report problems migrating to maven_install.

Dependencies

  • core, census: census dependency is removed from grpc-core. A grpc-census artifact now exists to provide interceptor/stream tracer factory that applies census stats/tracing features. For users not using gRPC’s integration of census, nothing should be affected. Users who want census integration need to add grpc-census artifact to runtime classpath (#6577)
  • Bump animal-sniffer-annotations to 1.18 (#6488)
  • Bump error_prone_annotations to 2.3.4 (#6574)
  • auth: Bump google-auth-library-credentials and google-auth-library-oauth2-http to 0.19.0 (#6537)
  • protobuf: Bump proto-google-common-protos to 1.17.0 (#6572)

Bug Fixes

  • netty: the warning “Received GOAWAY with ENHANCE_YOUR_CALM. Debug data:” will now actually contain the debug data (#6596)
  • examples: example servers now shutdown gracefully (#6512)
  • api: update documentation to encourage libraries to provide scheme in target string during channel creation (#6499)
  • bazel: Use https to download from Maven Central (#6543)
  • bazel: Fix renamed javalite target that caused build failures in 1.26.0 (#6544)

API Changes

  • bazel: Remove omit* args in favor of existing_rule() check (#6553). If you are passing any arguments to grpc_java_repositories() within your WORKSPACE, you will need to remove those arguments and make sure you run grpc_java_repositories() after defining any overridden repositories
  • bazel: Support maven_install (#6553). See examples/WORKSPACE for typical usage. grpc-java still supports the jvm_maven_import_external()-based loading only to ease migration. grpc-java will drop usages of jvm_maven_import_external() in the future

New Features

  • core: delay sending cancel request on client-side by one second when deadline expires (#6328). This only impacts metrics reported by the server. It provides the server a second to internally fail the call with DEADLINE_EXCEEDED instead of CANCELLED which should substantially improve the accuracy of the metrics
  • grpclb: support explicit fallback from LB (#6549)
  • netty: set -Dio.grpc.netty.useCustomAllocator=true by default (#6528). This causes grpc to use a different Netty allocator by default which is configured to allocate in smaller chunks which may reduce memory usage by 8x on lightly loaded systems. Performance benchmarks show virtually no change with any potential slowdowns hidden in the noise (~1%). See also #6407. If you notice problems, set the property to false and file an issue
  • api: support for lazily serialized values in Metadata (#6466). Metadata marshallers must opt-in to being serialized lazily. Nothing is using this support at the moment (including protobufs). This can be used for avoiding serialization with in-process transport or for transport-specific features like file descriptor passing in metadata (such things were already possible with RPC messages).
  • alts: add AuthorizationUtil utility library for verifying a client is a particular account (#6529)

Known issues

  • netty: listening on multiple ports (via NettyServerBuilder.addListenAddress()) may deadlock (bug #6641). This has been the case since its introduction

Acknowledgements

v1.26.1

Bug Fixes

  • bazel: Use https to download from Maven Central (#6543)
... (truncated)
Commits
  • 0b4fa21 Bump version to 1.27.1
  • 2be7cc3 Update README etc to reference 1.27.1
  • 2a83637 alts: Actually use Conscrypt when available (#6700)
  • 7727098 interop-testing: fix bug of xds test missing transitive dependency
  • f0b2d77 interop-testing: fix bug for xds dependency not published yet
  • 467649b Bump version to 1.27.1-SNAPSHOT
  • 1e2f28d Bump version to 1.27.0
  • 754e7aa Update README etc to reference 1.27.0
  • 8c346d0 netty: fix a race for channelz at server transport creation
  • 5acb70e examples: Bump Gradle to 5.6.2
  • 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps `grpc.version` from 1.12.0 to 1.27.1.

Updates `grpc-netty` from 1.12.0 to 1.27.1
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.12.0...v1.27.1)

Updates `grpc-protobuf` from 1.12.0 to 1.27.1
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.12.0...v1.27.1)

Updates `grpc-stub` from 1.12.0 to 1.27.1
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.12.0...v1.27.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Feb 14, 2020
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

Development

Successfully merging this pull request may close these issues.

0 participants