PackageTrack
Sign in Get early access

github.com/alexliesenfeld/health

v0.8.1 alexliesenfeld/health

What this package is like to depend on

Last release 2 months ago

15 Jun 2026

Release timing varies

gaps range from 2 weeks to 12 months

Some releases are documented

notes for 6 of 17 stable releases

Nothing withdrawn

no release was ever pulled

5 years old

64 releases · first in 2021

2 releases in the last 12 months

see the full history below

Release timeline

64 releases · Jul 2021 to Jun 2026
2022 2023 2024 2025 2026
Release Pre-release

Releases

latest 60 of 64
  1. v0.8.2-0.20260615132245-10af2e791738 15 Jun 2026 pre-release

    Nothing published for this version

  2. v0.8.2-0.20250627062619-87f825d349bf 27 Jun 2025 pre-release

    Nothing published for this version

  3. v0.8.2-0.20250621092545-f3b4dc9e9708 21 Jun 2025 pre-release

    Nothing published for this version

  4. v0.8.1 21 Jun 2025
    Release notes

    Improvements

    • This release contains a memory leak fix (see #91)
    Open source →
    Release notes

    Improvements

    Open source →
  5. v0.8.1-0.20250323104556-051c79dcdc1d 23 Mar 2025 pre-release

    Nothing published for this version

  6. v0.8.1-0.20250225075533-4c9a5cd9043f 25 Feb 2025 pre-release

    Nothing published for this version

  7. v0.8.1-0.20240926185718-299095537bea 26 Sep 2024 pre-release

    Nothing published for this version

  8. v0.8.1-0.20240926162306-3005c45f3901 26 Sep 2024 pre-release

    Nothing published for this version

  9. v0.8.0 17 Oct 2023
    Release notes

    Breaking Changes

    Open source →
    Release notes

    Breaking Changes

    Open source →
  10. v0.7.1-0.20231017200706-a13c01541653 17 Oct 2023 pre-release

    Nothing published for this version

  11. v0.7.1-0.20230914214218-edb0c9721423 14 Sep 2023 pre-release

    Nothing published for this version

  12. v0.7.1-0.20230718221750-7e10f63ff7c0 18 Jul 2023 pre-release

    Nothing published for this version

  13. v0.7.1-0.20230509202302-945df512d612 09 May 2023 pre-release

    Nothing published for this version

  14. v0.7.0 01 May 2023
    Release notes

    Breaking Changes

    • This version introduces automatic recovery from panics that can be turned off on a per-check basis like shown in the showcase example.

    Improvements

    • The initial check run that is executed on startup is non-blocking anymore.
    • A bug has been fixed that could cause goroutine leaks for timed out check functions.
    Open source →
    Release notes

    Breaking Changes

    • This version introduces automatic recovery from panics that can be turned off on a per-check basis like shown in the showcase example.
    • A bug has been fixed that could cause goroutine leaks for timed out check functions.

    Improvements

    • The initial check run that is executed on startup is non-blocking anymore.
    Open source →
  15. v0.7.0-beta.2 26 Oct 2022 pre-release
    Release notes

    Breaking Changes

    • This version introduces automatic recovery from panics that can be turned off on a per-check basis like shown in the showcase example.

    Improvements

    • The initial check run that is executed on startup is not blocking service startup anymore when a health check function is slow.
    Open source →
  16. v0.7.0-beta.1.0.20221026045658-09f6eabefbfd 26 Oct 2022 pre-release

    Nothing published for this version

  17. v0.7.0-beta.1 24 Oct 2022 pre-release
    Release notes

    Breaking Changes

    • This version introduces automatic recovery from panics that can be turned off on a per-check basis like shown in the showcase example.
    Open source →
  18. v0.6.1-0.20221031180652-6e81c0642167 31 Oct 2022 pre-release

    Nothing published for this version

  19. v0.6.1-0.20221024212208-b60ff948837c 24 Oct 2022 pre-release

    Nothing published for this version

  20. v0.6.1-0.20221024211304-1fcc4c7599ea 24 Oct 2022 pre-release

    Nothing published for this version

  21. v0.6.1-0.20221010221252-df436b70e9fb 10 Oct 2022 pre-release

    Nothing published for this version

  22. v0.6.1-0.20221010215524-0cc0d44f7be6 10 Oct 2022 pre-release

    Nothing published for this version

  23. v0.6.1-0.20211210201107-27bb0b9c354f 10 Dec 2021 pre-release

    Nothing published for this version

  24. v0.6.0 09 Aug 2021
    Release notes

    Breaking Changes

    Improvements

    • Stopping the Checker does not wait until the initial delay of periodic checks has passed anymore. Checker.Stop stops the Checker immediately, but waits until all currently running check functions have completed.
    • The health check http.Handler was patched to not include an empty checks map in the JSON response. In case no check functions are defined, the JSON response will therefore not be { "status": "up", "checks" : {} } anymore but only { "status": "up" }.
    • A Kubernetes liveness and readiness checks example was added (see examples/kubernetes).
    Open source →
    Release notes

    Breaking Changes

    Improvements

    • Stopping the Checker does not wait until the initial delay of periodic checks has passed anymore. Checker.Stop stops the Checker immediately, but waits until all currently running check functions have completed.
    • The health check http.Handler was patched to not include an empty checks map in the JSON response. In case no check functions are defined, the JSON response will therefore not be { "status": "up", "checks" : {} } anymore but only { "status": "up" }.
    • A Kubernetes liveness and readiness checks example was added (see examples/kubernetes).
    Open source →
  25. v0.5.1 27 Jul 2021
    Release notes

    Documentation improvements.

    Open source →
    Release notes
    • Many documentation improvements
    Open source →
  26. v0.5.0 26 Jul 2021
    Release notes
    • BREAKING CHANGE: Changed function signature of middleware functions.
    • Added a new check function interceptor and a http.Handler middleware with basic logging functionality.
    • Added a new basic authentication middleware that reduces the exposed health information in case of failed authentication.
    • Added a new middleware FullDetailsOnQueryParam was added that hides details by default and only shows them when a configured query parameter name was provided in the HTTP request.
    • Added new Checker configuration option WithInterceptors, that will be applied to every check function.
    Open source →
    Release notes
    • BREAKING CHANGE: Changed function signature of middleware functions.
    • Added a new check function interceptor and a http.Handler middleware with basic logging functionality.
    • Added a new basic authentication middleware that reduces the exposed health information in case of failed authentication.
    • Added a new middleware FullDetailsOnQueryParam was added that hides details by default and only shows them when a configured query parameter name was provided in the HTTP request.
    • Added new Checker configuration option WithInterceptors, that will be applied to every check function.
    Open source →
  27. v0.4.0 24 Jul 2021

    Nothing published for this version

  28. v0.4.0-beta.2 23 Jul 2021 pre-release

    Nothing published for this version

  29. v0.4.0-beta.1.0.20210723225205-72e38995208a 23 Jul 2021 pre-release

    Nothing published for this version

  30. v0.4.0-beta.1 22 Jul 2021 pre-release

    Nothing published for this version

  31. v0.3.3-0.20210722220048-4304086b14d9 22 Jul 2021 pre-release

    Nothing published for this version

  32. v0.3.3-0.20210719173726-51bad652b39b 19 Jul 2021 pre-release

    Nothing published for this version

  33. v0.3.3-0.20210718235659-3cc965be31da 18 Jul 2021 pre-release

    Nothing published for this version

  34. v0.3.2 18 Jul 2021

    Nothing published for this version

  35. v0.3.2-0.20210718230814-e227230b60c4 18 Jul 2021 pre-release

    Nothing published for this version

  36. v0.3.1 18 Jul 2021

    Nothing published for this version

  37. v0.3.0 18 Jul 2021

    Nothing published for this version

  38. v0.3.0-beta.3 18 Jul 2021 pre-release

    Nothing published for this version

  39. v0.3.0-beta.2.0.20210718193934-3da08047d8f3 18 Jul 2021 pre-release

    Nothing published for this version

  40. v0.3.0-beta.2 16 Jul 2021 pre-release

    Nothing published for this version

  41. v0.3.0-beta.1.0.20210716191035-a725b301bf33 16 Jul 2021 pre-release

    Nothing published for this version

  42. v0.3.0-beta.1 15 Jul 2021 pre-release

    Nothing published for this version

  43. v0.2.6-0.20210716100751-83185d7ba489 16 Jul 2021 pre-release

    Nothing published for this version

  44. v0.2.6-0.20210715222354-39c698eac61d 15 Jul 2021 pre-release

    Nothing published for this version

  45. v0.2.6-0.20210715164248-86ed471599c3 15 Jul 2021 pre-release

    Nothing published for this version

  46. v0.2.6-0.20210710053519-a0baa40fd461 10 Jul 2021 pre-release

    Nothing published for this version

  47. v0.2.5 10 Jul 2021

    Nothing published for this version

  48. v0.2.5-0.20210709211210-49d03899167e 09 Jul 2021 pre-release

    Nothing published for this version

  49. v0.2.5-0.20210709205030-736cb93d19ff 09 Jul 2021 pre-release

    Nothing published for this version

  50. v0.2.4 09 Jul 2021

    Nothing published for this version

  51. v0.2.3 09 Jul 2021

    Nothing published for this version

  52. v0.2.2 09 Jul 2021

    Nothing published for this version

  53. v0.2.1 09 Jul 2021

    Nothing published for this version

  54. v0.2.0 09 Jul 2021

    Nothing published for this version

  55. v0.1.0 08 Jul 2021

    Nothing published for this version

  56. v0.0.0-20260615132245-10af2e791738 15 Jun 2026 pre-release

    Nothing published for this version

  57. v0.0.0-20250627062619-87f825d349bf 27 Jun 2025 pre-release

    Nothing published for this version

  58. v0.0.0-20240926185718-299095537bea 26 Sep 2024 pre-release

    Nothing published for this version

  59. v0.0.0-20231017200706-a13c01541653 17 Oct 2023 pre-release

    Nothing published for this version

  60. v0.0.0-20221026045658-09f6eabefbfd 26 Oct 2022 pre-release

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive