Skip to content

Releases: HaydenMeloche/khealth

2.1.1

27 Jul 01:01
adfe2eb
Compare
Choose a tag to compare

Releases bugfix for #2

2.1.0

05 May 03:05
6847a29
Compare
Choose a tag to compare

This release adds support for custom HTTP status codes.

import dev.hayden.KHealth

fun main(args: Array<String>) {
  embeddedServer(Netty, 80) {
    install(KHealth) { 
      successfulCheckStatusCode = HttpStatusCode.Accepted
      unsuccessfulCheckStatusCode = HttpStatusCode.ExpectationFailed
    }
  }.start(wait = true)
}

Full Changelog: 2.0.0...2.1.0

2.0.0

24 Apr 01:46
cf720a7
Compare
Choose a tag to compare

Commit cf720a7 brings support for Ktor 2. Given the differences between Ktor 1 and 2. This commit also signals the end of support for Ktor 1.

This release does not introduce any new features/bug fixes.

Full Changelog: 1.1.0...2.0.0

1.1.0

13 Mar 19:54
cbec8ed
Compare
Choose a tag to compare
  • Added support for wrap allowing users to wrap KHealth endpoint routes. See 8e30ff7 for more details.

Full Changelog: 1.0.0...1.1.0

1.0.0

27 Feb 13:59
3ed2134
Compare
Choose a tag to compare

Initial release of KHealth

Full Changelog: https://github.com/HaydenMeloche/khealth/commits/1.0.0