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
This commit was created on github.com and signed with GitHub’s verified signature.
The key has expired.
API Changes
This release adds an xDS URI scheme called xds. This is the stable version of the scheme xds-experimental that was introduced in v1.28.0. xds-experimental scheme will be removed in subsequent releases so you must switch to xds scheme instead. xds scheme is a client side implementation of xDSv2 APIs. This allows a gRPC client written in Go to receive configuration from an xDSv2 API compatible server and use that configuration to load balance RPCs. In this release, only the virtual host matching, default path (“” or “/”) matching and cluster route action are supported. The features supported in a given release are documented here.
balancer: move Balancer and Picker to V2; delete legacy API (#3180, #3431)
Replace balancer.Balancer and balancer.Picker with the V2Balancer and V2Picker versions.
Remove balancer.ClientConn.UpdateBalancerState.
Remove the original balancer plugin API, based on grpc.Balancer, and all related functionality.
Remove the deprecated naming package.
Behavior Changes
grpclb, dns: pass balancer addresses via resolver.State (#3614)
New Features
balancer: support hierarchical paths in addresses (#3494)
client: option to surface connection errors to callers (#3430)