Skip to content

Release 1.40.0

Compare
Choose a tag to compare
@menghanl menghanl released this 12 Aug 00:20
· 16 commits to v1.40.x since this release
41e044e

Behavior Changes

  • balancer: client channel no longer connects to idle subchannels that are returned by the pickers; LB policy should call SubConn.Connect instead. (#4579)
    • This change is in line with existing documentation stating the balancer must call Connect on idle SubConns in order for them to connect, and is preparation for an upcoming change that transitions SubConns to the idle state when connections are lost. See https://pkg.go.dev/google.golang.org/grpc/balancer#SubConn for more details.

Bug Fixes

  • transport: fail RPCs without HTTP status 200 (OK), according to the gRPC spec (#4474)
  • binarylog: fail the Write() method if proto marshaling fails (#4582)
  • binarylog: exit the flusher goroutine upon closing the bufferedSink (#4583)

New Features

  • metadata: add Delete method to MD to encapsulate lowercasing (#4549)
  • xds/cds: support logical DNS cluster and aggregated cluster (#4594)
  • stats: add stats.Begin.IsClientStream and IsServerStream to indicate the type of RPC invoked (#4533)

Performance Improvements

  • server: improve performance when multiple interceptors are used (#4524)