You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bazel: fixed a regression in v1.21 where java_grpc_library ignored custom java toolchains (#5844)
ALTS connection setup and teardown is more stable, less noisy.
netty: some of the less interesting transport level exceptions are now fine level (#5873)
testing: resource leak is fixed for TestUtils#newSslSocketFactoryForCa
API Changes
protobuf-nano was deleted. The Protobuf project dropped support for nano in favor of javalite, which was causing trouble for gRPC’s development. Users of nano can continue using older grpc-protobuf-nano releases, as it only uses stable API. See gRFC L51.
LoadBalancer API sees a few changes that will help hierarchical implementations:
api: LoadBalancer.Helper and Subchannel is now further non-thread-safe. (#5718)
api: move SubchannelPicker.requestConnection() to LoadBalancer. (#5751)
api: pass Subchannel state updates to SubchannelStateListener rather than LoadBalancer (#5722). Different from the old LoadBalancer#handleSubchannelState(), the new SubchannelStateListener continues to receive updates after LoadBalancer is shutdown. (#5883)
api: Subchannel.requestConnection() will print a warning if called outside of sync-context (#5757). We plan to make it throw eventually.
api: deprecate Helper.updateSubchannelAddresses() and add equivalent on Subchannel (#5802)
netty,okhttp: The experimental and long-deprecated enableKeepAlive API was removed from the transport channel builders (#5795). Setting the keep alive settings individually is still available and is stable API. The removed API was actively causing user issues because its defaults were too aggressive for the server’s defaults.
api: new method for removing values from Attributes.
core: some of the open census tags (method, status tags) are no longer propagated. This may break users who depends on the behavior that these tags propagate through process boundaries. (#5689)
New Features
api: add getters for NameResolver.Args and NameResolverRegistry in LoadBalancer.Helper (#5685) (We are considering deleting getNameResolverRegistry() in the near future. Please reach out to us if you want to keep it).
netty: can log the stages of connecting (client side only), such as TLS.
Added perfmark annotations to RPCs for local tracing.
Documentation
examples: use test certs for running example-tls (#5763)