diff --git a/CHANGELOG.md b/CHANGELOG.md index f92a218faa..a661d82de2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +# v1.14.3 + +## Release v1.14.3 - 2021/11/26 + +### Enhancement + +* Changed to accept `http_parser.rb` 0.8.0. + `http_parser.rb` 0.8.0 is ready for Ractor. + https://github.com/fluent/fluentd/pull/3544 + +### Bug fix + +* in_tail: Fixed a bug that no new logs are read when + `enable_stat_watcher true` and `enable_watch_timer false` is set. + https://github.com/fluent/fluentd/pull/3541 +* in_tail: Fixed a bug that the beginning and initial lines are lost + after startup when `read_from_head false` and path includes wildcard '*'. + https://github.com/fluent/fluentd/pull/3542 +* Fixed a bug that processing messages were lost when + BufferChunkOverflowError was thrown even though only a specific + message size exceeds chunk_limit_size. + https://github.com/fluent/fluentd/pull/3553 + https://github.com/fluent/fluentd/pull/3562 + +### Misc + +* Bump up required version of `win32-service` gem. + newer version is required to implement additional `fluent-ctl` commands. + https://github.com/fluent/fluentd/pull/3556 + # v1.14.2 ## Release v1.14.2 - 2021/10/29 diff --git a/lib/fluent/version.rb b/lib/fluent/version.rb index 6d38b2a64e..db0ba76b1c 100644 --- a/lib/fluent/version.rb +++ b/lib/fluent/version.rb @@ -16,6 +16,6 @@ module Fluent - VERSION = '1.14.2' + VERSION = '1.14.3' end