Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 9a5ad2c

Browse files
authored
Merge pull request #131 from splunk/v1.2.0
1.2.0
2 parents 80f9702 + 50e3f84 commit 9a5ad2c

File tree

5 files changed

+47
-46
lines changed

5 files changed

+47
-46
lines changed

Gemfile.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PATH
22
remote: .
33
specs:
4-
fluent-plugin-kubernetes-metrics (1.1.12)
4+
fluent-plugin-kubernetes-metrics (1.2.0)
55
fluentd (>= 1.9.1)
66
kubeclient (~> 4.9.3)
7-
multi_json (~> 1.14.1)
8-
oj (~> 3.10.2)
7+
multi_json (~> 1.14)
8+
oj (~> 3.10)
99

1010
GEM
1111
remote: https://rubygems.org/
@@ -23,12 +23,12 @@ GEM
2323
ffi-compiler (1.0.1)
2424
ffi (>= 1.0.0)
2525
rake
26-
fluentd (1.14.6)
26+
fluentd (1.15.1)
2727
bundler
2828
cool.io (>= 1.4.5, < 2.0.0)
2929
http_parser.rb (>= 0.5.1, < 0.9.0)
3030
msgpack (>= 1.3.1, < 2.0.0)
31-
serverengine (>= 2.2.5, < 3.0.0)
31+
serverengine (>= 2.3.0, < 3.0.0)
3232
sigdump (~> 0.2.2)
3333
strptime (>= 0.2.4, < 1.0.0)
3434
tzinfo (>= 1.0, < 3.0)
@@ -42,14 +42,14 @@ GEM
4242
http-form_data (~> 2.2)
4343
http-parser (~> 1.2.0)
4444
http-accept (1.7.0)
45-
http-cookie (1.0.4)
45+
http-cookie (1.0.5)
4646
domain_name (~> 0.5)
4747
http-form_data (2.3.0)
4848
http-parser (1.2.3)
4949
ffi-compiler (>= 1.0, < 2.0)
5050
http_parser.rb (0.8.0)
5151
json (2.6.1)
52-
jsonpath (1.1.0)
52+
jsonpath (1.1.2)
5353
multi_json
5454
kubeclient (4.9.3)
5555
http (>= 3.0, < 5.0)
@@ -59,10 +59,10 @@ GEM
5959
mime-types (3.4.1)
6060
mime-types-data (~> 3.2015)
6161
mime-types-data (3.2022.0105)
62-
msgpack (1.5.1)
63-
multi_json (1.14.1)
62+
msgpack (1.5.4)
63+
multi_json (1.15.0)
6464
netrc (0.11.0)
65-
oj (3.10.18)
65+
oj (3.13.20)
6666
power_assert (2.0.1)
6767
public_suffix (4.0.6)
6868
rake (13.0.6)
@@ -73,7 +73,7 @@ GEM
7373
mime-types (>= 1.16, < 4.0)
7474
netrc (~> 0.8)
7575
rexml (3.2.5)
76-
serverengine (2.2.5)
76+
serverengine (2.3.0)
7777
sigdump (~> 0.2.2)
7878
sigdump (0.2.4)
7979
simplecov (0.16.1)
@@ -84,13 +84,13 @@ GEM
8484
strptime (0.2.5)
8585
test-unit (3.3.9)
8686
power_assert
87-
tzinfo (2.0.4)
87+
tzinfo (2.0.5)
8888
concurrent-ruby (~> 1.0)
89-
tzinfo-data (1.2022.1)
89+
tzinfo-data (1.2022.2)
9090
tzinfo (>= 1.0.0)
9191
unf (0.1.4)
9292
unf_ext
93-
unf_ext (0.0.8.1)
93+
unf_ext (0.0.8.2)
9494
webmock (3.5.1)
9595
addressable (>= 2.3.6)
9696
crack (>= 0.3.2)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.12
1+
1.2.0

docker/Gemfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ source 'https://rubygems.org'
33
# This is separate gemfile for building docker image that has all plugins
44
# for kubernetes log collection agent
55
# List all required gems here and install via bundler to resolve dependencies
6-
gem "fluentd", ">=1.14.2"
6+
gem "fluentd", ">=1.15.0"
77
gem "fluent-plugin-prometheus", ">=2.0"
88
gem "fluent-plugin-record-modifier", "=2.1.0"
99
gem "fluent-plugin-jq", "=0.5.1"
10-
gem "oj", "=3.10.18"
11-
gem 'multi_json', '=1.14.1'
10+
gem "oj", "~> 3.10"
11+
gem 'multi_json', '~> 1.14'
1212
gem 'bigdecimal', '=3.0.0'
1313
gem 'kubeclient', '=4.9.3'
1414
gem 'http_parser.rb', '=0.8.0'
1515
gem 'rack', '>= 2.2.3.1'
1616

17-
gem "fluent-plugin-splunk-hec", ">= 1.2.5"
17+
gem "fluent-plugin-splunk-hec", "= 1.3.0"
1818
gem 'fluent-plugin-kubernetes-metrics', path: 'gem/'

docker/Gemfile.lock

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
PATH
22
remote: gem
33
specs:
4-
fluent-plugin-kubernetes-metrics (1.1.12)
4+
fluent-plugin-kubernetes-metrics (1.2.0)
55
fluentd (>= 1.9.1)
66
kubeclient (~> 4.9.3)
7-
multi_json (~> 1.14.1)
8-
oj (~> 3.10.2)
7+
multi_json (~> 1.14)
8+
oj (~> 3.10)
99

