v1.14.0
"github.com/jhump/protoreflect/dynamic"
Changes/fixes:
- If converting or merging a generated message into a
*dynamic.Message
, if the generated message contained dynamic extensions (extension fields not known to the Protobuf runtime's global registry), they would be lost during the conversion. This has been fixed.
"github.com/jhump/protoreflect/grpcreflect"
Additions:
- Adds a new
grpcreflect.NewClientAuto
method, which returns a client that will automatically use either the v1 version of server reflection or v1alpha, depending on what the server supports. - Adds a new
grpcreflect.NewClientAlpha
method which is meant to replacegrpcreflect.NewClient
. It always uses the v1alpha version of server reflection (and its predecessor,grpcreflect.NewClient
, is now deprecated since it is unclearly named).