From 1c249924731e0500a634a54960c649f1ea810b34 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Thu, 15 Aug 2024 15:21:28 +0900 Subject: [PATCH] Add v1.17.1 Signed-off-by: Kentaro Hayashi --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ lib/fluent/version.rb | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd8ceb58f1..960981dfa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,42 @@ # v1.17 +## Release v1.17.1 - 2024/08/16 + +### 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 +* Add logger gem dependency for Ruby 3.5 + https://github.com/fluent/fluentd/pull/4589 + +### 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 to skip lines with max line size limitation + 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 + ## Release v1.17.0 - 2024/04/30 ### Enhancement diff --git a/lib/fluent/version.rb b/lib/fluent/version.rb index 1608be223f..4d51bd85ff 100644 --- a/lib/fluent/version.rb +++ b/lib/fluent/version.rb @@ -16,6 +16,6 @@ module Fluent - VERSION = '1.17.0' + VERSION = '1.17.1' end