From 10afa002c2e4a8ebe408c8ea5414ad8328182b4b Mon Sep 17 00:00:00 2001 From: Maciej Mensfeld Date: Tue, 24 Oct 2023 09:07:07 +0200 Subject: [PATCH] v2.6.10 (#404) --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c5d8335..280b9303 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # WaterDrop changelog -## 2.6.10 (Unreleased) +## 2.6.10 (2023-10-24) - [Improvement] Introduce `message.purged` event to indicate that a message that was not delivered to Kafka was purged. This most of the time refers to messages that were part of a transaction and were not yet dispatched to Kafka. It always means, that given message was not delivered but in case of transactions it is expected. In case of non-transactional it usually means `#purge` usage or exceeding `message.timeout.ms` so `librdkafka` removes this message from its internal queue. Non-transactional producers do **not** use this and pipe purges to `error.occurred`. - [Fix] Fix a case where `message.acknowledged` would not have `caller` key. +- [Fix] Fix a bug where critical errors (like `IRB::Abort`) would not abort the ongoing transaction. ## 2.6.9 (2023-10-23) - [Improvement] Introduce a `transaction.finished` event to indicate that transaction has finished whether it was aborted or committed.