Please let us know if you run into any problems or bugs by filing an issue <https://github.com/grpc/grpc-go/issues/new/choose> in our repo <https://github.com/grpc/grpc-go>.
Full Release Notes <https://github.com/grpc/grpc-go/releases/tag/cmd%2Fprotoc-gen-go-grpc%2Fv1.0.0> : Background This is the first major release of the protoc plugin for generating grpc stubs from the grpc-go repo. The previous version was part of the protoc-gen-go tool at golang/protobuf <https://github.com/golang/protobuf>. With the migration of that tool to google.golang.org/protobuf, grpc support was removed and shifted to this repo. Incompatible change There is one backward-compatibility breaking change in this version of the tool, which can be disabled with a flag at generation time. The Unimplemented<Service>Server struct is now required to be embedded in implementations of the generated <Service>Server interface. This requirement guarantees that backward-compatibility is maintained by the generated code when new methods are added to a service, which is, itself, a backward-compatible operation. To disable this behavior, which is recommended only for producing code compatible with earlier generated code, set the flag require_unimplemented_servers=false. For more details, please see the binary's README.md <https://github.com/grpc/grpc-go/blob/master/cmd/protoc-gen-go-grpc/README.md> -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/grpc-io/CAMTLisJkLzTr%2BDQ%2BaTAmq5FOFAU8CrzHt%3DZ6p6csKBTfW0z8%2Bw%40mail.gmail.com.
