From 2b27f1c54e71964120c8e26eb2b424edf8b023b9 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Thu, 10 Jun 2021 12:01:01 +0900 Subject: [PATCH] v1.13.1 Signed-off-by: Kentaro Hayashi --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ lib/fluent/version.rb | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56578442fb..88aad9e2dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +# v1.13.1 + +## Release v1.13.1 - 2021/06/25 + +### Bug fix + +* out_forward: Fixed a race condition on handshake + It's caused by using a same unpacker from multiple threads. + https://github.com/fluent/fluentd/pull/3405 + https://github.com/fluent/fluentd/pull/3406 +* in_tail: Fixed to remove too much verbose debugging logs + It was unexpectedly introduced by #3185 log throttling feature. + https://github.com/fluent/fluentd/pull/3418 +* Fixed not to echo back the provides path as is on a 404 error + There was a potential cross-site scripting vector even though + it is quite difficult to exploit. + https://github.com/fluent/fluentd/pull/3427 + +### Misc + +* Pretty print for Fluent::Config::Section has been supported + for debugging + https://github.com/fluent/fluentd/pull/3398 +* CI: Dropped to run CI for Ruby 2.5 + https://github.com/fluent/fluentd/pull/3412 + # v1.13 ## Release v1.13.0 - 2021/05/29 diff --git a/lib/fluent/version.rb b/lib/fluent/version.rb index 89837f363a..9e6c10dd6f 100644 --- a/lib/fluent/version.rb +++ b/lib/fluent/version.rb @@ -16,6 +16,6 @@ module Fluent - VERSION = '1.13.0' + VERSION = '1.13.1' end