fluent-plugin-kinesis 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/fluent-plugin-kinesis.gemspec +1 -1
- data/lib/fluent/plugin/kinesis_helper/client.rb +3 -1
- data/lib/fluent_plugin_kinesis/version.rb +1 -1
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f410e3829237caf34033008ff210d278bd9e11e127e48f4611042065b2b5ff2
|
|
4
|
+
data.tar.gz: 8085f421bf1ca76e6d2cbc1e91c9168ddef470427591c4e386f204f20e9214e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ea0c5855780a12ff28de449a5def77ca74b21d455a72098b2da8feb3e67847c4ceb4d562739f84dece5fa91f448d6a665838da19e539234458b3a0900bb768b
|
|
7
|
+
data.tar.gz: '0844b285486b2bb81e5d18bed60ebdee24dce74e4a1f00a28b0d6afa8af69f6c05fa016aa884424e8e61c232dc506c53ec1bf560f3b6ab228ce5f7141e95db17'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 3.2.2
|
|
4
|
+
|
|
5
|
+
- Enhancement - Make more strict gem pinning to deal with google-protobuf requiring Ruby 2.5+ : [#199](https://github.com/awslabs/aws-fluent-plugin-kinesis/pull/199)
|
|
6
|
+
- Bug - Fix MissingRegionError when http_proxy and endpoint_url are specified : [#197](https://github.com/awslabs/aws-fluent-plugin-kinesis/pull/197)
|
|
7
|
+
|
|
3
8
|
## 3.2.1
|
|
4
9
|
|
|
5
10
|
- Enhancement - Use Fluent::MessagePackFactory class methods instead of Mixin with Fluentd >= v1.8 : [#194](https://github.com/awslabs/aws-fluent-plugin-kinesis/issues/194) [#195](https://github.com/awslabs/aws-fluent-plugin-kinesis/pull/195)
|
|
@@ -55,7 +55,7 @@ Gem::Specification.new do |spec|
|
|
|
55
55
|
# https://github.com/aws/aws-sdk-ruby/commit/e26577d2a426a4be79cd2d9edc1a4a4176e388ba#diff-10f50e27b30c3dc522b3c25db5782e2e
|
|
56
56
|
spec.add_dependency "aws-sdk-firehose", "~> 1", "!= 1.5", "!= 1.9", "!= 1.15"
|
|
57
57
|
|
|
58
|
-
spec.add_dependency "google-protobuf", "~> 3"
|
|
58
|
+
spec.add_dependency "google-protobuf", "~> 3", "< 3.12"
|
|
59
59
|
|
|
60
60
|
spec.add_development_dependency "bundler", ">= 1.10"
|
|
61
61
|
spec.add_development_dependency "rake", ">= 10.0"
|
|
@@ -133,7 +133,9 @@ module Fluent
|
|
|
133
133
|
credentials_options[:duration_seconds] = c.duration_seconds if c.duration_seconds
|
|
134
134
|
credentials_options[:external_id] = c.external_id if c.external_id
|
|
135
135
|
credentials_options[:sts_endpoint_url] = c.sts_endpoint_url if c.sts_endpoint_url
|
|
136
|
-
if c.sts_http_proxy and c.sts_endpoint_url
|
|
136
|
+
if @region and c.sts_http_proxy and c.sts_endpoint_url
|
|
137
|
+
credentials_options[:client] = Aws::STS::Client.new(region: @region, http_proxy: c.sts_http_proxy, endpoint: c.sts_endpoint_url)
|
|
138
|
+
elsif c.sts_http_proxy and c.sts_endpoint_url
|
|
137
139
|
credentials_options[:client] = Aws::STS::Client.new(http_proxy: c.sts_http_proxy, endpoint: c.sts_endpoint_url)
|
|
138
140
|
elsif @region and c.sts_http_proxy
|
|
139
141
|
credentials_options[:client] = Aws::STS::Client.new(region: @region, http_proxy: c.sts_http_proxy)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-kinesis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-05-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -101,6 +101,9 @@ dependencies:
|
|
|
101
101
|
- - "~>"
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
103
|
version: '3'
|
|
104
|
+
- - "<"
|
|
105
|
+
- !ruby/object:Gem::Version
|
|
106
|
+
version: '3.12'
|
|
104
107
|
type: :runtime
|
|
105
108
|
prerelease: false
|
|
106
109
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -108,6 +111,9 @@ dependencies:
|
|
|
108
111
|
- - "~>"
|
|
109
112
|
- !ruby/object:Gem::Version
|
|
110
113
|
version: '3'
|
|
114
|
+
- - "<"
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '3.12'
|
|
111
117
|
- !ruby/object:Gem::Dependency
|
|
112
118
|
name: bundler
|
|
113
119
|
requirement: !ruby/object:Gem::Requirement
|