Skip to content

Commit 5744fc3

Browse files
v6.0.0 test preflight (#801)
This is just a test pre-flight --------- Signed-off-by: Kentaro Hayashi <[email protected]> Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f13df64 commit 5744fc3

File tree

6 files changed

+282
-166
lines changed

6 files changed

+282
-166
lines changed

CHANGELOG.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,69 @@
22

33
About the past changelog entries, see [old CHANGELOG](CHANGELOG-v4.md) instead.
44

5+
## Release v6.0.0 - 2025/08/29
6+
7+
### News
8+
9+
* Update Ruby to 3.4.4
10+
* Update fluentd to 1.19.0
11+
* Update bundled gems
12+
13+
### Core component
14+
15+
* ruby v3.4.4 (update)
16+
* jemalloc v3.6.0
17+
* OpenSSL 3.4.0 Windows
18+
* OpenSSL 3.0.8 macOS
19+
* gems
20+
* fluentd v1.19.0 (update)
21+
* msgpack 1.8.0 (update)
22+
* oj 3.16.11 (update)
23+
* webrick 1.9.1 (update)
24+
* openssl 3.3.0
25+
26+
### Bundled plugins and gems
27+
28+
* aws-partitions v1.1110.0 (update)
29+
* aws-sdk-core v3.225.0 (update)
30+
* aws-sdk-kms v1.102.0 (update)
31+
* aws-sdk-s3 v1.189.0 (update)
32+
* aws-sdk-sqs v1.96.0 (update)
33+
* aws-sigv4 v1.12.0 (update)
34+
* elasticsearch v9.0.3 (update)
35+
* fluent-diagtool v1.0.5
36+
* fluent-plugin-elasticsearch v6.0.0 (update)
37+
* fluent-plugin-fluent-package-notifier v0.1.0 (new)
38+
* fluent-plugin-flowcounter-simple 0.1.0
39+
* fluent-plugin-kafka v0.19.4 (update)
40+
* fluent-plugin-metrics-cmetrics v0.1.2
41+
* fluent-plugin-obsolete-plugins v0.1.1 (new)
42+
* fluent-plugin-opensearch v1.1.5 (update)
43+
* fluent-plugin-prometheus v2.2.1 (update)
44+
* fluent-plugin-prometheus_pushgateway v0.2.1 (update)
45+
* fluent-plugin-record-modifier v2.2.0 (update)
46+
* fluent-plugin-rewrite-tag-filter v2.4.0
47+
* fluent-plugin-s3 v1.8.3 (update)
48+
* fluent-plugin-sd-dns 0.1.0
49+
* fluent-plugin-systemd v1.1.0 (update)
50+
* fluent-plugin-td v1.2.0
51+
* fluent-plugin-utmpx v0.5.0
52+
* fluent-plugin-webhdfs v1.6.0 (update)
53+
* mini_portile2 v2.8.9 (update)
54+
* prometheus-client v4.2.4 (update)
55+
* rdkafka v0.21.0 (update)
56+
* ruby-kafka v1.5.0
57+
* systemd-journal v2.0.0 (update)
58+
* td-client v2.0.0 (update)
59+
* webhdfs v0.11.0 (update)
60+
61+
On Windows
62+
63+
* fluent-plugin-parser-winevt_xml v0.2.8 (update)
64+
* fluent-plugin-windows-exporter v1.0.0
65+
* winevt_c v0.11.2 (update)
66+
* nokogiri v1.18.8 (update)
67+
568
## Release v5.0.7 - 2025/05/16
669

770
### News

fluent-package/Gemfile

Lines changed: 37 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,17 @@ source "https://rubygems.org"
99
no_fat_gem = [:ruby]
1010
gem "rake"
1111
gem "bundler", BUNDLER_VERSION
12-
gem "cool.io", "1.8.1", platforms: no_fat_gem
12+
gem "cool.io", "1.9.0", platforms: no_fat_gem
1313
gem "sigdump", "0.2.5"
1414
gem "http_parser.rb", "0.8.0"
1515
gem "yajl-ruby", "1.4.3"
16-
gem "serverengine", '2.4.0'
17-
gem "msgpack", "1.7.3"
18-
gem "oj", "3.16.7"
16+
gem "serverengine", "2.4.0"
17+
gem "msgpack", "1.8.0"
18+
gem "oj", "3.16.11"
1919
gem "tzinfo", "2.0.6"
20-
gem "tzinfo-data", "1.2024.2"
21-
gem "async", "1.32.1"
22-
# async-http 0.65.0 or later does not support async 1.x
23-
gem "async-http", "0.64.2"
20+
gem "tzinfo-data", "1.2025.2"
21+
gem "async", "2.24.0"
22+
gem "async-http", "0.89.0"
2423
gem "webrick", "1.9.1"
2524

2625
if ENV["INSTALL_GEM_FROM_LOCAL_REPO"]
@@ -46,62 +45,65 @@ end
4645

4746
# plugin gems
4847

49-
gem "elasticsearch", "8.14.0"
50-
gem "fluent-plugin-elasticsearch", "5.4.3"
48+
gem "elasticsearch", "9.0.3"
49+
gem "fluent-plugin-elasticsearch", "6.0.0"
5150
gem "ruby-kafka", "1.5.0"
5251
gem "digest-murmurhash", "1.1.1"
53-
gem "fluent-plugin-kafka", "0.19.3"
54-
# f-p-prometheus_pushgateway doesn't support prometheus 3.0 or later
55-
gem "prometheus-client", "2.1.0"
56-
gem "fluent-plugin-prometheus", "2.1.0"
57-
gem "fluent-plugin-prometheus_pushgateway", "0.1.1"
52+
gem "fluent-plugin-kafka", "0.19.4"
53+
gem "prometheus-client", "4.2.4"
54+
gem "fluent-plugin-prometheus", "2.2.1"
55+
gem "fluent-plugin-prometheus_pushgateway", "0.2.1"
5856
gem "jmespath", "1.6.2"
59-
gem "aws-partitions", "1.957.0"
60-
gem "aws-sdk-core", "3.201.2"
61-
gem "aws-sdk-kms", "1.88.0"
62-
gem "aws-sdk-sqs", "1.80.0"
63-
gem "aws-sigv4", "1.8.0"
64-
gem "aws-sdk-s3", "1.156.0"
65-
gem "fluent-plugin-s3", "1.8.1"
66-
gem "httpclient", "2.8.3"
57+
gem "aws-partitions", "1.1110.0"
58+
gem "aws-sdk-core", "3.225.0"
59+
gem "aws-sdk-kms", "1.102.0"
60+
gem "aws-sdk-sqs", "1.96.0"
61+
gem "aws-sigv4", "1.12.0"
62+
gem "aws-sdk-s3", "1.189.0"
63+
gem "fluent-plugin-s3", "1.8.3"
64+
gem "httpclient", "2.9.0"
6765
gem "fluent-diagtool", "1.0.5"
68-
# td doesn't support td-client 2.0.0 or later yet
69-
gem "td", "0.17.1"
70-
gem "td-client", "1.0.8"
66+
gem "td", "0.18.0"
67+
gem "td-client", "2.0.0"
7168
gem "fluent-plugin-td", "1.2.0"
7269
gem "webhdfs", "0.11.0"
7370
gem "fluent-plugin-webhdfs", "1.6.0"
7471
gem "fluent-plugin-record-modifier", "2.2.0"
7572
gem "fluent-plugin-rewrite-tag-filter", "2.4.0"
7673
gem "fluent-plugin-sd-dns", "0.1.0"
7774
gem "fluent-plugin-flowcounter-simple", "0.1.0"
78-
gem "mini_portile2", "2.8.7"
75+
gem "mini_portile2", "2.8.9"
7976
gem "cmetrics", "0.3.3"
8077
gem "fluent-plugin-metrics-cmetrics", "0.1.2"
81-
gem "fluent-plugin-calyptia-monitoring", "0.1.3"
8278
gem "opensearch-ruby", "3.4.0"
83-
gem "fluent-plugin-opensearch", "1.1.4"
79+
gem "fluent-plugin-opensearch", "1.1.5"
80+
gem "fluent-plugin-fluent-package-update-notifier", "0.1.0"
81+
gem "fluent-plugin-obsolete-plugins", "0.1.1"
8482

8583
windows_platforms = [:mingw, :x64_mingw] # :mswin
84+
# ffi-win32-extensions doesn't support ffi 1.17.1 or later
8685
gem "ffi", "1.17.0", platforms: windows_platforms
87-
gem "ffi-win32-extensions", "1.0.4", platforms: windows_platforms
88-
# keep nokogiri 1.16.x because winevt_xml requires < 1.17
89-
gem "nokogiri", "1.16.8", platforms: windows_platforms
86+
gem "ffi-win32-extensions", "1.1.0", platforms: windows_platforms
87+
# fiddle gem that isn't default gems as of Ruby 3.5
88+
gem "fiddle", "1.1.8", platforms: windows_platforms
89+
gem "nokogiri", "1.18.8", platforms: windows_platforms
9090
gem "win32-event", "0.6.3", platforms: windows_platforms
9191
gem "win32-ipc", "0.7.0", platforms: windows_platforms
9292
# Use officially released version when PR was merged and released.
9393
#gem "win32-service", "2.3.2", platforms: windows_platforms
94-
gem "winevt_c", "0.11.1", platforms: windows_platforms
94+
gem "winevt_c", "0.11.2", platforms: windows_platforms
9595
gem "win32-eventlog", "0.6.7", platforms: windows_platforms
96-
gem "fluent-plugin-parser-winevt_xml", "0.2.7", platforms: windows_platforms
97-
gem "fluent-plugin-windows-eventlog", "0.9.0", platforms: windows_platforms
96+
gem "fluent-plugin-parser-winevt_xml", "0.2.8", platforms: windows_platforms
97+
gem "fluent-plugin-windows-eventlog", "0.9.1", platforms: windows_platforms
9898
gem "fluent-plugin-windows-exporter", "1.0.0", platforms: windows_platforms
9999

100100
not_windows_platforms = [:ruby]
101101
gem "capng_c", "0.2.3", platforms: not_windows_platforms
102102
# Use newer bundled rdkafka with librdkafka 2.8.0 to support AlmaLinux 10
103103
# (librdkafka 2.8.0 supports "OpenSSL without the ENGINE component")
104104
gem "rdkafka", "0.21.0", platforms: not_windows_platforms
105+
# Keep systemd-journal 2.0.0 and f-p-systemd 1.1.0 until regression issue is fixed
106+
# See https://github.com/ledbettj/systemd-journal/pull/109
105107
gem "systemd-journal", "2.0.0", platforms: not_windows_platforms
106108
gem "fluent-plugin-systemd", "1.1.0", platforms: not_windows_platforms
107109
gem "fluent-plugin-utmpx", "0.5.0", platforms: not_windows_platforms

0 commit comments

Comments
 (0)