Skip to content

Commit cd8d309

Browse files
authored
release 1.3.1 (#262)
1 parent 6abdd35 commit cd8d309

File tree

5 files changed

+39
-17
lines changed

5 files changed

+39
-17
lines changed

Gemfile.lock

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
PATH
22
remote: .
33
specs:
4-
fluent-plugin-splunk-hec (1.3.0)
4+
fluent-plugin-splunk-hec (1.3.1)
55
fluentd (>= 1.5)
6+
json-jwt (~> 1.15.0)
67
multi_json (~> 1.13)
78
net-http-persistent (~> 4.0)
89
openid_connect (~> 1.1.8)
910
prometheus-client (>= 2.1.0)
11+
rack-oauth2 (~> 1.19)
1012

1113
GEM
1214
remote: https://rubygems.org/
1315
specs:
14-
activemodel (7.0.3)
15-
activesupport (= 7.0.3)
16-
activesupport (7.0.3)
16+
activemodel (7.0.4)
17+
activesupport (= 7.0.4)
18+
activesupport (7.0.4)
1719
concurrent-ruby (~> 1.0, >= 1.0.2)
1820
i18n (>= 1.6, < 2)
1921
minitest (>= 5.1)
@@ -22,14 +24,20 @@ GEM
2224
public_suffix (>= 2.0.2, < 5.0)
2325
aes_key_wrap (1.1.0)
2426
attr_required (1.0.1)
25-
bindata (2.4.10)
27+
bindata (2.4.14)
2628
concurrent-ruby (1.1.10)
27-
connection_pool (2.2.5)
29+
connection_pool (2.3.0)
2830
cool.io (1.7.1)
2931
crack (0.4.5)
3032
rexml
3133
digest (3.1.0)
3234
docile (1.4.0)
35+
faraday (2.7.1)
36+
faraday-net_http (>= 2.0, < 3.1)
37+
ruby2_keywords (>= 0.0.4)
38+
faraday-follow_redirects (0.3.0)
39+
faraday (>= 1, < 3)
40+
faraday-net_http (3.0.2)
3341
fluentd (1.15.3)
3442
bundler
3543
cool.io (>= 1.4.5, < 2.0.0)
@@ -45,13 +53,14 @@ GEM
4553
hashdiff (1.0.1)
4654
http_parser.rb (0.8.0)
4755
httpclient (2.8.3)
48-
i18n (1.10.0)
56+
i18n (1.12.0)
4957
concurrent-ruby (~> 1.0)
5058
io-wait (0.2.1)
51-
json-jwt (1.13.0)
59+
json-jwt (1.15.3)
5260
activesupport (>= 4.2)
5361
aes_key_wrap
5462
bindata
63+
httpclient
5564
mail (2.7.1)
5665
mini_mime (>= 0.1.1)
5766
mini_mime (1.1.2)
@@ -81,14 +90,15 @@ GEM
8190
prometheus-client (4.0.0)
8291
public_suffix (4.0.6)
8392
rack (3.0.1)
84-
rack-oauth2 (1.19.0)
93+
rack-oauth2 (1.21.2)
8594
activesupport
8695
attr_required
8796
httpclient
8897
json-jwt (>= 1.11.0)
8998
rack (>= 2.1.0)
9099
rake (13.0.6)
91100
rexml (3.2.5)
101+
ruby2_keywords (0.0.5)
92102
serverengine (2.3.0)
93103
sigdump (~> 0.2.2)
94104
sigdump (0.2.4)
@@ -99,10 +109,11 @@ GEM
99109
simplecov-html (0.12.3)
100110
simplecov_json_formatter (0.1.3)
101111
strptime (0.2.5)
102-
swd (1.3.0)
112+
swd (2.0.2)
103113
activesupport (>= 3)
104114
attr_required (>= 0.0.5)
105-
httpclient (>= 2.4)
115+
faraday (~> 2.0)
116+
faraday-follow_redirects
106117
test-unit (3.5.3)
107118
power_assert
108119
timeout (0.2.0)
@@ -116,9 +127,10 @@ GEM
116127
validate_url (1.0.15)
117128
activemodel (>= 3.0.0)
118129
public_suffix
119-
webfinger (1.2.0)
130+
webfinger (2.1.2)
120131
activesupport
121-
httpclient (>= 2.4)
132+
faraday (~> 2.0)
133+
faraday-follow_redirects
122134
webmock (3.5.1)
123135
addressable (>= 2.3.6)
124136
crack (>= 0.3.2)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

docker/Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ gem 'activesupport', '~> 5.2.4.3'
1919
gem 'http_parser.rb', '=0.8.0'
2020
gem "rack", ">=3.0.0"
2121
gem "fluent-plugin-record-modifier", ">=2.1"
22+
gem 'json-jwt', '~> 1.15.0'
23+
gem 'rack-oauth2', '~> 1.19'
2224

2325

2426
gem 'fluent-plugin-splunk-hec', path: 'gem/'

docker/Gemfile.lock

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ GIT
1212
PATH
1313
remote: gem
1414
specs:
15-
fluent-plugin-splunk-hec (1.3.0)
15+
fluent-plugin-splunk-hec (1.3.1)
1616
fluentd (>= 1.5)
17+
json-jwt (~> 1.15.0)
1718
multi_json (~> 1.13)
1819
net-http-persistent (~> 4.0)
1920
openid_connect (~> 1.1.8)
2021
prometheus-client (>= 2.1.0)
22+
rack-oauth2 (~> 1.19)
2123

2224
GEM
2325
remote: https://rubygems.org/
@@ -33,7 +35,7 @@ GEM
3335
public_suffix (>= 2.0.2, < 5.0)
3436
aes_key_wrap (1.1.0)
3537
attr_required (1.0.1)
36-
bindata (2.4.10)
38+
bindata (2.4.14)
3739
concurrent-ruby (1.1.9)
3840
connection_pool (2.2.5)
3941
cool.io (1.7.1)
@@ -87,10 +89,11 @@ GEM
8789
httpclient (2.8.3)
8890
i18n (1.9.1)
8991
concurrent-ruby (~> 1.0)
90-
json-jwt (1.13.0)
92+
json-jwt (1.15.3)
9193
activesupport (>= 4.2)
9294
aes_key_wrap
9395
bindata
96+
httpclient
9497
jsonpath (1.1.0)
9598
multi_json
9699
lru_redux (1.1.0)
@@ -177,13 +180,15 @@ DEPENDENCIES
177180
fluent-plugin-systemd (= 1.0.2)
178181
fluentd (>= 1.15)
179182
http_parser.rb (= 0.8.0)
183+
json-jwt (~> 1.15.0)
180184
kubeclient!
181185
multi_json (~> 1.13)
182186
net-http-persistent (~> 4.0)
183187
oj (>= 3.11.2)
184188
openid_connect (~> 1.1.8)
185189
prometheus-client (>= 2.1.0)
186190
rack (>= 3.0.0)
191+
rack-oauth2 (~> 1.19)
187192

188193
BUNDLED WITH
189194
2.3.11

fluent-plugin-splunk-hec.gemspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ Gem::Specification.new do |spec|
3838
spec.add_runtime_dependency 'net-http-persistent', '~> 4.0'
3939
spec.add_runtime_dependency 'openid_connect', '~> 1.1.8'
4040
spec.add_runtime_dependency 'prometheus-client', '>= 2.1.0'
41+
spec.add_runtime_dependency 'json-jwt', '~> 1.15.0'
42+
spec.add_runtime_dependency 'rack-oauth2', '~> 1.19'
43+
4144

4245
spec.add_development_dependency 'bundler', '~> 2.0'
4346
spec.add_development_dependency 'rake', '>= 12.0'

0 commit comments

Comments
 (0)