1010
GEM
1111
remote: https://rubygems.org/
1212
specs:
13-
activemodel (7.0.2.4)
14-
activesupport (= 7.0.2.4)
15-
activesupport (7.0.2.4)
13+
activemodel (7.0.3.1)
14+
activesupport (= 7.0.3.1)
15+
activesupport (7.0.3.1)
1616
concurrent-ruby (~> 1.0, >= 1.0.2)
1717
i18n (>= 1.6, < 2)
1818
minitest (>= 5.1)
@@ -40,18 +40,18 @@ GEM
4040
prometheus-client (>= 2.1.0)
4141
fluent-plugin-record-modifier (2.1.0)
4242
fluentd (>= 1.0, < 2)
43-
fluent-plugin-splunk-hec (1.2.13)
44-
fluentd (>= 1.4)
43+
fluent-plugin-splunk-hec (1.3.0)
44+
fluentd (>= 1.5)
4545
multi_json (~> 1.13)
4646
net-http-persistent (~> 4.0)
4747
openid_connect (~> 1.1.8)
4848
prometheus-client (>= 2.1.0)
49-
fluentd (1.14.6)
49+
fluentd (1.15.1)
5050
bundler
5151
cool.io (>= 1.4.5, < 2.0.0)
5252
http_parser.rb (>= 0.5.1, < 0.9.0)
5353
msgpack (>= 1.3.1, < 2.0.0)
54-
serverengine (>= 2.2.5, < 3.0.0)
54+
serverengine (>= 2.3.0, < 3.0.0)
5555
sigdump (~> 0.2.2)
5656
strptime (>= 0.2.4, < 1.0.0)
5757
tzinfo (>= 1.0, < 3.0)
@@ -71,12 +71,13 @@ GEM
7171
ffi-compiler (>= 1.0, < 2.0)
7272
http_parser.rb (0.8.0)
7373
httpclient (2.8.3)
74-
i18n (1.10.0)
74+
i18n (1.12.0)
7575
concurrent-ruby (~> 1.0)
76-
json-jwt (1.13.0)
76+
json-jwt (1.15.2)
7777
activesupport (>= 4.2)
7878
aes_key_wrap
7979
bindata
80+
httpclient
8081
jsonpath (1.1.0)
8182
multi_json
8283
kubeclient (4.9.3)
@@ -90,9 +91,9 @@ GEM
9091
mime-types-data (~> 3.2015)
9192
mime-types-data (3.2022.0105)
9293
mini_mime (1.1.2)
93-
minitest (5.15.0)
94-
msgpack (1.5.1)
95-
multi_json (1.14.1)
94+
minitest (5.16.2)
95+
msgpack (1.5.4)
96+
multi_json (1.15.0)
9697
net-http-persistent (4.0.1)
9798
connection_pool (~> 2.2)
9899
netrc (0.11.0)
@@ -109,8 +110,8 @@ GEM
109110
webfinger (>= 1.0.1)
110111
prometheus-client (4.0.0)
111112
public_suffix (4.0.7)
112-
rack (2.2.3.1)
113-
rack-oauth2 (1.19.0)
113+
rack (2.2.4)
114+
rack-oauth2 (1.21.2)
114115
activesupport
115116
attr_required
116117
httpclient
@@ -123,25 +124,25 @@ GEM
123124
http-cookie (>= 1.0.2, < 2.0)
124125
mime-types (>= 1.16, < 4.0)
125126
netrc (~> 0.8)
126-
serverengine (2.2.5)
127+
serverengine (2.3.0)
127128
sigdump (~> 0.2.2)
128129
sigdump (0.2.4)
129130
strptime (0.2.5)
130131
swd (1.3.0)
131132
activesupport (>= 3)
132133
attr_required (>= 0.0.5)
133134
httpclient (>= 2.4)
134-
tzinfo (2.0.4)
135+
tzinfo (2.0.5)
135136
concurrent-ruby (~> 1.0)
136-
tzinfo-data (1.2022.1)
137+
tzinfo-data (1.2022.2)
137138
tzinfo (>= 1.0.0)
138139
unf (0.1.4)
139140
unf_ext
140141
unf_ext (0.0.8.1)
141142
validate_email (0.1.6)
142143
activemodel (>= 3.0)
143144
mail (>= 2.2.5)
144-
validate_url (1.0.13)
145+
validate_url (1.0.15)
145146
activemodel (>= 3.0.0)
146147
public_suffix
147148
webfinger (1.2.0)
@@ -159,12 +160,12 @@ DEPENDENCIES
159160
fluent-plugin-kubernetes-metrics!
160161
fluent-plugin-prometheus (>= 2.0)
161162
fluent-plugin-record-modifier (= 2.1.0)
162-
fluent-plugin-splunk-hec (>= 1.2.5)
163-
fluentd (>= 1.14.2)
163+
fluent-plugin-splunk-hec (= 1.3.0)
164+
fluentd (>= 1.15.0)
164165
http_parser.rb (= 0.8.0)
165166
kubeclient (= 4.9.3)
166-
multi_json (= 1.14.1)
167-
oj (= 3.10.18)
167+
multi_json (~> 1.14)
168+
oj (~> 3.10)
168169
rack (>= 2.2.3.1)
169170

170171
BUNDLED WITH

fluent-plugin-kubernetes-metrics.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
2626
spec.add_development_dependency 'webmock', '~> 3.5.1'
2727
spec.add_runtime_dependency 'fluentd', '>= 1.9.1'
2828
spec.add_runtime_dependency 'kubeclient', '~> 4.9.3'
29-
spec.add_runtime_dependency 'multi_json', '~> 1.14.1'
30-
spec.add_runtime_dependency 'oj', '~> 3.10.2'
29+
spec.add_runtime_dependency 'multi_json', '~> 1.14'
30+
spec.add_runtime_dependency 'oj', '~> 3.10'
3131
end

0 commit comments

Comments
 (0)