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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87249672c8b4c4b51c61c09275f9b0a4a3fd91ed730360c7b1d6f59114832bc4
4
- data.tar.gz: ebafe8d59f1dd4e6321f7489c8df8ba5e012ecfc0ed6cab2ee22037b263cb5a1
3
+ metadata.gz: 2f410e3829237caf34033008ff210d278bd9e11e127e48f4611042065b2b5ff2
4
+ data.tar.gz: 8085f421bf1ca76e6d2cbc1e91c9168ddef470427591c4e386f204f20e9214e9
5
5
  SHA512:
6
- metadata.gz: 83eebfea01f821aaab9c8d9771253ed4b8e30c4c6430547696f19c462789c1bba51c36d9a2d57f63bb83c3f8d87379fe9d9f6561f6fc71bff01edb3f87f8ce5b
7
- data.tar.gz: 82b7b17dc7b4960cb221bc2e69b603770c44334a08ce3643acdbe8c033ccd2871bd4136eaa614dec8ccd0c3a6ecee9576f14bc7ee2bb465d519889505ebd9a44
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)
@@ -13,5 +13,5 @@
13
13
  # language governing permissions and limitations under the License.
14
14
 
15
15
  module FluentPluginKinesis
16
- VERSION = '3.2.1'
16
+ VERSION = '3.2.2'
17
17
  end
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.1
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-02-20 00:00:00.000000000 Z
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