diff --git a/changelog.adoc b/changelog.adoc deleted file mode 100644 index e0e9b85..0000000 --- a/changelog.adoc +++ /dev/null @@ -1,28 +0,0 @@ -= KafkaHealthCheck -:icons: font - -== Version 1.3.0 - -* Health check timeouts can now be configured in `java.time.Duration` format. The timeouts can still be configured using - millisecond values (`long`) as well to stay compatible with old configurations. -* Dependency versions are now managed by `spring-boot-dependencies`. - (https://github.com/deviceinsight/kafka-health-check/issues/17[ISSUE-17]) -* As of now, cache metrics can be exposed. For this purpose, a corresponding MeterRegistry instance must be passed - when instantiating the Kafka Health Check. (https://github.com/deviceinsight/kafka-health-check/issues/20[ISSUE-20]) -* The cache size can now be configured via the property `kafka.health.cache.maximum-size`. - The default value for the cache size is 200. (https://github.com/deviceinsight/kafka-health-check/issues/22[ISSUE-22]) -* Filtering messages that do not come from the same instance. - (https://github.com/deviceinsight/kafka-health-check/issues/24[ISSUE-24]) - -== Version 1.2.0 - -* Reduce logging level of health check calls to `TRACE`. - -== Version 1.1.0 - -* Make consumer groups unique by appending a random UUID when no group ID is configured explicitly. -* Refactor health check strategy: Kafka polled continuously. - -== Version 1.0.0 - -* Develop kafka health check diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..9a84bef --- /dev/null +++ b/changelog.md @@ -0,0 +1,29 @@ +# KafkaHealthCheck + +## Version 1.4.0 + +* Got rid of `subscriptionTimeout` as a redundant timeout +* Changed maven group publication: switched into `me.bvn13.kafka.health` + +## Version 1.3.0 + +* Health check timeouts can now be configured in `java.time.Duration` format. The timeouts can still be configured using + millisecond values (`long`) as well to stay compatible with old configurations. +* Dependency versions are now managed by `spring-boot-dependencies`. [ISSUE-17](https://github.com/deviceinsight/kafka-health-check/issues/17) +* As of now, cache metrics can be exposed. For this purpose, a corresponding MeterRegistry instance must be passed + when instantiating the Kafka Health Check. [ISSUE-20](https://github.com/deviceinsight/kafka-health-check/issues/20) +* The cache size can now be configured via the property `kafka.health.cache.maximum-size`. The default value for the cache size is 200. [ISSUE-22](https://github.com/deviceinsight/kafka-health-check/issues/22) +* Filtering messages that do not come from the same instance. [ISSUE-24](https://github.com/deviceinsight/kafka-health-check/issues/24) + +## Version 1.2.0 + +* Reduce logging level of health check calls to `TRACE`. + +## Version 1.1.0 + +* Make consumer groups unique by appending a random UUID when no group ID is configured explicitly. +* Refactor health check strategy: Kafka polled continuously. + +## Version 1.0.0 + +* Develop kafka health check diff --git a/pom.xml b/pom.xml index f4daead..cd5951c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ me.bvn13.kafka.health kafka-health-check - 1.5.0-SNAPSHOT + 1.4.2-SNAPSHOT jar Kafka Health Check