aws-kclrb 2.1.2 → 2.2.1
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 +23 -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: 4dd6ede1a7aa0466ef8e1723c123e8bb7f85fdf402dc07ce3c072fa35fae0a1b
|
4
|
+
data.tar.gz: 27e720ee910c747987d98a8f57947bef22f8a8c06cf77a281f855201b5cdd667
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8e7e26dc290f51b5afaa8ade16c5b54992a43966612c3538533fe792eb2e7e0987a30c82608d3a315b72451ee6b36fef9dad30b712fd86c47bc85d20dafd6d8
|
7
|
+
data.tar.gz: b004c2af8b27f7068e1cd70dc5e6afafc779566a15ff9e78db0bdf55aa214ad0cfdd28c392d1d73978749655ae22102131ac4391d61c66a7dc8fe14e1a6e14d4
|
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,17 @@ all languages.
|
|
186
196
|
* The [Amazon Kinesis Forum][kinesis-forum]
|
187
197
|
|
188
198
|
## Release Notes
|
199
|
+
### Release 2.2.1 (March 25, 2025)
|
200
|
+
* Downgrade logback from 1.5.16 to 1.3.15 to maintain JDK 8 compatability
|
201
|
+
|
202
|
+
### Release 2.2.0 (March 12, 2025) - IMPORTANT: See section ``Migration to Ruby KCL 2.2.0`` to ensure upgrading does not break compatibility
|
203
|
+
#### :warning: [BREAKING CHANGES] - Release 2.2.0 contains a dependency version that is not compatible with JDK 8. Please upgrade to a later version if your KCL application requires JDK 8.
|
204
|
+
* [#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/).
|
205
|
+
* The Glue Schema Registry integration functionality no longer depends on AWS SDK for Java 1.x. Previously, it required this as a transient dependency.
|
206
|
+
* Multilangdaemon has been upgraded to use AWS SDK for Java 2.x. It no longer depends on AWS SDK for Java 1.x.
|
207
|
+
* [#89](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/89) Upgrade logback.version from 1.3.14 to 1.5.16
|
208
|
+
* [#89](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/89) Upgrade netty.version from 4.1.108.Final to 4.1.118.Final
|
209
|
+
|
189
210
|
### Release 2.1.2 (January 22, 2025)
|
190
211
|
* 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
212
|
|
@@ -235,7 +256,7 @@ all languages.
|
|
235
256
|
[amazon-kcl-github]: https://github.com/awslabs/amazon-kinesis-client
|
236
257
|
[amazon-kinesis-python-github]: https://github.com/awslabs/amazon-kinesis-client-python
|
237
258
|
[multi-lang-daemon]: https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/multilang/package-info.java
|
238
|
-
[
|
259
|
+
[DefaultCredentialsProvider]: https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/auth/credentials/DefaultCredentialsProvider.html
|
239
260
|
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169
|
240
261
|
[aws-ruby-sdk-gem]: https://rubygems.org/gems/aws-sdk
|
241
262
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1
|
1
|
+
2.2.1
|
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.3.
|
11
|
+
<logback.version>1.3.15</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.1
|
4
|
+
version: 2.2.1
|
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-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|