What's Changed
This is the first release of grpcreflect
in the connectrpc
GitHub organization. The import path has changed to connectrpc.com/grpcreflect
.
All previous releases are available under the new import path. The code for these releases is bug-for-bug identical to the code for github.com/bufbuild/connect-grpcreflect-go
.
To migrate to the new import path, a shell script is usually sufficient:
# On Linux, or anywhere with GNU sed
find . -name "*.go" -exec sed -i 's|github.com/bufbuild/connect-grpcreflect-go|connectrpc.com/grpcreflect|g' {} \;
# On Mac, or anywhere with BSD sed
find . -name "*.go" -exec sed -i '' 's|github.com/bufbuild/connect-grpcreflect-go|connectrpc.com/grpcreflect|g' {} \;
# And then
go get connectrpc.com/grpcreflect@latest
go mod tidy
We apologize for any inconvenience that this rename causes. We're doing this to prepare Connect for donation to a foundation, which will put it on a better footing for long-term maintenance by multiple stakeholders.
If you encounter any problems or have questions, please reach out to us by filing an issue or joining #connectrpc
in the Gophers Slack.
Full Changelog: v1.1.0...v1.2.0