Skip to content

Releases: connectrpc/grpchealth-go

v1.3.0

03 Oct 20:43
3e1b33f
Compare
Choose a tag to compare

What's Changed

Enhancements

Other changes

New Contributors

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

v1.2.0

26 Jul 21:29
Compare
Choose a tag to compare

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

26 Jul 21:38
Compare
Choose a tag to compare

This release is identical to v1.1.1. This version exists only to replace v1.1.1, which had to be retracted due to corruption in the global module cache.

v1.1.1

12 Jun 16:48
Compare
Choose a tag to compare

🚨 NOTICE: 🚨 This version has been retracted due to a corruption in the global module cache. Use v1.1.2 instead.


What's Changed

Bugfixes

Full Changelog: bufbuild/connect-grpchealth-go@v1.1.0...v1.1.1

v1.1.0

15 May 22:39
Compare
Choose a tag to compare

What's Changed

Enchancements

Other changes

New Contributors

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

v1.0.0

04 Oct 20:21
Compare
Choose a tag to compare

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

New Contributors

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

v0.1.0

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

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

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