Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.14.1 #3516

Merged
merged 1 commit into from
Sep 29, 2021
Merged

v1.14.1 #3516

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# v1.14.1

## Release v1.14.1 - 2021/09/29

### Enhancement

* in_tail: Added file related metrics.
These metrics should be collected same as fluent-bit's in_tail.
https://github.com/fluent/fluentd/pull/3504
* out_forward: Changed to use metrics mechanism for node statistics
https://github.com/fluent/fluentd/pull/3506

### Bug fix

* in_tail: Fixed a crash bug that it raise undefined method of eof? error.
This error may happen only when `read_bytes_limit_per_second` was specified.
https://github.com/fluent/fluentd/pull/3500
* out_forward: Fixed a bug that node statistics information is not included correctly.
https://github.com/fluent/fluentd/pull/3503
https://github.com/fluent/fluentd/pull/3507
* Fixed a error when using `@include` directive
It was occurred when http/https scheme URI is used in `@include` directive with Ruby 3.
https://github.com/fluent/fluentd/pull/3517
* out_copy: Fixed to suppress a wrong warning for `ignore_if_prev_success`
It didn't work even if a user set it.
https://github.com/fluent/fluentd/pull/3515
* Fixed not to output nanoseconds field of next retry time in warning log
Then, inappropriate labels in log are also fixed. (retry_time -> retry_times,
next_retry_seconds -> next_retry_time)
https://github.com/fluent/fluentd/pull/3518

# v1.14.0

## Release v1.14.0 - 2021/08/30
Expand Down
2 changes: 1 addition & 1 deletion lib/fluent/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@

module Fluent

VERSION = '1.14.0'
VERSION = '1.14.1'

end