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.57.2 to 1.58.0 #3962

Merged
merged 1 commit into from
Sep 10, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 7, 2023

Bumps grpc.version from 1.57.2 to 1.58.0.
Updates io.grpc:grpc-core from 1.57.2 to 1.58.0

Release notes

Sourced from io.grpc:grpc-core's releases.

v1.58.0

API Changes

  • xds: Add missing ExperimentalApi to OrcaServiceImpl
  • stub: Removed deprecated methods attachHeaders and captureMetadata from MetadataUtils (#10443)
  • api: Stabilized ServerCall.getAuthority() by removing experimental annotation (#10498)
  • api: Stabilized ServerCall#setMessageCompression() and PartialForwardingServerCall#setMessageCompression() (#10393)
  • protobuf: Stabilize ProtoUtils.setExtensionRegistry() and ProtoLiteUtils.setExtensionRegistry() (#10392)
  • testing: Stabilize GrpcCleanupRule, GrpcServerRule (#10494)
  • api: Stabilized ServerBuilder.handshakeTimeout (#10499)
  • api: Removed Context.Storage deprecated method attach(), made doAttach() abstract (#10379)
  • api : Stabilized methodDescriptor getRequestMarshaller, getResponseMarshaller (#10495)

Behavior Changes

  • rls: Have RLS's LRU Cache rely on cleanup process to remove expired entries (#10400)
  • core, inprocess, util: 2 new artifacts grpc-inprocess and grpc-util have been created by moving code from grpc-core to facilitate Java module support (#10362, #10390)
  • all: Automatic module name support added to all artifacts (#10413)
  • xds: Encode the service authority in XdsNameResolver (#10207)

Improvements

  • api: In Javadoc, link to gRFCs A8/A9 for keepalive and related settings
  • okhttp: Enable support for being returned by Grpc.newServerBuilderForPort(). At present, Netty always has higher priority than OkHttp, if they are both available, because ServerBuilder.forPort() is not supported in the OkHttp transport but is supported in the Netty transport
  • bazel: Enhance java_grpc_library.bzl to allow toolchain to use annotation processors
  • examples: Add pre-serialized-message example (#10112)
  • examples: Android examples to use AGP 7.4.0 (#10497)

Bug Fixes

  • Fix compatibility with Java 8. This fixes the NoSuchMethodError for ByteBuffer methods present in 1.57.0 (#10441)
  • xds: Remove debug assert in WeightedRoundRobinLoadBalancer. The assert was to detect breakages in the static stride algorithm causing too much looping. However, with multithreading it is possible to trigger even in legitimate scenarios (#10437)
  • util: Outlier detection tracer delegation (#10459)
  • Handle header with errors and endStream = true. Was filling logs with NPEs. (#10384)
  • core: Fix a retriablestream bug that may cause deadlock with OkHttp (#10386)
  • stub: Remove ThreadlessExecutor from BlockingServerStream to eliminate the problem where sometimes the iterator’s next() method would get stuck. (#10496)
  • compiler: Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • okhttp: Use padded length for flow control in both client and server transport (#10422)
  • xds: Fix locality logging information in bootstrap (#10423)

Dependencies

  • Upgraded protobuf to 3.24.0
  • android: Min SDK level to 21 (#10505)
  • Various dependency upgrades (#10359):
     androidx.core:core 1.10.0 -> 1.10.1
     com.google.api.grpc:proto-google-common-protos 2.17.0 -> 2.22.0
     com.google.cloud:google-cloud-logging 3.14.5 -> 3.15.5
     com.google.errorprone:error_prone_annotations 2.18.0 -> 2.20.0
     com.squareup.okio:okio 1.17.5 -> 2.10.0
    

Acknowledgements

Halvard Skogsrud

Commits
  • f9562b1 Bump version to 1.58.0
  • 3481284 Update README etc to reference 1.58.0
  • 42e6788 Handle exception in servers sendMessage better (v1.58 backport of #10513) (#1...
  • 5559d54 examples: Android helloworld to pass Google lint (#10518)
  • 3fad521 Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • 2b4f649 android: Min SDK level to 21 (#10505)
  • 1fc3649 interop-testing: Correctly expose API types to dependents
  • 55c5040 Remove ThreadlessExecutor from BlockingServerStream (#10496)
  • eb18cba stablize ServerBuilder.handshakeTimeout (#10499)
  • ceadf6d Upgrade to Gradle 8.3
  • Additional commits viewable in compare view

Updates io.grpc:grpc-protobuf from 1.57.2 to 1.58.0

Release notes

Sourced from io.grpc:grpc-protobuf's releases.

v1.58.0

API Changes

  • xds: Add missing ExperimentalApi to OrcaServiceImpl
  • stub: Removed deprecated methods attachHeaders and captureMetadata from MetadataUtils (#10443)
  • api: Stabilized ServerCall.getAuthority() by removing experimental annotation (#10498)
  • api: Stabilized ServerCall#setMessageCompression() and PartialForwardingServerCall#setMessageCompression() (#10393)
  • protobuf: Stabilize ProtoUtils.setExtensionRegistry() and ProtoLiteUtils.setExtensionRegistry() (#10392)
  • testing: Stabilize GrpcCleanupRule, GrpcServerRule (#10494)
  • api: Stabilized ServerBuilder.handshakeTimeout (#10499)
  • api: Removed Context.Storage deprecated method attach(), made doAttach() abstract (#10379)
  • api : Stabilized methodDescriptor getRequestMarshaller, getResponseMarshaller (#10495)

Behavior Changes

  • rls: Have RLS's LRU Cache rely on cleanup process to remove expired entries (#10400)
  • core, inprocess, util: 2 new artifacts grpc-inprocess and grpc-util have been created by moving code from grpc-core to facilitate Java module support (#10362, #10390)
  • all: Automatic module name support added to all artifacts (#10413)
  • xds: Encode the service authority in XdsNameResolver (#10207)

Improvements

  • api: In Javadoc, link to gRFCs A8/A9 for keepalive and related settings
  • okhttp: Enable support for being returned by Grpc.newServerBuilderForPort(). At present, Netty always has higher priority than OkHttp, if they are both available, because ServerBuilder.forPort() is not supported in the OkHttp transport but is supported in the Netty transport
  • bazel: Enhance java_grpc_library.bzl to allow toolchain to use annotation processors
  • examples: Add pre-serialized-message example (#10112)
  • examples: Android examples to use AGP 7.4.0 (#10497)

Bug Fixes

  • Fix compatibility with Java 8. This fixes the NoSuchMethodError for ByteBuffer methods present in 1.57.0 (#10441)
  • xds: Remove debug assert in WeightedRoundRobinLoadBalancer. The assert was to detect breakages in the static stride algorithm causing too much looping. However, with multithreading it is possible to trigger even in legitimate scenarios (#10437)
  • util: Outlier detection tracer delegation (#10459)
  • Handle header with errors and endStream = true. Was filling logs with NPEs. (#10384)
  • core: Fix a retriablestream bug that may cause deadlock with OkHttp (#10386)
  • stub: Remove ThreadlessExecutor from BlockingServerStream to eliminate the problem where sometimes the iterator’s next() method would get stuck. (#10496)
  • compiler: Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • okhttp: Use padded length for flow control in both client and server transport (#10422)
  • xds: Fix locality logging information in bootstrap (#10423)

Dependencies

  • Upgraded protobuf to 3.24.0
  • android: Min SDK level to 21 (#10505)
  • Various dependency upgrades (#10359):
     androidx.core:core 1.10.0 -> 1.10.1
     com.google.api.grpc:proto-google-common-protos 2.17.0 -> 2.22.0
     com.google.cloud:google-cloud-logging 3.14.5 -> 3.15.5
     com.google.errorprone:error_prone_annotations 2.18.0 -> 2.20.0
     com.squareup.okio:okio 1.17.5 -> 2.10.0
    

Acknowledgements

Halvard Skogsrud

Commits
  • f9562b1 Bump version to 1.58.0
  • 3481284 Update README etc to reference 1.58.0
  • 42e6788 Handle exception in servers sendMessage better (v1.58 backport of #10513) (#1...
  • 5559d54 examples: Android helloworld to pass Google lint (#10518)
  • 3fad521 Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • 2b4f649 android: Min SDK level to 21 (#10505)
  • 1fc3649 interop-testing: Correctly expose API types to dependents
  • 55c5040 Remove ThreadlessExecutor from BlockingServerStream (#10496)
  • eb18cba stablize ServerBuilder.handshakeTimeout (#10499)
  • ceadf6d Upgrade to Gradle 8.3
  • Additional commits viewable in compare view

Updates io.grpc:grpc-stub from 1.57.2 to 1.58.0

Release notes

Sourced from io.grpc:grpc-stub's releases.

v1.58.0

API Changes

  • xds: Add missing ExperimentalApi to OrcaServiceImpl
  • stub: Removed deprecated methods attachHeaders and captureMetadata from MetadataUtils (#10443)
  • api: Stabilized ServerCall.getAuthority() by removing experimental annotation (#10498)
  • api: Stabilized ServerCall#setMessageCompression() and PartialForwardingServerCall#setMessageCompression() (#10393)
  • protobuf: Stabilize ProtoUtils.setExtensionRegistry() and ProtoLiteUtils.setExtensionRegistry() (#10392)
  • testing: Stabilize GrpcCleanupRule, GrpcServerRule (#10494)
  • api: Stabilized ServerBuilder.handshakeTimeout (#10499)
  • api: Removed Context.Storage deprecated method attach(), made doAttach() abstract (#10379)
  • api : Stabilized methodDescriptor getRequestMarshaller, getResponseMarshaller (#10495)

Behavior Changes

  • rls: Have RLS's LRU Cache rely on cleanup process to remove expired entries (#10400)
  • core, inprocess, util: 2 new artifacts grpc-inprocess and grpc-util have been created by moving code from grpc-core to facilitate Java module support (#10362, #10390)
  • all: Automatic module name support added to all artifacts (#10413)
  • xds: Encode the service authority in XdsNameResolver (#10207)

Improvements

  • api: In Javadoc, link to gRFCs A8/A9 for keepalive and related settings
  • okhttp: Enable support for being returned by Grpc.newServerBuilderForPort(). At present, Netty always has higher priority than OkHttp, if they are both available, because ServerBuilder.forPort() is not supported in the OkHttp transport but is supported in the Netty transport
  • bazel: Enhance java_grpc_library.bzl to allow toolchain to use annotation processors
  • examples: Add pre-serialized-message example (#10112)
  • examples: Android examples to use AGP 7.4.0 (#10497)

Bug Fixes

  • Fix compatibility with Java 8. This fixes the NoSuchMethodError for ByteBuffer methods present in 1.57.0 (#10441)
  • xds: Remove debug assert in WeightedRoundRobinLoadBalancer. The assert was to detect breakages in the static stride algorithm causing too much looping. However, with multithreading it is possible to trigger even in legitimate scenarios (#10437)
  • util: Outlier detection tracer delegation (#10459)
  • Handle header with errors and endStream = true. Was filling logs with NPEs. (#10384)
  • core: Fix a retriablestream bug that may cause deadlock with OkHttp (#10386)
  • stub: Remove ThreadlessExecutor from BlockingServerStream to eliminate the problem where sometimes the iterator’s next() method would get stuck. (#10496)
  • compiler: Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • okhttp: Use padded length for flow control in both client and server transport (#10422)
  • xds: Fix locality logging information in bootstrap (#10423)

Dependencies

  • Upgraded protobuf to 3.24.0
  • android: Min SDK level to 21 (#10505)
  • Various dependency upgrades (#10359):
     androidx.core:core 1.10.0 -> 1.10.1
     com.google.api.grpc:proto-google-common-protos 2.17.0 -> 2.22.0
     com.google.cloud:google-cloud-logging 3.14.5 -> 3.15.5
     com.google.errorprone:error_prone_annotations 2.18.0 -> 2.20.0
     com.squareup.okio:okio 1.17.5 -> 2.10.0
    

Acknowledgements

Halvard Skogsrud

Commits
  • f9562b1 Bump version to 1.58.0
  • 3481284 Update README etc to reference 1.58.0
  • 42e6788 Handle exception in servers sendMessage better (v1.58 backport of #10513) (#1...
  • 5559d54 examples: Android helloworld to pass Google lint (#10518)
  • 3fad521 Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • 2b4f649 android: Min SDK level to 21 (#10505)
  • 1fc3649 interop-testing: Correctly expose API types to dependents
  • 55c5040 Remove ThreadlessExecutor from BlockingServerStream (#10496)
  • eb18cba stablize ServerBuilder.handshakeTimeout (#10499)
  • ceadf6d Upgrade to Gradle 8.3
  • Additional commits viewable in compare view

Updates io.grpc:grpc-testing from 1.57.2 to 1.58.0

Release notes

Sourced from io.grpc:grpc-testing's releases.

v1.58.0

API Changes

  • xds: Add missing ExperimentalApi to OrcaServiceImpl
  • stub: Removed deprecated methods attachHeaders and captureMetadata from MetadataUtils (#10443)
  • api: Stabilized ServerCall.getAuthority() by removing experimental annotation (#10498)
  • api: Stabilized ServerCall#setMessageCompression() and PartialForwardingServerCall#setMessageCompression() (#10393)
  • protobuf: Stabilize ProtoUtils.setExtensionRegistry() and ProtoLiteUtils.setExtensionRegistry() (#10392)
  • testing: Stabilize GrpcCleanupRule, GrpcServerRule (#10494)
  • api: Stabilized ServerBuilder.handshakeTimeout (#10499)
  • api: Removed Context.Storage deprecated method attach(), made doAttach() abstract (#10379)
  • api : Stabilized methodDescriptor getRequestMarshaller, getResponseMarshaller (#10495)

Behavior Changes

  • rls: Have RLS's LRU Cache rely on cleanup process to remove expired entries (#10400)
  • core, inprocess, util: 2 new artifacts grpc-inprocess and grpc-util have been created by moving code from grpc-core to facilitate Java module support (#10362, #10390)
  • all: Automatic module name support added to all artifacts (#10413)
  • xds: Encode the service authority in XdsNameResolver (#10207)

Improvements

  • api: In Javadoc, link to gRFCs A8/A9 for keepalive and related settings
  • okhttp: Enable support for being returned by Grpc.newServerBuilderForPort(). At present, Netty always has higher priority than OkHttp, if they are both available, because ServerBuilder.forPort() is not supported in the OkHttp transport but is supported in the Netty transport
  • bazel: Enhance java_grpc_library.bzl to allow toolchain to use annotation processors
  • examples: Add pre-serialized-message example (#10112)
  • examples: Android examples to use AGP 7.4.0 (#10497)

Bug Fixes

  • Fix compatibility with Java 8. This fixes the NoSuchMethodError for ByteBuffer methods present in 1.57.0 (#10441)
  • xds: Remove debug assert in WeightedRoundRobinLoadBalancer. The assert was to detect breakages in the static stride algorithm causing too much looping. However, with multithreading it is possible to trigger even in legitimate scenarios (#10437)
  • util: Outlier detection tracer delegation (#10459)
  • Handle header with errors and endStream = true. Was filling logs with NPEs. (#10384)
  • core: Fix a retriablestream bug that may cause deadlock with OkHttp (#10386)
  • stub: Remove ThreadlessExecutor from BlockingServerStream to eliminate the problem where sometimes the iterator’s next() method would get stuck. (#10496)
  • compiler: Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • okhttp: Use padded length for flow control in both client and server transport (#10422)
  • xds: Fix locality logging information in bootstrap (#10423)

Dependencies

  • Upgraded protobuf to 3.24.0
  • android: Min SDK level to 21 (#10505)
  • Various dependency upgrades (#10359):
     androidx.core:core 1.10.0 -> 1.10.1
     com.google.api.grpc:proto-google-common-protos 2.17.0 -> 2.22.0
     com.google.cloud:google-cloud-logging 3.14.5 -> 3.15.5
     com.google.errorprone:error_prone_annotations 2.18.0 -> 2.20.0
     com.squareup.okio:okio 1.17.5 -> 2.10.0
    

Acknowledgements

Halvard Skogsrud

Commits
  • f9562b1 Bump version to 1.58.0
  • 3481284 Update README etc to reference 1.58.0
  • 42e6788 Handle exception in servers sendMessage better (v1.58 backport of #10513) (#1...
  • 5559d54 examples: Android helloworld to pass Google lint (#10518)
  • 3fad521 Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • 2b4f649 android: Min SDK level to 21 (#10505)
  • 1fc3649 interop-testing: Correctly expose API types to dependents
  • 55c5040 Remove ThreadlessExecutor from BlockingServerStream (#10496)
  • eb18cba stablize ServerBuilder.handshakeTimeout (#10499)
  • ceadf6d Upgrade to Gradle 8.3
  • Additional commits viewable in compare view

Updates io.grpc:grpc-netty-shaded from 1.57.2 to 1.58.0

Release notes

Sourced from io.grpc:grpc-netty-shaded's releases.

v1.58.0

API Changes

  • xds: Add missing ExperimentalApi to OrcaServiceImpl
  • stub: Removed deprecated methods attachHeaders and captureMetadata from MetadataUtils (#10443)
  • api: Stabilized ServerCall.getAuthority() by removing experimental annotation (#10498)
  • api: Stabilized ServerCall#setMessageCompression() and PartialForwardingServerCall#setMessageCompression() (#10393)
  • protobuf: Stabilize ProtoUtils.setExtensionRegistry() and ProtoLiteUtils.setExtensionRegistry() (#10392)
  • testing: Stabilize GrpcCleanupRule, GrpcServerRule (#10494)
  • api: Stabilized ServerBuilder.handshakeTimeout (#10499)
  • api: Removed Context.Storage deprecated method attach(), made doAttach() abstract (#10379)
  • api : Stabilized methodDescriptor getRequestMarshaller, getResponseMarshaller (#10495)

Behavior Changes

  • rls: Have RLS's LRU Cache rely on cleanup process to remove expired entries (#10400)
  • core, inprocess, util: 2 new artifacts grpc-inprocess and grpc-util have been created by moving code from grpc-core to facilitate Java module support (#10362, #10390)
  • all: Automatic module name support added to all artifacts (#10413)
  • xds: Encode the service authority in XdsNameResolver (#10207)

Improvements

  • api: In Javadoc, link to gRFCs A8/A9 for keepalive and related settings
  • okhttp: Enable support for being returned by Grpc.newServerBuilderForPort(). At present, Netty always has higher priority than OkHttp, if they are both available, because ServerBuilder.forPort() is not supported in the OkHttp transport but is supported in the Netty transport
  • bazel: Enhance java_grpc_library.bzl to allow toolchain to use annotation processors
  • examples: Add pre-serialized-message example (#10112)
  • examples: Android examples to use AGP 7.4.0 (#10497)

Bug Fixes

  • Fix compatibility with Java 8. This fixes the NoSuchMethodError for ByteBuffer methods present in 1.57.0 (#10441)
  • xds: Remove debug assert in WeightedRoundRobinLoadBalancer. The assert was to detect breakages in the static stride algorithm causing too much looping. However, with multithreading it is possible to trigger even in legitimate scenarios (#10437)
  • util: Outlier detection tracer delegation (#10459)
  • Handle header with errors and endStream = true. Was filling logs with NPEs. (#10384)
  • core: Fix a retriablestream bug that may cause deadlock with OkHttp (#10386)
  • stub: Remove ThreadlessExecutor from BlockingServerStream to eliminate the problem where sometimes the iterator’s next() method would get stuck. (#10496)
  • compiler: Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • okhttp: Use padded length for flow control in both client and server transport (#10422)
  • xds: Fix locality logging information in bootstrap (#10423)

Dependencies

  • Upgraded protobuf to 3.24.0
  • android: Min SDK level to 21 (#10505)
  • Various dependency upgrades (#10359):
     androidx.core:core 1.10.0 -> 1.10.1
     com.google.api.grpc:proto-google-common-protos 2.17.0 -> 2.22.0
     com.google.cloud:google-cloud-logging 3.14.5 -> 3.15.5
     com.google.errorprone:error_prone_annotations 2.18.0 -> 2.20.0
     com.squareup.okio:okio 1.17.5 -> 2.10.0
    

Acknowledgements

Halvard Skogsrud

Commits
  • f9562b1 Bump version to 1.58.0
  • 3481284 Update README etc to reference 1.58.0
  • 42e6788 Handle exception in servers sendMessage better (v1.58 backport of #10513) (#1...
  • 5559d54 examples: Android helloworld to pass Google lint (#10518)
  • 3fad521 Fix aarch_64 macs not being able to build the compiler module. (#10516)
  • 2b4f649 android: Min SDK level to 21 (#10505)
  • 1fc3649 interop-testing: Correctly expose API types to dependents
  • 55c5040 Remove ThreadlessExecutor from BlockingServerStream (#10496)
  • eb18cba stablize ServerBuilder.handshakeTimeout (#10499)
  • ceadf6d Upgrade to Gradle 8.3
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added backport/v0.6 dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 7, 2023
@janusgraph-bot janusgraph-bot added the cla: external Externally-managed CLA label Sep 7, 2023
@FlorianHockmann FlorianHockmann added this to the Release v1.0.0 milestone Sep 8, 2023
Bumps `grpc.version` from 1.57.2 to 1.58.0.

Updates `io.grpc:grpc-core` from 1.57.2 to 1.58.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.57.2...v1.58.0)

Updates `io.grpc:grpc-protobuf` from 1.57.2 to 1.58.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.57.2...v1.58.0)

Updates `io.grpc:grpc-stub` from 1.57.2 to 1.58.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.57.2...v1.58.0)

Updates `io.grpc:grpc-testing` from 1.57.2 to 1.58.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.57.2...v1.58.0)

Updates `io.grpc:grpc-netty-shaded` from 1.57.2 to 1.58.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.57.2...v1.58.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/maven/grpc.version-1.58.0 branch from d05a263 to 1198e46 Compare September 9, 2023 10:01
@porunov porunov merged commit 0663c29 into master Sep 10, 2023
@dependabot dependabot bot deleted the dependabot/maven/grpc.version-1.58.0 branch September 10, 2023 13:23
@janusgraph-automations
Copy link

💔 All backports failed

Status Branch Result
v0.6 Backport failed because of merge conflicts

Manual backport

To create the backport manually run:

backport --pr 3962

Questions ?

Please refer to the Backport tool documentation and see the Github Action logs for details

@FlorianHockmann
Copy link
Member

💚 All backports created successfully

Status Branch Result
v0.6

Note: Successful backport PRs will be merged automatically after passing CI.

Questions ?

Please refer to the Backport tool documentation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport/skip cla: external Externally-managed CLA dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants