Releases: grpc/grpc-java
v1.60.0
API Changes
- api: Stabilize
ForwardingServerBuilder
,ForwardingChannelBuilder2
, andForwardingChannelBuilder
. Note thatForwardingChannelBuilder
is stabilized (no changes will be made to it), but immediately deprecated in favor ofForwardingChannelBuilder2
. (#10586) - api: Deprecate
ForwardingChannelBuilder.delegate()
. De facto this deprecates the class itself, since all classes extendingForwardingChannelBuilder
implement thedelegate()
method. See javadoc for details (#10587) - api: Changed recently-introduced
LoadBalancer.acceptResolvedAddresses()
to returnStatus
instead ofboolean
(#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:
ManagedChannel
s 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 haveApplication 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
andAbstractServerImplBuilder
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 ofForwardingChannelBuilder
, which will be deprecated in the following release. (#10585, #10406) - api: Add
LoadBalancer.FixedResultPicker
convenience class for load balancer implementations. It is a replacement forErrorPicker
andEMPTY_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.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()
andPartialForwardingServerCall#setMessageCompression()
(#10393) - protobuf: Stabilize
ProtoUtils.setExtensionRegistry()
andProtoLiteUtils.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)
- api, xds: Enabled pick first by default (
GRPC_EXPERIMENTAL_PICKFIRST_LB_CONFIG
env variable is true by default now) for xds leaf LB policy (#10475)
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)
- stub: When using BlockingServerStream, in some cases the request will be sent to the server when the RPC is created where previously it always waited until
next()
orhasNext()
had been called to send the request.
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, becauseServerBuilder.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
forByteBuffer
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
v1.57.2
v1.57.1
Bug fixes
- Fix compatibility with Java 8. This fixes the
NoSuchMethodError
forByteBuffer
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)
v1.57.0
gRPC Java 1.57.0 Release Notes
This release accidentally broke Java 8: NoSuchMethodError
for some ByteBuffer methods. The issue is tracked in #10432 and fixed in 1.57.1.
API Changes
- Use fully qualified java.lang.String in all cases in generated code. This fixes compilation if a protobuf message is named “String”.
- Stabilize io.grpc.Status.asRuntimeException(Metadata) and trailersFromThrowable
- Stabilize io.grpc.ManagedChannelBuilder.useTransportSecurity (#10244)
- Stabilize io.grpc.util.MutableHandlerRegistry (#10348)
Behavior Changes
- api: CheckedForwardingClientCall now passes trailers from the caught exception
- context, api: Package io.grpc is now consolidated into a single artifact grpc-api by moving classes from grpc-context to grpc-api. grpc-context now has a dependency on grpc-api (but excludes other dependencies of grpc-api) so any application previously using only grpc-context will now also bring in grpc-api. This fixes #3522 which was the major issue preventing support of Java modules. We are not done fixing support, as some artifacts need to be split and Automatic-Module-Name needs to be added. The next release is likely to be more stable for modules.
- core: Change delay for hedging retry after a non-fatal error to be 0 to match the gRFC (A6).
- core: Wrap other name resolver types in a RetryingNameResolver . Previously, if authority was not overridden, then some name resolvers (such as grpclb) had no retry.
- xds: Handle loops and duplicates in xds Aggregate clusters
- xds: require EDS service name in CDS resources with an xdstp name
- xds: Use Rule order instead of RuleChain
- xds: Environment variable "GRPC_XDS_EXPERIMENTAL_SECURITY_SUPPORT" is no longer respected, so xDS security cannot be disabled any more (#10243)
New Features
- binder: Add
UserHandle
andBinderChannelCredentials
to support cross-user communication (#10197) - xds,orca: LRS named metrics support
Improvements
- core: Resolve isAndroid only once on class loading. This can improve channel creation performance on Android.
- xds: Pick a subchannel with new static stride scheduler in WeightedRoundRobinLoadBalancer
Bug Fixes
- xds: Fix the server sending a GOAWAY when an LDS update with no changes other than ordering is received.
- netty: Fix NPE when a header with errors is received with endStream=true. This was causing logs to be filled with errors when health checkers didn’t specify a content type.
- okhttp: Fix the Socket data race when shutdown/closed during connecting that was causing a significant delay
Dependencies
- Upgraded Netty to 4.1.93-Final
- Update guava dependency to 32.0.1 to address CVE-2023-2976
Acknowledgements
- Benjamin Peterson
- Masakuni Oishi
- Philip K. Warren
- Stephane Landelle
v1.56.1
Bug fixes
- core: Fix regression in 1.54.0 where polling NameResolvers would not refresh after a resolution error (#10328). The symptom is a transient failure like "UNAVAILABLE: Unable to resolve host" continuing potentially forever. This did not impact DnsNameResolver, but it did impacted GrpclbNameResolver which is the dns name resolver used when
grpc-grpclb
is in the classpath. So even users that think "I don't use grpclb" may have been impacted.round_robin
is mainly impacted on startup, but if the error happened afterward it would commonly fix itself for short transient DNS failures.pick_first
is impacted at all times; any failed DNS resolution could cause all future RPCs on the channel to fail.
v1.55.3
Bug fixes
- core: Fix regression in 1.54.0 where polling NameResolvers would not refresh after a resolution error (#10328). The symptom is a transient failure like "UNAVAILABLE: Unable to resolve host" continuing potentially forever. This did not impact DnsNameResolver, but it did impacted GrpclbNameResolver which is the dns name resolver used when
grpc-grpclb
is in the classpath. So even users that think "I don't use grpclb" may have been impacted.round_robin
is mainly impacted on startup, but if the error happened afterward it would commonly fix itself for short transient DNS failures.pick_first
is impacted at all times; any failed DNS resolution could cause all future RPCs on the channel to fail.
v1.54.2
Bug Fixes
- core: Fix regression in 1.54.0 where polling NameResolvers would not refresh after a resolution error (#10328). The symptom is a transient failure like "UNAVAILABLE: Unable to resolve host" continuing potentially forever. This did not impact DnsNameResolver, but it did impacted GrpclbNameResolver which is the dns name resolver used when grpc-grpclb is in the classpath. So even users that think "I don't use grpclb" may have been impacted. round_robin is mainly impacted on startup, but if the error happened afterward it would commonly fix itself for short transient DNS failures. pick_first is impacted at all times; any failed DNS resolution could cause all future RPCs on the channel to fail.
- xds: Avoid using the default locale for case insensitive path matching (#10149)
- xds: Avoid potential channel panic when control plane changes the field used to configure load balancing (#10103)
- core: Allow transparent retries after a retry attempt and the configured max retries was 1 (#10080)