fix(deps): Update dependency io.grpc:grpc-testing to v1.60.1#165
Merged
kodiakhq[bot] merged 2 commits intomainfrom Jan 1, 2024
Merged
fix(deps): Update dependency io.grpc:grpc-testing to v1.60.1#165kodiakhq[bot] merged 2 commits intomainfrom
kodiakhq[bot] merged 2 commits intomainfrom
Conversation
kodiakhq bot
pushed a commit
that referenced
this pull request
Jan 2, 2024
🤖 I have created a release *beep* *boop* --- ## [0.0.18](v0.0.17...v0.0.18) (2024-01-02) ### Bug Fixes * **deps:** Update dependency com.fasterxml.jackson.core:jackson-annotations to v2.16.1 ([#159](#159)) ([bd1e79b](bd1e79b)) * **deps:** Update dependency com.fasterxml.jackson.core:jackson-core to v2.16.1 ([#160](#160)) ([d663db8](d663db8)) * **deps:** Update dependency io.cloudquery:plugin-pb-java to v0.0.11 ([#131](#131)) ([6ae7381](6ae7381)) * **deps:** Update dependency io.grpc:grpc-protobuf to v1.60.1 ([#163](#163)) ([8dfcccd](8dfcccd)) * **deps:** Update dependency io.grpc:grpc-services to v1.60.1 ([#139](#139)) ([6fc59f2](6fc59f2)) * **deps:** Update dependency io.grpc:grpc-stub to v1.60.1 ([#164](#164)) ([b8b96bd](b8b96bd)) * **deps:** Update dependency io.grpc:grpc-testing to v1.60.1 ([#165](#165)) ([f889c39](f889c39)) * **deps:** Update dependency nl.jqno.equalsverifier:equalsverifier to v3.15.5 ([#161](#161)) ([9057cdf](9057cdf)) * **deps:** Update dependency org.assertj:assertj-core to v3.25.0 ([#166](#166)) ([54dc63f](54dc63f)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.57.2->1.60.1Release Notes
grpc/grpc-java (io.grpc:grpc-testing)
v1.60.1Bug Fixes
v1.60.0API Changes
ForwardingServerBuilder,ForwardingChannelBuilder2, andForwardingChannelBuilder. Note thatForwardingChannelBuilderis stabilized (no changes will be made to it), but immediately deprecated in favor ofForwardingChannelBuilder2. (#10586)ForwardingChannelBuilder.delegate(). De facto this deprecates the class itself, since all classes extendingForwardingChannelBuilderimplement thedelegate()method. See javadoc for details (#10587)LoadBalancer.acceptResolvedAddresses()to returnStatusinstead ofboolean(#10636). This is part of continued work to align the LB API cross-language and API stabilizationForwardingChannelBuilder2(#10587)ProtoUtils.metadataMarshaller()(#10628)Behavior Changes
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 occursStatus.UNKNOWNreturned to the client will haveApplication error processing RPCdescription. 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)Improvements
Http2Headers.isEmpty(). This fixes compatibility with Netty 4.1.101.Final.NettyServerBuilder.maxRstFramesPerWindow(). This can be used to limit impact of Rapid ResetBug Fixes
Dependencies
Acknowledgements
@anthonyjpratti
@fedorka
@jpd236
@mateusazis
@pkoenig10
@yannickepstein
@amirhadadi
v1.59.1Http2Headers.isEmpty(). This fixes compatibility with Netty 4.1.101.Final.NettyServerBuilder.maxRstFramesPerWindow(). This can be used to limit impact of Rapid Resetv1.59.0gRPC Java 1.59.0 Release Notes
PLANNED ABI BREAKAGE!
This breaks the ABI of the
@ExperimentalApiclasses 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.0may need to recompile when upgrading to grpc-javav1.59.0.See details in #10406.
Affected classes
Class
io.grpc.internal.AbstractManagedChannelImplBuilderis deleted, and no longer in the class hierarchy of the channel builders:io.grpc.netty.NettyChannelBuilderio.grpc.okhttp.OkhttpChannelBuilderio.grpc.cronet.CronetChannelBuilderClass
io.grpc.internal.AbstractServerImplBuilderis deleted, and no longer in the class hierarchy of the server builders:io.grpc.netty.NettyServerBuilderio.grpc.inprocess.InProcessServerBuilderAPI Changes
AbstractManagedChannelImplBuilderandAbstractServerImplBuilderare removed (#10530). This is ABI-breaking, see the warning above. (#10406)v1.36.0to ease removal of internal ABIs. (#10406)ForwardingChannelBuilder2, an ABI-safe version ofForwardingChannelBuilder, which will be deprecated in the following release. (#10585, #10406)LoadBalancer.FixedResultPickerconvenience class for load balancer implementations. It is a replacement forErrorPickerandEMPTY_PICKERadded in 1.58.0Behavior Changes
Improvements
Bug Fixes
Documentation
Dependencies
Acknowledgements
John Cormie (@jdcormie)
Stephane Landelle (@slandelle)
@kotlaja
v1.58.1v1.58.0API Changes
ServerCall#setMessageCompression()andPartialForwardingServerCall#setMessageCompression()(#10393)ProtoUtils.setExtensionRegistry()andProtoLiteUtils.setExtensionRegistry()(#10392)GrpcCleanupRule,GrpcServerRule(#10494)Behavior Changes
Improvements
Grpc.newServerBuilderForPort(). At present, Netty always has higher priority than OkHttp, if they are both available, becauseServerBuilder.forPort()is not supported in the OkHttp transport but is supported in the Netty transportBug Fixes
NoSuchMethodErrorforByteBuffermethods present in 1.57.0 (#10441)Dependencies
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
Configuration
📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), 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.
This PR has been generated by Renovate Bot.