Releases: connectrpc/grpchealth-go
v1.3.0
What's Changed
Enhancements
- Make
Status
implementfmt.Stringer
by @VoyTechnology in #58
Other changes
- Miscellaneous documentation and CI improvements by @akshayjshah, @smallsamantha, @rubensf, and @emcfarlane
New Contributors
- @smallsamantha made their first contribution in #59
- @emcfarlane made their first contribution in #62
- @VoyTechnology made their first contribution in #58
Full Changelog: v1.2.0...v1.3.0
v1.2.0
What's Changed
This is the first release of grpchealth
in the connectrpc
GitHub organization. The import path has changed to connectrpc.com/grpchealth
.
With one exception, 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-grpchealth-go
. Unfortunately, v1.1.1 was poisoned in the global module cache and checksum database; that release is now retracted, and v1.1.2 is available as a substitute.
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-grpchealth-go|connectrpc.com/grpchealth|g' {} \;
# On Mac, or anywhere with BSD sed
find . -name "*.go" -exec sed -i '' 's|github.com/bufbuild/connect-grpchealth-go|connectrpc.com/grpchealth|g' {} \;
# And then
go get connectrpc.com/grpchealth@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.2...v1.2.0
v1.1.2
v1.1.1
🚨 NOTICE: 🚨 This version has been retracted due to a corruption in the global module cache. Use v1.1.2 instead.
What's Changed
Bugfixes
- Fix GoDoc const grouping by @akshayjshah in https://github.com/bufbuild/connect-grpchealth-go/pull/50
Full Changelog: bufbuild/connect-grpchealth-go@v1.1.0...v1.1.1
v1.1.0
What's Changed
Enchancements
- Export service name constant, for use with reflection by @jhump in https://github.com/bufbuild/connect-grpchealth-go/pull/47
Other changes
- Update dependencies & Go by @akshayjshah in https://github.com/bufbuild/connect-grpchealth-go/pull/48
New Contributors
- @jhump made their first contribution in https://github.com/bufbuild/connect-grpchealth-go/pull/46
Full Changelog: bufbuild/connect-grpchealth-go@v1.0.0...v1.1.0
v1.0.0
What's Changed
This is connect-grpchealth-go
's first stable release! 🎉
We follow semantic versioning carefully, and won't make breaking changes in the 1.x series of releases.
Enhancements
- Add SetStatus to StaticChecker by @akshayjshah in https://github.com/bufbuild/connect-grpchealth-go/pull/28
New Contributors
- @rubensf made their first contribution in https://github.com/bufbuild/connect-grpchealth-go/pull/21
- @pkwarren made their first contribution in https://github.com/bufbuild/connect-grpchealth-go/pull/22
Full Changelog: bufbuild/connect-grpchealth-go@v0.1.0...v1.0.0
v0.1.0
What's Changed
This is the first public release of connect-grpchealth-go
🎉 It adds support for gRPC's health-checking 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-grpchealth-go/pull/4
- @buildbreaker made their first contribution in https://github.com/bufbuild/connect-grpchealth-go/pull/10
Full Changelog: https://github.com/bufbuild/connect-grpchealth-go/commits/v0.1.0