Releases: connectrpc/grpcreflect-go
v1.3.0
What's Changed
Enhancements
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
- @emcfarlane made their first contribution in #64
- @Tiscs made their first contribution in #65
Full Changelog: v1.2.0...v1.3.0
v1.2.0
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
What's Changed
Enhancements
- Add
grpcreflect.Client
by @jhump in https://github.com/bufbuild/connect-grpcreflect-go/pull/42
Bugfixes
- Expose health and server reflection services by @jhump in https://github.com/bufbuild/connect-grpcreflect-go/pull/49
- Handle types without extensions correctly by @2yanpath in https://github.com/bufbuild/connect-grpcreflect-go/pull/52
New Contributors
- @jhump made their first contribution in https://github.com/bufbuild/connect-grpcreflect-go/pull/42
- @2yanpath made their first contribution in https://github.com/bufbuild/connect-grpcreflect-go/pull/52
Full Changelog: bufbuild/connect-grpcreflect-go@v1.0.0...v1.1.0
v1.0.0
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
- @rubensf made their first contribution in https://github.com/bufbuild/connect-grpcreflect-go/pull/21
- @pkwarren made their first contribution in https://github.com/bufbuild/connect-grpcreflect-go/pull/22
Full Changelog: bufbuild/connect-grpcreflect-go@v0.1.0...v1.0.0
v0.1.0
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
- @akshayjshah made their first contribution in bufbuild#1
- @bufdev made their first contribution in https://github.com/bufbuild/connect-grpcreflect-go/pull/4
- @buildbreaker made their first contribution in https://github.com/bufbuild/connect-grpcreflect-go/pull/10
Full Changelog: https://github.com/bufbuild/connect-grpcreflect-go/commits/v0.1.0