Skip to content

Commit 74c1be7

Browse files
Add fluent-package v5.0.7 (#816)
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 806221e commit 74c1be7

File tree

6 files changed

+99
-21
lines changed

6 files changed

+99
-21
lines changed

CHANGELOG.md

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

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

5+
## Release v5.0.7 - 2025/05/14
6+
7+
### News
8+
9+
* Update Ruby to 3.2.8 (#816)
10+
* Update fluentd to 1.16.8 (#816)
11+
* Update bundled gems
12+
13+
### Core component
14+
15+
* ruby v3.2.8 (update)
16+
* jemalloc v3.6.0
17+
* OpenSSL 3.4.0 Windows
18+
* OpenSSL 3.0.8 macOS
19+
* fluentd v1.16.8 (update)
20+
* msgpack 1.7.5
21+
* oj 3.16.5
22+
* webrick 1.8.2
23+
* openssl 3.3.0 (update)
24+
25+
### Bundled plugins and gems
26+
27+
* aws-partitions v1.785.0
28+
* aws-sdk-core v3.178.0
29+
* aws-sdk-kms v1.71.0
30+
* aws-sdk-s3 v1.129.0
31+
* aws-sdk-sqs v1.61.0
32+
* aws-sigv4 v1.6.0
33+
* elasticsearch v8.8.0
34+
* fluent-diagtool v1.0.5
35+
* fluent-plugin-calyptia-monitoring v0.1.3
36+
* fluent-plugin-elasticsearch v5.4.4 (update)
37+
* fluent-plugin-flowcounter-simple 0.1.0
38+
* fluent-plugin-kafka v0.19.3
39+
* fluent-plugin-metrics-cmetrics v0.1.2
40+
* fluent-plugin-opensearch v1.1.4
41+
* fluent-plugin-prometheus v2.1.0
42+
* fluent-plugin-prometheus_pushgateway v0.1.1
43+
* fluent-plugin-record-modifier v2.1.1
44+
* fluent-plugin-rewrite-tag-filter v2.4.0
45+
* fluent-plugin-s3 v1.7.2
46+
* fluent-plugin-sd-dns 0.1.0
47+
* fluent-plugin-systemd v1.1.0
48+
* fluent-plugin-td v1.2.0
49+
* fluent-plugin-utmpx v0.5.0
50+
* fluent-plugin-webhdfs v1.5.0
51+
* mini_portile2 v2.8.2
52+
* prometheus-client v2.1.0
53+
* rdkafka v0.12.0
54+
* ruby-kafka v1.5.0
55+
* systemd-journal v2.0.0
56+
* td-client v1.0.8
57+
* webhdfs v0.10.2
58+
59+
On Windows
60+
61+
* fluent-plugin-parser-winevt_xml v0.2.7
62+
* fluent-plugin-windows-exporter v1.0.0
63+
* winevt_c v0.10.2
64+
* nokogiri v1.16.8
65+
566
## Release v5.0.6 - 2025/02/14
667

768
### News

fluent-package/Gemfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@ source "https://rubygems.org"
99
no_fat_gem = [:ruby]
1010
gem "rake"
1111
gem "bundler", BUNDLER_VERSION
12-
gem "cool.io", "1.8.0", platforms: no_fat_gem
12+
gem "cool.io", "1.8.1", 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"
1616
gem "serverengine", '2.3.2'
1717
gem "msgpack", "1.7.5"
1818
gem "oj", "3.16.5"
1919
gem "tzinfo", "2.0.6"
20-
gem "tzinfo-data", "1.2025.1"
20+
gem "tzinfo-data", "1.2025.2"
2121
gem "async", "1.31.0"
2222
gem "async-http", "0.61.0"
2323
gem "webrick", "1.8.2"
24+
gem "openssl", "3.3.0"
2425

2526
if ENV["INSTALL_GEM_FROM_LOCAL_REPO"]
2627
# During build process, pre-built fluentd gem will be installed
@@ -46,7 +47,7 @@ end
4647
# plugin gems
4748

4849
gem "elasticsearch", "8.8.0"
49-
gem "fluent-plugin-elasticsearch", "5.4.0"
50+
gem "fluent-plugin-elasticsearch", "5.4.4"
5051
gem "ruby-kafka", "1.5.0"
5152
gem "digest-murmurhash", "1.1.1"
5253
gem "fluent-plugin-kafka", "0.19.3"
@@ -80,6 +81,7 @@ gem "cmetrics", "0.3.3"
8081
gem "fluent-plugin-metrics-cmetrics", "0.1.2"
8182
gem "fluent-plugin-calyptia-monitoring", "0.1.3"
8283
gem "opensearch-ruby", "2.1.0"
84+
# Keep 1.1.4 because 1.1.5 requires opensearch-ruby 3.0.1 or later
8385
gem "fluent-plugin-opensearch", "1.1.4"
8486

8587
windows_platforms = [:mingw, :x64_mingw] # :mswin
@@ -98,6 +100,8 @@ gem "fluent-plugin-windows-exporter", "1.0.0", platforms: windows_platforms
98100

99101
not_windows_platforms = [:ruby]
100102
gem "rdkafka", "0.12.0", platforms: not_windows_platforms
103+
# Keep combination with systemd-journal 2.0.0 and f-p-systemd 1.1.0
104+
# because systemd-journal 2.1.0 has a regression. See https://github.com/ledbettj/systemd-journal/pull/109
101105
gem "systemd-journal", "2.0.0", platforms: not_windows_platforms
102106
gem "fluent-plugin-systemd", "1.1.0", platforms: not_windows_platforms
103107
gem "fluent-plugin-utmpx", "0.5.0", platforms: not_windows_platforms

fluent-package/Gemfile.lock

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,17 @@ GIT
99

1010
GIT
1111
remote: https://github.com/fluent/fluentd
12-
revision: 6e7d056ec21db1ca1b5dbd50ca04afeac2b8ca7b
13-
ref: 6e7d056ec21db1ca1b5dbd50ca04afeac2b8ca7b
12+
revision: daccbc6f0551611c65d3ce7efd81dfc7b693f3e3
13+
ref: daccbc6f0551611c65d3ce7efd81dfc7b693f3e3
1414
specs:
15-
fluentd (1.16.7)
15+
fluentd (1.16.9)
1616
bundler
1717
certstore_c (~> 0.1.7)
1818
console (< 1.24)
1919
cool.io (>= 1.4.5, < 2.0.0)
20+
fiddle (~> 1.1)
2021
http_parser.rb (>= 0.5.1, < 0.9.0)
21-
logger (= 1.6.2)
22+
logger (~> 1.6)
2223
msgpack (>= 1.3.1, < 2.0.0)
2324
serverengine (>= 2.3.2, < 3.0.0)
2425
sigdump (~> 0.2.5)
@@ -82,8 +83,8 @@ GEM
8283
fiber-annotation
8384
fiber-local
8485
json
85-
cool.io (1.8.0)
86-
csv (3.3.2)
86+
cool.io (1.8.1)
87+
csv (3.3.4)
8788
digest-crc (0.6.5)
8889
rake (>= 12.0.0, < 14.0.0)
8990
digest-murmurhash (1.1.1)
@@ -112,6 +113,7 @@ GEM
112113
ffi
113114
fiber-annotation (0.2.0)
114115
fiber-local (1.0.0)
116+
fiddle (1.1.8)
115117
fileutils (1.7.3)
116118
fluent-config-regexp-type (1.0.0)
117119
fluentd (> 1.0.0, < 2)
@@ -123,7 +125,7 @@ GEM
123125
fluent-plugin-calyptia-monitoring (0.1.3)
124126
fluent-plugin-metrics-cmetrics (>= 0.1.1)
125127
fluentd (>= 1.14.0, < 2)
126-
fluent-plugin-elasticsearch (5.4.0)
128+
fluent-plugin-elasticsearch (5.4.4)
127129
elasticsearch
128130
excon
129131
faraday (>= 2.0.0)
@@ -194,7 +196,7 @@ GEM
194196
json (2.7.6)
195197
linux-utmpx (0.3.0)
196198
bindata (~> 2.4.8)
197-
logger (1.6.2)
199+
logger (1.6.6)
198200
ltsv (0.1.2)
199201
mini_portile2 (2.8.2)
200202
msgpack (1.7.5)
@@ -214,6 +216,7 @@ GEM
214216
opensearch-transport (2.1.0)
215217
faraday (>= 1.0, < 3)
216218
multi_json
219+
openssl (3.3.0)
217220
ostruct (0.3.3)
218221
parallel (1.20.1)
219222
prometheus-client (2.1.0)
@@ -267,7 +270,7 @@ GEM
267270
traces (0.11.1)
268271
tzinfo (2.0.6)
269272
concurrent-ruby (~> 1.0)
270-
tzinfo-data (1.2025.1)
273+
tzinfo-data (1.2025.2)
271274
tzinfo (>= 1.0.0)
272275
webhdfs (0.10.2)
273276
addressable
@@ -300,14 +303,14 @@ DEPENDENCIES
300303
aws-sigv4 (= 1.6.0)
301304
bundler (= 2.3.27)
302305
cmetrics (= 0.3.3)
303-
cool.io (= 1.8.0)
306+
cool.io (= 1.8.1)
304307
digest-murmurhash (= 1.1.1)
305308
elasticsearch (= 8.8.0)
306309
ffi (= 1.15.5)
307310
ffi-win32-extensions (= 1.0.4)
308311
fluent-diagtool (= 1.0.5)
309312
fluent-plugin-calyptia-monitoring (= 0.1.3)
310-
fluent-plugin-elasticsearch (= 5.4.0)
313+
fluent-plugin-elasticsearch (= 5.4.4)
311314
fluent-plugin-flowcounter-simple (= 0.1.0)
312315
fluent-plugin-kafka (= 0.19.3)
313316
fluent-plugin-metrics-cmetrics (= 0.1.2)
@@ -334,6 +337,7 @@ DEPENDENCIES
334337
nokogiri (= 1.16.8)
335338
oj (= 3.16.5)
336339
opensearch-ruby (= 2.1.0)
340+
openssl (= 3.3.0)
337341
prometheus-client (= 2.1.0)
338342
rake
339343
rdkafka (= 0.12.0)
@@ -344,7 +348,7 @@ DEPENDENCIES
344348
td (= 0.17.1)
345349
td-client (= 1.0.8)
346350
tzinfo (= 2.0.6)
347-
tzinfo-data (= 1.2025.1)
351+
tzinfo-data (= 1.2025.2)
348352
webhdfs (= 0.10.2)
349353
webrick (= 1.8.2)
350354
win32-event (= 0.6.3)

fluent-package/config.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
PACKAGE_NAME = "fluent-package"
2-
PACKAGE_VERSION = "5.0.6"
2+
PACKAGE_VERSION = "5.0.7"
33

44
# Keep internal path (/opt/td-agent) for package name migration
55
SERVICE_NAME = "fluentd"
66
COMPAT_SERVICE_NAME = "td-agent"
77
PACKAGE_DIR = "fluent"
88
COMPAT_PACKAGE_DIR = COMPAT_SERVICE_NAME
99

10-
FLUENTD_REVISION = '6e7d056ec21db1ca1b5dbd50ca04afeac2b8ca7b' # v1.16.7
10+
FLUENTD_REVISION = 'daccbc6f0551611c65d3ce7efd81dfc7b693f3e3' # v1.16.9
1111
FLUENTD_LOCAL_GEM_REPO = "file://" + File.expand_path(File.join(__dir__, "local_gem_repo"))
1212

1313
# https://github.com/jemalloc/jemalloc/releases
@@ -23,17 +23,17 @@
2323
BUNDLER_VERSION= "2.3.27"
2424

2525
# https://www.ruby-lang.org/en/downloads/ (tar.gz)
26-
BUNDLED_RUBY_VERSION = "3.2.7"
27-
BUNDLED_RUBY_SOURCE_SHA256SUM = "8488fa620ff0333c16d437f2b890bba3b67f8745fdecb1472568a6114aad9741"
26+
BUNDLED_RUBY_VERSION = "3.2.8"
27+
BUNDLED_RUBY_SOURCE_SHA256SUM = "77acdd8cfbbe1f8e573b5e6536e03c5103df989dc05fa68c70f011833c356075"
2828

2929
BUNDLED_RUBY_PATCHES = [
3030
# An example entry:
3131
# ["ruby-3.0/0001-ruby-resolv-Fix-confusion-of-received-response-messa.patch", ["= 3.0.1"]],
3232
]
3333

3434
# https://rubyinstaller.org/downloads/ (7-ZIP ARCHIVES)
35-
BUNDLED_RUBY_INSTALLER_X64_VERSION = "3.2.7-1"
36-
BUNDLED_RUBY_INSTALLER_X64_SHA256SUM = "f0d1a8ec7b778432a8ab6a4d7d41c21ae3f9d2849e048fce4e2ba648c3821dbc"
35+
BUNDLED_RUBY_INSTALLER_X64_VERSION = "3.2.8-1"
36+
BUNDLED_RUBY_INSTALLER_X64_SHA256SUM = "e37172bc960a22b1fda9603bea617625b5a1af48d009844818e85eaa00684962"
3737

3838
# Files under rubyinstaller/ are patches for RubyInstaller's binary package.
3939
# Other patches for Ruby's source tree which can be shared with BUNDLED_RUBY_PATCHES.

fluent-package/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
fluent-package (5.0.7-1) unstable; urgency=low
2+
3+
* New upstream release.
4+
5+
-- Kentaro Hayashi <[email protected]> Wed, 14 May 2025 08:41:13 -0000
6+
17
fluent-package (5.0.6-1) unstable; urgency=low
28

39
* New upstream release.

fluent-package/yum/fluent-package.spec.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,9 @@ fi
371371
# NOTE: %{_tmpfilesdir} is available since CentOS 7
372372
%attr(0755,fluentd,fluentd) %dir /tmp/@PACKAGE_DIR@
373373
%changelog
374+
* Wed May 14 2025 Kentaro Hayashi <[email protected]> - 5.0.7-1
375+
- New upstream release.
376+
374377
* Fri Feb 14 2025 Kentaro Hayashi <[email protected]> - 5.0.6-1
375378
- New upstream release.
376379

0 commit comments

Comments
 (0)