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

Add v1.17.1 #4593

Merged
merged 1 commit into from
Aug 19, 2024
Merged
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
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,51 @@
# v1.17

## Release v1.17.1 - 2024/08/19

### Enhancement

* yaml_parser: Support $log_level element
https://github.com/fluent/fluentd/pull/4482
* out_file: Add warn message for symlink_path setting
https://github.com/fluent/fluentd/pull/4502
* out_http: Add `compress gzip` option
https://github.com/fluent/fluentd/pull/4528
* in_exec: Add `encoding` option to handle non-ascii characters
https://github.com/fluent/fluentd/pull/4533
* in_tail: Add throttling metrics
https://github.com/fluent/fluentd/pull/4578
* compat: Improve method call performance
https://github.com/fluent/fluentd/pull/4588
* in_sample: Add `reuse_record` parameter to reuse the sample data
https://github.com/fluent/fluentd/pull/4586
kenhys marked this conversation as resolved.
Show resolved Hide resolved
* `in_sample` has changed to copy sample data by default to avoid the impact of destructive changes by subsequent plugins.
* This increases the load when generating large amounts of sample data.
* You can use this new parameter to have the same performance as before.

### Bug Fix

* logger: Fix LoadError with console gem v1.25
https://github.com/fluent/fluentd/pull/4492
* parser_json: Fix wrong LoadError warning
https://github.com/fluent/fluentd/pull/4522
* in_tail: Fix an issue where a large single line could consume a large amount of memory even though `max_line_size` is set
https://github.com/fluent/fluentd/pull/4530

### Misc

* Comment out inappropriate default configuration about out_forward
https://github.com/fluent/fluentd/pull/4523
* gemspec: Remove unnecessary files from released gem
https://github.com/fluent/fluentd/pull/4534
* plugin-generator: Update gemspec to remove unnecessary files
https://github.com/fluent/fluentd/pull/4535
* Suppress non-parenthesis warnings
https://github.com/fluent/fluentd/pull/4594
* Fix FrozenError in http_server plugin helper
https://github.com/fluent/fluentd/pull/4598
* Add logger gem dependency for Ruby 3.5
https://github.com/fluent/fluentd/pull/4589

## Release v1.17.0 - 2024/04/30

### Enhancement
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.17.0'
VERSION = '1.17.1'

end
Loading