File tree 6 files changed +42
-16
lines changed
6 files changed +42
-16
lines changed Original file line number Diff line number Diff line change 1
1
# Treasure Agent 4 changelog
2
2
3
+ ## Release v4.3.2 - 2022/06/28
4
+
5
+ ### News
6
+
7
+ This release is mainly for supporting new distributions released in 2022Q2.
8
+ We choose Ruby 3.1 to bundle for such new distributions to adopt to recent
9
+ environment such as OpenSSL 3.0. For other distributions, we still use
10
+ Ruby 2.7. We'll migrate to Ruby 3 completely after Ruby 3.2 is released.
11
+
12
+ * Support new distributions
13
+ * Red Hat Enterprise Linux 9
14
+ * Ubuntu 22.04 LTS (Jammy Jellyfish)
15
+ * Remove nokogiri from Linux and macOS packages
16
+ * It's not used in actual by default on such environments.
17
+ * Update yajl-ruby to v1.4.3 to address vulnerability
18
+ * Update OpenSSL to 1.1.1p (for macOS and Windows)
19
+
3
20
## Release v4.3.1.1 - 2022/05/24
4
21
5
22
### News
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ gem "bundler", BUNDLER_VERSION
12
12
gem "cool.io" , "1.7.1" , platforms : no_fat_gem
13
13
gem "sigdump" , "0.2.4"
14
14
gem "http_parser.rb" , "0.8.0"
15
- gem "yajl-ruby" , "1.4.2 "
15
+ gem "yajl-ruby" , "1.4.3 "
16
16
gem "serverengine" , '2.2.5'
17
17
gem "msgpack" , "1.5.1"
18
18
gem "oj" , "3.13.11"
Original file line number Diff line number Diff line change 40
40
protocol-http2 (~> 0.14.0 )
41
41
async-io (1.33.0 )
42
42
async
43
- async-pool (0.3.9 )
43
+ async-pool (0.3.10 )
44
44
async (>= 1.25 )
45
45
aws-eventstream (1.2.0 )
46
46
aws-partitions (1.577.0 )
81
81
elasticsearch-api (= 8.1.2 )
82
82
elasticsearch-api (8.1.2 )
83
83
multi_json
84
- excon (0.92.2 )
84
+ excon (0.92.3 )
85
85
faraday (1.10.0 )
86
86
faraday-em_http (~> 1.0 )
87
87
faraday-em_synchrony (~> 1.0 )
98
98
faraday-em_synchrony (1.0.0 )
99
99
faraday-excon (1.1.0 )
100
100
faraday-httpclient (1.0.1 )
101
- faraday-multipart (1.0.3 )
102
- multipart-post (>= 1.2 , < 3 )
101
+ faraday-multipart (1.0.4 )
102
+ multipart-post (~> 2 )
103
103
faraday-net_http (1.0.1 )
104
104
faraday-net_http_persistent (1.2.0 )
105
105
faraday-patron (1.0.0 )
@@ -185,14 +185,14 @@ GEM
185
185
http_parser.rb (0.8.0 )
186
186
httpclient (2.8.3 )
187
187
jmespath (1.6.1 )
188
- json (2.6.1 )
188
+ json (2.6.2 )
189
189
linux-utmpx (0.3.0 )
190
190
bindata (~> 2.4.8 )
191
191
ltsv (0.1.2 )
192
192
mini_portile2 (2.8.0 )
193
193
msgpack (1.5.1 )
194
194
multi_json (1.15.0 )
195
- multipart-post (2.1.1 )
195
+ multipart-post (2.2.3 )
196
196
nio4r (2.5.8 )
197
197
nokogiri (1.13.6-x64-mingw32 )
198
198
racc (~> 1.4 )
208
208
parallel (1.22.1 )
209
209
prometheus-client (2.1.0 )
210
210
protocol-hpack (1.4.2 )
211
- protocol-http (0.22.5 )
212
- protocol-http1 (0.14.2 )
211
+ protocol-http (0.22.6 )
212
+ protocol-http1 (0.14.4 )
213
213
protocol-http (~> 0.22 )
214
214
protocol-http2 (0.14.2 )
215
215
protocol-hpack (~> 1.4 )
248
248
td-client (1.0.8 )
249
249
httpclient (>= 2.7 )
250
250
msgpack (>= 0.5.6 , < 2 )
251
- td-logger (0.3.27 )
251
+ td-logger (0.3.28 )
252
252
fluent-logger (>= 0.5.0 , < 2.0 )
253
253
msgpack (>= 0.5.6 , < 2.0 )
254
254
td-client (>= 0.8.66 , < 2.0 )
277
277
win32-api (>= 1.4.5 )
278
278
windows-api (>= 0.4.0 )
279
279
winevt_c (0.9.3 )
280
- yajl-ruby (1.4.2 )
280
+ yajl-ruby (1.4.3 )
281
281
zip-zip (0.3 )
282
282
rubyzip (>= 1.0.0 )
283
283
@@ -353,7 +353,7 @@ DEPENDENCIES
353
353
windows-api (= 0.4.4 )
354
354
windows-pr (= 1.2.6 )
355
355
winevt_c (= 0.9.3 )
356
- yajl-ruby (= 1.4.2 )
356
+ yajl-ruby (= 1.4.3 )
357
357
358
358
BUNDLED WITH
359
359
2.3.11
Original file line number Diff line number Diff line change 1
1
PACKAGE_NAME = "td-agent"
2
- PACKAGE_VERSION = "4.3.1.1 "
2
+ PACKAGE_VERSION = "4.3.2 "
3
3
4
4
FLUENTD_REVISION = 'c0f48a0080550eff6aa6fa19d269e480684e7a45' # v1.14.6
5
5
FLUENTD_LOCAL_GEM_REPO = "file://" + File . expand_path ( File . join ( __dir__ , "local_gem_repo" ) )
11
11
#JEMALLOC_VERSION = "5.2.1"
12
12
13
13
# https://www.openssl.org/source/
14
- OPENSSL_VERSION = "1.1.1n "
14
+ OPENSSL_VERSION = "1.1.1p "
15
15
16
16
# To fix memory leak issue: https://github.com/fluent/fluent-package-builder/issues/374
17
- MINGW_OPENSSL_VERSION = "1.1.1.o-2 "
18
- MINGW_OPENSSL_SHA256SUM = "e1e642d441de3d6b9d4e499b42bb5464458e3a2d2431012b28e6f1ad94099167 "
17
+ MINGW_OPENSSL_VERSION = "1.1.1.p-1 "
18
+ MINGW_OPENSSL_SHA256SUM = "1b665a0acc0d84d20e2d5acb454956b10d17078596e360e604cb78bd54f7c915 "
19
19
20
20
BUNDLER_VERSION = "2.3.11"
21
21
Original file line number Diff line number Diff line change
1
+ td-agent (4.3.2-1) unstable; urgency=low
2
+
3
+ * New upstream release.
4
+
5
+ -- Takuro Ashie <
[email protected] > Fri, 24 Jun 2022 05:31:56 -0000
6
+
1
7
td-agent (4.3.1.1-1) unstable; urgency=low
2
8
3
9
* New upstream release.
Original file line number Diff line number Diff line change 253
253
# NOTE: %{_tmpfilesdir} is available since CentOS 7
254
254
%attr(0755,td-agent,td-agent) %dir /tmp/@PACKAGE@
255
255
%changelog
256
+ * Fri Jun 24 2022 Takuro Ashie <
[email protected] > - 4.3.2-1
257
+ - New upstream release.
258
+
256
259
* Tue May 24 2022 Takuro Ashie <
[email protected] > - 4.3.1.1-1
257
260
- New upstream release.
258
261
You can’t perform that action at this time.
0 commit comments