aws-kclrb 2.1.1 → 2.2.0
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/README.md +21 -2
- data/VERSION +1 -1
- data/pom.xml +59 -18
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7fe35a8e6301e7882072cd73b0b342d9b3cb26f867dcaf834f8ec7c6d760d8fc
|
4
|
+
data.tar.gz: e8dd6f2b816ffedaf7126744a24fe4bc132d7e72f5e842dcc020c101de8037bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7625ab140dc4458c27b237a4a2e5da19d86dbdba93895f6121dd6dd2343f99ef33ec09300d90448ea24d8265f2e25cacb3ed6d02822382412125562bc778a64f
|
7
|
+
data.tar.gz: 408ff66401f540e38d91ea938a9cf26d380979be7468793c9f5707d7c815412087116a718f2d34821468ee784615fdb4c2ec3db7280748bfdf0d221eb69325f9
|
data/README.md
CHANGED
@@ -51,7 +51,7 @@ Before running the samples, you'll want to make sure that your environment is
|
|
51
51
|
configured to allow the samples to use your
|
52
52
|
[AWS Security Credentials](http://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html).
|
53
53
|
|
54
|
-
By default the samples use the [
|
54
|
+
By default the samples use the [DefaultCredentialsProvider][DefaultCredentialsProvider]
|
55
55
|
so you'll want to make your credentials available to one of the credentials providers in that
|
56
56
|
provider chain. There are several ways to do this such as providing a `~/.aws/credentials` file,
|
57
57
|
or if you're running on Amazon EC2, you can associate an IAM role with your instance with appropriate
|
@@ -60,6 +60,16 @@ access.
|
|
60
60
|
For questions regarding [Amazon Kinesis Service][amazon-kinesis] and the client libraries please check the
|
61
61
|
[official documentation][amazon-kinesis-docs] as well as the [Amazon Kinesis Forums][kinesis-forum].
|
62
62
|
|
63
|
+
## 🚨Important: Migration to Ruby KCL 2.2.0 or later with MultiLangDaemon - Credential Provider Changes Required
|
64
|
+
Java KCL version 2.7.0 and later uses AWS SDK for Java 2.x instead of AWS SDK for Java 1.x. For the KCL Ruby 2.x versions,
|
65
|
+
v2.2.0 is the first Ruby release to use Java KCL 2.7.0. All MultiLangDaemon users upgrading from earlier versions must update
|
66
|
+
their credential provider configuration in the `.properties` file to use credentials provider name for AWS SDK for Java 2.x.
|
67
|
+
Failure to do this will cause your multilang KCL application to fail during startup with credential provider construction errors.
|
68
|
+
Please check the following link for the credentials provider mapping and MultiLangDaemon credentials provider configuration guide
|
69
|
+
|
70
|
+
- [AWS SDK for Java 1.x to 2.x Credentials Provider Mapping](aws.amazon.com/sdk-for-java/latest/developer-guide/migration-client-credentials.html#credentials-changes-mapping)
|
71
|
+
- [KCL Multilang Credentials Provider Configuration Guide](https://github.com/aws/amazon-kinesis-client/blob/master/docs/multilang/configuring-credential-providers.md)
|
72
|
+
|
63
73
|
## Running the Sample
|
64
74
|
|
65
75
|
Using the Amazon KCL for Ruby package requires the [MultiLangDaemon][multi-lang-daemon] which
|
@@ -186,6 +196,15 @@ all languages.
|
|
186
196
|
* The [Amazon Kinesis Forum][kinesis-forum]
|
187
197
|
|
188
198
|
## Release Notes
|
199
|
+
### Release 2.2.0 (2025-03-12) - IMPORTANT: See section ``Migration to Ruby KCL 2.2.0`` to ensure upgrading does not break compatibility
|
200
|
+
* [#1444](https://github.com/awslabs/amazon-kinesis-client/pull/1444) Fully remove dependency on the AWS SDK for Java 1.x which will reach [end-of-support by December 31st, 2025](https://aws.amazon.com/blogs/developer/announcing-end-of-support-for-aws-sdk-for-java-v1-x-on-december-31-2025/).
|
201
|
+
* The Glue Schema Registry integration functionality no longer depends on AWS SDK for Java 1.x. Previously, it required this as a transient dependency.
|
202
|
+
* Multilangdaemon has been upgraded to use AWS SDK for Java 2.x. It no longer depends on AWS SDK for Java 1.x.
|
203
|
+
* [#89](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/89) Upgrade logback.version from 1.3.14 to 1.5.16
|
204
|
+
* [#89](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/89) Upgrade netty.version from 4.1.108.Final to 4.1.118.Final
|
205
|
+
|
206
|
+
### Release 2.1.2 (January 22, 2025)
|
207
|
+
* Upgraded to use version 2.6.1 of the [Amazon Kinesis Client library](https://github.com/awslabs/amazon-kinesis-client/blob/v2.6.1/CHANGELOG.md#release-261-2024-12-13).
|
189
208
|
|
190
209
|
### Release 2.1.1 (February 21, 2023)
|
191
210
|
* [#69](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/69) Include `pom.xml` in the gemspec
|
@@ -233,7 +252,7 @@ all languages.
|
|
233
252
|
[amazon-kcl-github]: https://github.com/awslabs/amazon-kinesis-client
|
234
253
|
[amazon-kinesis-python-github]: https://github.com/awslabs/amazon-kinesis-client-python
|
235
254
|
[multi-lang-daemon]: https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/multilang/package-info.java
|
236
|
-
[
|
255
|
+
[DefaultCredentialsProvider]: https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/auth/credentials/DefaultCredentialsProvider.html
|
237
256
|
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169
|
238
257
|
[aws-ruby-sdk-gem]: https://rubygems.org/gems/aws-sdk
|
239
258
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.2.0
|
data/pom.xml
CHANGED
@@ -2,23 +2,24 @@
|
|
2
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3
3
|
<modelVersion>4.0.0</modelVersion>
|
4
4
|
<properties>
|
5
|
-
<awssdk.version>2.
|
6
|
-
<aws-java-sdk.version>1.12.
|
7
|
-
<
|
5
|
+
<awssdk.version>2.25.64</awssdk.version>
|
6
|
+
<aws-java-sdk.version>1.12.668</aws-java-sdk.version>
|
7
|
+
<kcl.version>2.7.0</kcl.version>
|
8
|
+
<netty.version>4.1.118.Final</netty.version>
|
8
9
|
<netty-reactive.version>2.0.6</netty-reactive.version>
|
9
|
-
<fasterxml-jackson.version>2.13.
|
10
|
-
<logback.version>1.
|
10
|
+
<fasterxml-jackson.version>2.13.5</fasterxml-jackson.version>
|
11
|
+
<logback.version>1.5.16</logback.version>
|
11
12
|
</properties>
|
12
13
|
<dependencies>
|
13
14
|
<dependency>
|
14
15
|
<groupId>software.amazon.kinesis</groupId>
|
15
16
|
<artifactId>amazon-kinesis-client-multilang</artifactId>
|
16
|
-
<version
|
17
|
+
<version>${kcl.version}</version>
|
17
18
|
</dependency>
|
18
19
|
<dependency>
|
19
20
|
<groupId>software.amazon.kinesis</groupId>
|
20
21
|
<artifactId>amazon-kinesis-client</artifactId>
|
21
|
-
<version
|
22
|
+
<version>${kcl.version}</version>
|
22
23
|
</dependency>
|
23
24
|
<dependency>
|
24
25
|
<groupId>software.amazon.awssdk</groupId>
|
@@ -135,6 +136,41 @@
|
|
135
136
|
<artifactId>apache-client</artifactId>
|
136
137
|
<version>${awssdk.version}</version>
|
137
138
|
</dependency>
|
139
|
+
<dependency>
|
140
|
+
<groupId>software.amazon.awssdk</groupId>
|
141
|
+
<artifactId>arns</artifactId>
|
142
|
+
<version>${awssdk.version}</version>
|
143
|
+
</dependency>
|
144
|
+
<dependency>
|
145
|
+
<groupId>software.amazon.awssdk</groupId>
|
146
|
+
<artifactId>http-auth-spi</artifactId>
|
147
|
+
<version>${awssdk.version}</version>
|
148
|
+
</dependency>
|
149
|
+
<dependency>
|
150
|
+
<groupId>software.amazon.awssdk</groupId>
|
151
|
+
<artifactId>http-auth</artifactId>
|
152
|
+
<version>${awssdk.version}</version>
|
153
|
+
</dependency>
|
154
|
+
<dependency>
|
155
|
+
<groupId>software.amazon.awssdk</groupId>
|
156
|
+
<artifactId>http-auth-aws</artifactId>
|
157
|
+
<version>${awssdk.version}</version>
|
158
|
+
</dependency>
|
159
|
+
<dependency>
|
160
|
+
<groupId>software.amazon.awssdk</groupId>
|
161
|
+
<artifactId>checksums-spi</artifactId>
|
162
|
+
<version>${awssdk.version}</version>
|
163
|
+
</dependency>
|
164
|
+
<dependency>
|
165
|
+
<groupId>software.amazon.awssdk</groupId>
|
166
|
+
<artifactId>checksums</artifactId>
|
167
|
+
<version>${awssdk.version}</version>
|
168
|
+
</dependency>
|
169
|
+
<dependency>
|
170
|
+
<groupId>software.amazon.awssdk</groupId>
|
171
|
+
<artifactId>identity-spi</artifactId>
|
172
|
+
<version>${awssdk.version}</version>
|
173
|
+
</dependency>
|
138
174
|
<dependency>
|
139
175
|
<groupId>io.netty</groupId>
|
140
176
|
<artifactId>netty-codec-http</artifactId>
|
@@ -203,7 +239,7 @@
|
|
203
239
|
<dependency>
|
204
240
|
<groupId>com.google.guava</groupId>
|
205
241
|
<artifactId>guava</artifactId>
|
206
|
-
<version>
|
242
|
+
<version>32.1.1-jre</version>
|
207
243
|
</dependency>
|
208
244
|
<dependency>
|
209
245
|
<groupId>com.google.code.findbugs</groupId>
|
@@ -233,22 +269,22 @@
|
|
233
269
|
<dependency>
|
234
270
|
<groupId>com.google.protobuf</groupId>
|
235
271
|
<artifactId>protobuf-java</artifactId>
|
236
|
-
<version>
|
272
|
+
<version>4.27.5</version>
|
237
273
|
</dependency>
|
238
274
|
<dependency>
|
239
275
|
<groupId>org.apache.commons</groupId>
|
240
276
|
<artifactId>commons-lang3</artifactId>
|
241
|
-
<version>3.
|
277
|
+
<version>3.14.0</version>
|
242
278
|
</dependency>
|
243
279
|
<dependency>
|
244
280
|
<groupId>org.slf4j</groupId>
|
245
281
|
<artifactId>slf4j-api</artifactId>
|
246
|
-
<version>2.0.
|
282
|
+
<version>2.0.13</version>
|
247
283
|
</dependency>
|
248
284
|
<dependency>
|
249
285
|
<groupId>io.reactivex.rxjava3</groupId>
|
250
286
|
<artifactId>rxjava</artifactId>
|
251
|
-
<version>3.1.
|
287
|
+
<version>3.1.8</version>
|
252
288
|
</dependency>
|
253
289
|
<dependency>
|
254
290
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
@@ -296,14 +332,19 @@
|
|
296
332
|
<version>${aws-java-sdk.version}</version>
|
297
333
|
</dependency>
|
298
334
|
<dependency>
|
299
|
-
<groupId>
|
335
|
+
<groupId>com.amazonaws</groupId>
|
336
|
+
<artifactId>aws-java-sdk-sts</artifactId>
|
337
|
+
<version>${aws-java-sdk.version}</version>
|
338
|
+
</dependency>
|
339
|
+
<dependency>
|
340
|
+
<groupId>com.amazon.ion</groupId>
|
300
341
|
<artifactId>ion-java</artifactId>
|
301
|
-
<version>1.
|
342
|
+
<version>1.11.4</version>
|
302
343
|
</dependency>
|
303
344
|
<dependency>
|
304
345
|
<groupId>software.amazon.glue</groupId>
|
305
346
|
<artifactId>schema-registry-serde</artifactId>
|
306
|
-
<version>1.1.
|
347
|
+
<version>1.1.19</version>
|
307
348
|
</dependency>
|
308
349
|
<dependency>
|
309
350
|
<groupId>joda-time</groupId>
|
@@ -328,7 +369,7 @@
|
|
328
369
|
<dependency>
|
329
370
|
<groupId>commons-io</groupId>
|
330
371
|
<artifactId>commons-io</artifactId>
|
331
|
-
<version>2.
|
372
|
+
<version>2.16.1</version>
|
332
373
|
</dependency>
|
333
374
|
<dependency>
|
334
375
|
<groupId>commons-logging</groupId>
|
@@ -338,7 +379,7 @@
|
|
338
379
|
<dependency>
|
339
380
|
<groupId>org.apache.commons</groupId>
|
340
381
|
<artifactId>commons-collections4</artifactId>
|
341
|
-
<version>4.
|
382
|
+
<version>4.4</version>
|
342
383
|
</dependency>
|
343
384
|
<dependency>
|
344
385
|
<groupId>commons-beanutils</groupId>
|
@@ -351,4 +392,4 @@
|
|
351
392
|
<version>3.2.2</version>
|
352
393
|
</dependency>
|
353
394
|
</dependencies>
|
354
|
-
</project>
|
395
|
+
</project>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-kclrb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.0'
|
27
27
|
description: A ruby interface for the Amazon Kinesis Client Library MultiLangDaemon
|
28
|
-
email:
|
28
|
+
email:
|
29
29
|
executables: []
|
30
30
|
extensions: []
|
31
31
|
extra_rdoc_files: []
|
@@ -51,7 +51,7 @@ homepage: http://github.com/aws/amazon-kinesis-client-ruby
|
|
51
51
|
licenses:
|
52
52
|
- Apache-2.0
|
53
53
|
metadata: {}
|
54
|
-
post_install_message:
|
54
|
+
post_install_message:
|
55
55
|
rdoc_options: []
|
56
56
|
require_paths:
|
57
57
|
- lib
|
@@ -66,8 +66,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
66
|
- !ruby/object:Gem::Version
|
67
67
|
version: '0'
|
68
68
|
requirements: []
|
69
|
-
rubygems_version: 3.3.
|
70
|
-
signing_key:
|
69
|
+
rubygems_version: 3.0.3.1
|
70
|
+
signing_key:
|
71
71
|
specification_version: 4
|
72
72
|
summary: Amazon Kinesis Client Library for Ruby
|
73
73
|
test_files: []
|