Releases: HaydenMeloche/khealth
Releases · HaydenMeloche/khealth
3.0.1
What's Changed
- fix scope of test dependency by @bliessens in #3
New Contributors
- @bliessens made their first contribution in #3
Full Changelog: 3.0.0...3.0.1
3.0.0
Support for Ktor 3 and Kotlin 2 is here 🎉
Full Changelog: 2.1.1...3.0.0
2.1.1
2.1.0
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
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
- 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
Initial release of KHealth
Full Changelog: https://github.com/HaydenMeloche/khealth/commits/1.0.0