v0.5.0
Pre-releaseWhat's Changed
This is the first release of otelconnect
in the connectrpc
GitHub organization. The import path has changed to connectrpc.com/otelconnect
.
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-opentelemetry-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-opentelemetry-go|connectrpc.com/otelconnect|g' {} \;
# On Mac, or anywhere with BSD sed
find . -name "*.go" -exec sed -i '' 's|github.com/bufbuild/connect-opentelemetry-go|connectrpc.com/otelconnect|g' {} \;
# And then
go get connectrpc.com/otelconnect@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: v0.4.0...v0.5.0