From 25a527fdcbf52028cc348ee25cbfedd4523d898f Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Wed, 6 Mar 2024 11:32:06 +0900 Subject: [PATCH 1/2] v1.16.4 Signed-off-by: Kentaro Hayashi --- CHANGELOG.md | 12 ++++++++++++ lib/fluent/version.rb | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e44d3b798..b3afa020e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # v1.16 +## Release v1.16.4 - 2024/03/14 + +### Bug Fix + +* Fix to avoid processing discarded chunks in write_step_by_step. + It fixes not to raise pile of IOError when many `chunk + bytes limit exceeds` errors are occurred + https://github.com/fluent/fluentd/pull/4327 +* in_tail: Manage tail watchers that are `rorate_wait` state too. + https://github.com/fluent/fluentd/pull/4334 + e.g. It fixes an error which was caused by unmanaged tail watchers on shutdown. + ## Release v1.16.3 - 2023/11/14 ### Bug Fix diff --git a/lib/fluent/version.rb b/lib/fluent/version.rb index a84ee72e22..584e7ded31 100644 --- a/lib/fluent/version.rb +++ b/lib/fluent/version.rb @@ -16,6 +16,6 @@ module Fluent - VERSION = '1.16.3' + VERSION = '1.16.4' end From de72d8c7d19093057219a8ef76920c7587d79f5e Mon Sep 17 00:00:00 2001 From: Daijiro Fukuda Date: Mon, 11 Mar 2024 17:27:59 +0900 Subject: [PATCH 2/2] v1.16.4: Update CHANGELOG Signed-off-by: Daijiro Fukuda --- CHANGELOG.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3afa020e9..fc6be3a818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,15 @@ * Fix to avoid processing discarded chunks in write_step_by_step. It fixes not to raise pile of IOError when many `chunk - bytes limit exceeds` errors are occurred - https://github.com/fluent/fluentd/pull/4327 -* in_tail: Manage tail watchers that are `rorate_wait` state too. + bytes limit exceeds` errors are occurred. + https://github.com/fluent/fluentd/pull/4342 +* in_tail: Fix tail watchers in `rotate_wait` state not being managed. https://github.com/fluent/fluentd/pull/4334 - e.g. It fixes an error which was caused by unmanaged tail watchers on shutdown. + +### Misc + +* buffer: Avoid unnecessary log processing. It will improve performance. + https://github.com/fluent/fluentd/pull/4331 ## Release v1.16.3 - 2023/11/14