Skip to content

Releases: connectrpc/grpcreflect-go

v1.3.0

17 Jan 17:22
1715b7b
Compare
Choose a tag to compare

What's Changed

Enhancements

  • Add NamerFunc to allow ordinary functions as Namer by @Tiscs in #65

Bugfixes

  • Don't send placeholder files; fix caching of sent files to properly cache by file path instead of package name by @jhump in #66

New Contributors

Full Changelog: v1.2.0...v1.3.0

v1.2.0

26 Jul 22:19
Compare
Choose a tag to compare

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

v1.1.0

22 May 16:20
Compare
Choose a tag to compare

What's Changed

Enhancements

Bugfixes

New Contributors

Full Changelog: bufbuild/connect-grpcreflect-go@v1.0.0...v1.1.0

v1.0.0

04 Oct 19:26
Compare
Choose a tag to compare

What's Changed

This is connect-grpcreflect-go's first stable release! 🎉 It doesn't contain any user-facing changes.

We follow semantic versioning carefully, and won't make breaking changes in the 1.x series of releases.

New Contributors

Full Changelog: bufbuild/connect-grpcreflect-go@v0.1.0...v1.0.0

v0.1.0

01 Jun 03:05
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

What's Changed

This is the first public release of connect-grpcreflect-go 🤩 It adds support for gRPC's server reflection protocol to any net/http server, including those built with connect-go. See the announcement blog post and the docs for more details.

New Contributors

Full Changelog: https://github.com/bufbuild/connect-grpcreflect-go/commits/v0.1.0