Skip to content

Commit 46372dd

Browse files
authored
Merge pull request #4719 from fluent/v1.18.0
v1.18.0
2 parents df3d0c4 + d24cbd8 commit 46372dd

File tree

2 files changed

+55
-1
lines changed

2 files changed

+55
-1
lines changed

CHANGELOG.md

+54
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1+
# v1.18
2+
3+
## Release v1.18.0 - 2024/11/29
4+
5+
### Enhancement
6+
7+
* Add zero-downtime-restart feature for non-Windows
8+
https://github.com/fluent/fluentd/pull/4624
9+
* Add with-source-only feature
10+
https://github.com/fluent/fluentd/pull/4661
11+
* `fluentd` command: Add `--with-source-only` option
12+
* System configuration: Add `with_source_only` option
13+
* Embedded plugin: Add `out_buffer` plugin, which can be used for buffering and relabeling events
14+
https://github.com/fluent/fluentd/pull/4661
15+
* Config File Syntax: Extend Embedded Ruby Code support for Hashes and Arrays
16+
https://github.com/fluent/fluentd/pull/4580
17+
* Example: `key {"foo":"#{1 + 1}"} => key {"foo":"2"}`
18+
* Please note that this is not backward compatible, although we assume that this will never affect to actual existing configs.
19+
* In case the behavior changes unintentionally, you can disable this feature by surrounding the entire value with single quotes.
20+
* `key '{"foo":"#{1 + 1}"}' => key {"foo":"#{1 + 1}"}`
21+
* transport tls: Use SSL_VERIFY_NONE by default
22+
https://github.com/fluent/fluentd/pull/4718
23+
* transport tls: Add ensure_fips option to ensure FIPS compliant mode
24+
https://github.com/fluent/fluentd/pull/4720
25+
* plugin_helper/server: Add receive_buffer_size parameter in transport section
26+
https://github.com/fluent/fluentd/pull/4649
27+
* filter_parser: Now able to handle multiple parsed results
28+
https://github.com/fluent/fluentd/pull/4620
29+
* in_http: add `add_tag_prefix` option
30+
https://github.com/fluent/fluentd/pull/4655
31+
* System configuration: add `path` option in `log` section
32+
https://github.com/fluent/fluentd/pull/4604
33+
34+
### Bug Fix
35+
36+
* command: fix NoMethodError of --daemon under Windows
37+
https://github.com/fluent/fluentd/pull/4716
38+
* `fluentd` command: fix `--plugin` (`-p`) option not to overwrite default value
39+
https://github.com/fluent/fluentd/pull/4605
40+
41+
### Misc
42+
43+
* http_server: Ready to support Async 2.0 gem
44+
https://github.com/fluent/fluentd/pull/4619
45+
* Minor code refactoring
46+
* https://github.com/fluent/fluentd/pull/4641
47+
* CI fixes
48+
* https://github.com/fluent/fluentd/pull/4638
49+
* https://github.com/fluent/fluentd/pull/4644
50+
* https://github.com/fluent/fluentd/pull/4675
51+
* https://github.com/fluent/fluentd/pull/4676
52+
* https://github.com/fluent/fluentd/pull/4677
53+
* https://github.com/fluent/fluentd/pull/4686
54+
155
# v1.17
256

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

lib/fluent/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616

1717
module Fluent
1818

19-
VERSION = '1.17.1'
19+
VERSION = '1.18.0'
2020

2121
end

0 commit comments

Comments
 (0)