aws-kclrb 2.1.2 → 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 +19 -2
- data/VERSION +1 -1
- data/pom.xml +3 -3
- metadata +2 -2
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,13 @@ 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
|
+
|
189
206
|
### Release 2.1.2 (January 22, 2025)
|
190
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).
|
191
208
|
|
@@ -235,7 +252,7 @@ all languages.
|
|
235
252
|
[amazon-kcl-github]: https://github.com/awslabs/amazon-kinesis-client
|
236
253
|
[amazon-kinesis-python-github]: https://github.com/awslabs/amazon-kinesis-client-python
|
237
254
|
[multi-lang-daemon]: https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/multilang/package-info.java
|
238
|
-
[
|
255
|
+
[DefaultCredentialsProvider]: https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/auth/credentials/DefaultCredentialsProvider.html
|
239
256
|
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169
|
240
257
|
[aws-ruby-sdk-gem]: https://rubygems.org/gems/aws-sdk
|
241
258
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.2.0
|
data/pom.xml
CHANGED
@@ -4,11 +4,11 @@
|
|
4
4
|
<properties>
|
5
5
|
<awssdk.version>2.25.64</awssdk.version>
|
6
6
|
<aws-java-sdk.version>1.12.668</aws-java-sdk.version>
|
7
|
-
<kcl.version>2.
|
8
|
-
<netty.version>4.1.
|
7
|
+
<kcl.version>2.7.0</kcl.version>
|
8
|
+
<netty.version>4.1.118.Final</netty.version>
|
9
9
|
<netty-reactive.version>2.0.6</netty-reactive.version>
|
10
10
|
<fasterxml-jackson.version>2.13.5</fasterxml-jackson.version>
|
11
|
-
<logback.version>1.
|
11
|
+
<logback.version>1.5.16</logback.version>
|
12
12
|
</properties>
|
13
13
|
<dependencies>
|
14
14
|
<dependency>
|
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
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|