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

Update dependency io.grpc:grpc-testing to v1.61.0 - autoclosed #2099

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.grpc:grpc-testing 1.58.0 -> 1.61.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

grpc/grpc-java (io.grpc:grpc-testing)

v1.61.0

v1.60.1

Bug Fixes
  • util: Fix NPE when multiple addresses in an address group for petiole load balancer policies (#​10770)

v1.60.0

API Changes
  • api: Stabilize ForwardingServerBuilder, ForwardingChannelBuilder2, and ForwardingChannelBuilder. Note that ForwardingChannelBuilder is stabilized (no changes will be made to it), but immediately deprecated in favor of ForwardingChannelBuilder2. (#​10586)
  • api: Deprecate ForwardingChannelBuilder.delegate(). De facto this deprecates the class itself, since all classes extending ForwardingChannelBuilder implement the delegate() method. See javadoc for details (#​10587)
  • api: Changed recently-introduced LoadBalancer.acceptResolvedAddresses() to return Status instead of boolean (#​10636). This is part of continued work to align the LB API cross-language and API stabilization
  • stub: Deprecate StreamObservers (#​10654)
  • alts: AltsChannelBuilder now extends ForwardingChannelBuilder2 (#​10587)
  • protobuf: Stabilize ProtoUtils.metadataMarshaller() (#​10628)
  • protobuf-lite: ProtoLiteUtils experimental comment (#​10627)
Behavior Changes
  • core: ManagedChannels now check the address types provided by the nameResolver (for the given target) with the address types supported by the channel transport and generate an error in case of mismatch. That dramatically improves the error message when an issue occurs
  • core: When a server stream is closed due to user's code (an uncaught exception in halfClosed, messagesAvailable, onReady callback of a ServerStream's listener), the Status.UNKNOWN returned to the client will have Application error processing RPC description. Previously the description was empty. This is helpful to differentiate between server errors originated in user application, gRPC library, or even those injected by a proxy. (#​10643)
  • xds: Log ORCA UNIMPLEMENTED error to subchannel logger. This removes them from the normal application logs, reducing log spam
Improvements
  • Change the underlying implementations of RingHash, RoundRobin, WeightedRoundRobin and LeastRequest load balancers to utilize the pick first load balancer rather than directly manage subchannels. This should only be noticeable if it introduced a bug
  • core: Avoid flushing headers when the server returns a single response (#​9314). This is a performance optimization to reduce the number of packets for non-streaming responses
  • util: Make grpc-core an implementation dependency. This will prevent the io.grpc.internal classes in grpc-core from being visible during compilation when depending on just grpc-util
  • netty: Implement Http2Headers.isEmpty(). This fixes compatibility with Netty 4.1.101.Final.
  • netty: Add NettyServerBuilder.maxRstFramesPerWindow(). This can be used to limit impact of Rapid Reset
  • netty: Disable huffman coding in headers (#​10563). Huffman coding provides modest compression for relatively high CPU usage, especially within a data center. Rely just on the HPACK static and dynamic tables for compression, for higher performance. This only impacts header values 512 bytes or longer, as Netty already disabled Huffman for smaller values
  • alts: Improve handshake failure error message by propagating original exception (#​10644)
Bug Fixes
  • util: Remove shutdown subchannels from OD tracking (#​10683). This could have caused a memory leak on a long-lived channel. But we don’t think it could be triggered with our built-in load balancing policies.
Dependencies
  • Bump Netty to 4.1.100.Final
Acknowledgements

@​anthonyjpratti
@​fedorka
@​jpd236
@​mateusazis
@​pkoenig10
@​yannickepstein
@​amirhadadi

v1.59.1

  • netty: Implement Http2Headers.isEmpty(). This fixes compatibility with Netty 4.1.101.Final.
  • netty: Add NettyServerBuilder.maxRstFramesPerWindow(). This can be used to limit impact of Rapid Reset
  • xds: Log ORCA UNIMPLEMENTED error to subchannel logger. This removes them from the normal application logs, reducing log spam

v1.59.0

gRPC Java 1.59.0 Release Notes

PLANNED ABI BREAKAGE!

This breaks the ABI of the @ExperimentalApi classes listed below.
This does not impact source code (API); it only impacts code compiled with a different version of gRPC than it runs with (ABI).

Users that recompiled their code using grpc-java v1.36.0 (released on Feb 23, 2021) and later, ARE NOT AFFECTED.
Users that compiled their source using grpc-java earlier than v1.36.0 may need to recompile when upgrading to grpc-java v1.59.0.

See details in #​10406.

Affected classes

Class io.grpc.internal.AbstractManagedChannelImplBuilder is deleted, and no longer in the class hierarchy of the channel builders:

  • io.grpc.netty.NettyChannelBuilder
  • io.grpc.okhttp.OkhttpChannelBuilder
  • io.grpc.cronet.CronetChannelBuilder

Class io.grpc.internal.AbstractServerImplBuilder is deleted, and no longer in the class hierarchy of the server builders:

  • io.grpc.netty.NettyServerBuilder
  • io.grpc.inprocess.InProcessServerBuilder

API Changes
  • core: AbstractManagedChannelImplBuilder and AbstractServerImplBuilder are removed (#​10530). This is ABI-breaking, see the warning above. (#​10406)
  • core: Removed .class file hack previously introduced in v1.36.0 to ease removal of internal ABIs. (#​10406)
  • api: Add ForwardingChannelBuilder2, an ABI-safe version of ForwardingChannelBuilder, which will be deprecated in the following release. (#​10585, #​10406)
  • api: Add LoadBalancer.FixedResultPicker convenience class for load balancer implementations. It is a replacement for ErrorPicker and EMPTY_PICKER added in 1.58.0
  • testing: Stabilize TestMethodDescriptors (#​10530)
Behavior Changes
  • core: de-expermentalize pick first config parsing (#​10531)
  • netty: Respect -Dio.netty.allocator.type=unpooled when getting Netty Allocator instead of ignoring it (#​10543)
  • netty: Use UNAVAILABLE for connections closed while writing. Previously this would result in UNKNOWN
  • binder: Enable indirect addressing using s. (#​10550)
Improvements
  • core: only use reflection to resolve InternalCensusStatsAccessor once instead of once per channel
  • core: enhance error message in the case of DEADLINE_EXCEEDED to indicate name resolution delay.
  • netty: When creating a connection, use java.util.logging formatting instead of String.format to avoid work when not logged
  • netty: Touch ByteBuf when message framing has been decoded. If the buffer is leaked, this helps narrow down the source of reference counting bug
  • java_grpc_library.bzl: Disable Automatic Exec Groups inside grpc libraries (#​10514). This improves compatibility with future Bazel versions while retaining Bazel 5.x compatibility
Bug Fixes
  • netty: Avoid NettyAdaptiveCumulator incorrectly releasing its input ByteBuf twice when reading messages under certain error conditions (#​10537)
  • xds: Add fix for xdstp replacement for percent-encoded authorities (#​10571)
Documentation
  • API documentation (Javadoc) for Server and Channel builders now correctly displays inherited methods and the class hierarchy. (#​10406)
  • examples: add an example for OAuth (#​10560)
Dependencies
  • Upgrade Netty to 4.1.97.Final
Acknowledgements

John Cormie (@​jdcormie)
Stephane Landelle (@​slandelle)
@​kotlaja

v1.58.1

  • xds: PickFirst was not receiving its configuration so it used the default configuration which meant that randomize was ignored.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot temporarily deployed to Demo October 20, 2023 14:11 Inactive
@renovate renovate bot temporarily deployed to Demo October 20, 2023 14:11 Inactive
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from 3f78cb8 to a67b4ff Compare October 20, 2023 14:12
@renovate renovate bot temporarily deployed to Demo October 20, 2023 14:12 Inactive
@renovate renovate bot temporarily deployed to Demo October 20, 2023 14:12 Inactive
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from a67b4ff to 0bb2630 Compare October 23, 2023 07:28
@renovate renovate bot temporarily deployed to Demo October 23, 2023 07:28 Inactive
@renovate renovate bot temporarily deployed to Demo October 23, 2023 07:28 Inactive
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from 0bb2630 to cd5a269 Compare October 23, 2023 07:29
@renovate renovate bot temporarily deployed to Demo October 23, 2023 07:29 Inactive
@renovate renovate bot temporarily deployed to Demo October 23, 2023 07:29 Inactive
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from cd5a269 to cc7b04d Compare October 23, 2023 15:16
@renovate renovate bot temporarily deployed to Demo October 23, 2023 15:16 Inactive
@renovate renovate bot temporarily deployed to Demo October 23, 2023 15:16 Inactive
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from cc7b04d to c9b4d7d Compare October 23, 2023 19:39
@renovate renovate bot temporarily deployed to Demo October 23, 2023 19:39 Inactive
@renovate renovate bot temporarily deployed to Demo October 23, 2023 19:39 Inactive
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from c9b4d7d to 0052599 Compare October 24, 2023 15:53
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from f330726 to d50873b Compare December 27, 2023 05:00
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from d50873b to f812dae Compare December 28, 2023 09:57
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from f812dae to 5894fbd Compare December 31, 2023 19:39
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from 5894fbd to 9f9857d Compare January 4, 2024 04:51
@renovate renovate bot force-pushed the renovate/io.grpc-grpc-testing-1.x branch from 9f9857d to 8056a0c Compare January 12, 2024 07:02
@renovate renovate bot changed the title Update dependency io.grpc:grpc-testing to v1.60.1 Update dependency io.grpc:grpc-testing to v1.61.0 Jan 12, 2024
@renovate renovate bot changed the title Update dependency io.grpc:grpc-testing to v1.61.0 Update dependency io.grpc:grpc-testing to v1.61.0 - autoclosed Jan 16, 2024
@renovate renovate bot closed this Jan 16, 2024
@renovate renovate bot deleted the renovate/io.grpc-grpc-testing-1.x branch January 16, 2024 12:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants