aws-kclrb 2.2.0 → 2.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -1
  3. data/VERSION +1 -1
  4. data/pom.xml +22 -6
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fe35a8e6301e7882072cd73b0b342d9b3cb26f867dcaf834f8ec7c6d760d8fc
4
- data.tar.gz: e8dd6f2b816ffedaf7126744a24fe4bc132d7e72f5e842dcc020c101de8037bd
3
+ metadata.gz: 56e4c21707d0ed8151feefb0b8db2c1bc45b5cc37188d6d852d46c59aa9710e5
4
+ data.tar.gz: 52eb9cea509ea62f2f48e82f6209238b55af0eb92c53d50da5c3c499eab503f5
5
5
  SHA512:
6
- metadata.gz: 7625ab140dc4458c27b237a4a2e5da19d86dbdba93895f6121dd6dd2343f99ef33ec09300d90448ea24d8265f2e25cacb3ed6d02822382412125562bc778a64f
7
- data.tar.gz: 408ff66401f540e38d91ea938a9cf26d380979be7468793c9f5707d7c815412087116a718f2d34821468ee784615fdb4c2ec3db7280748bfdf0d221eb69325f9
6
+ metadata.gz: ab22b87d2ea3ce5a70c692f6e7007f97dc99e9d0fe388330a32662f60c9528813448ddf4abd4d3623da84b9628d78f1d20b99d7c4d5400af9ab11b8b20e857e0
7
+ data.tar.gz: b9e264ce00c164bd030f9d4d01f5a355f245db95ad88bc5718d89f9993e6bdb00518aed513c1b2b57ccac2ea0bc7ddfeee0257da103f5d2d18c12ce2ea2734ca
data/README.md CHANGED
@@ -196,7 +196,19 @@ all languages.
196
196
  * The [Amazon Kinesis Forum][kinesis-forum]
197
197
 
198
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
199
+ ### Release 2.2.2 (October 1, 2025)
200
+ * [#114](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/114) Upgrade amazon-kinesis-client from 2.7.0 to 2.7.2
201
+ * [#114](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/114) Upgrade aws-sdk from 2.25.64 to 2.33.0
202
+ * [#114](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/114) Upgrade org.apache.commons:commons-lang3 from 3.14.0 to 3.18.0
203
+ * [#114](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/114) Upgrade netty.version from 4.1.125 to 4.2.4.Final
204
+ * [#114](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/114) Upgrade fasterxml-jackson from 2.13.15 to 2.15.0
205
+
206
+
207
+ ### Release 2.2.1 (March 25, 2025)
208
+ * Downgrade logback from 1.5.16 to 1.3.15 to maintain JDK 8 compatability
209
+
210
+ ### Release 2.2.0 (March 12, 2025) - IMPORTANT: See section ``Migration to Ruby KCL 2.2.0`` to ensure upgrading does not break compatibility
211
+ #### :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.
200
212
  * [#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
213
  * 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
214
  * Multilangdaemon has been upgraded to use AWS SDK for Java 2.x. It no longer depends on AWS SDK for Java 1.x.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.2.0
1
+ 2.2.2
data/pom.xml CHANGED
@@ -2,13 +2,14 @@
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.25.64</awssdk.version>
5
+ <awssdk.version>2.33.0</awssdk.version>
6
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>
7
+ <kcl.version>2.7.2</kcl.version>
8
+ <netty.version>4.2.4.Final</netty.version>
9
9
  <netty-reactive.version>2.0.6</netty-reactive.version>
10
- <fasterxml-jackson.version>2.13.5</fasterxml-jackson.version>
11
- <logback.version>1.5.16</logback.version>
10
+ <fasterxml-jackson.version>2.15.0</fasterxml-jackson.version>
11
+ <!--do not upgrade to logback version 1.5.x, as this is not compatible with JDK 8-->
12
+ <logback.version>1.3.15</logback.version>
12
13
  </properties>
13
14
  <dependencies>
14
15
  <dependency>
@@ -171,6 +172,16 @@
171
172
  <artifactId>identity-spi</artifactId>
172
173
  <version>${awssdk.version}</version>
173
174
  </dependency>
175
+ <dependency>
176
+ <groupId>software.amazon.awssdk</groupId>
177
+ <artifactId>retries-spi</artifactId>
178
+ <version>${awssdk.version}</version>
179
+ </dependency>
180
+ <dependency>
181
+ <groupId>software.amazon.awssdk</groupId>
182
+ <artifactId>retries</artifactId>
183
+ <version>${awssdk.version}</version>
184
+ </dependency>
174
185
  <dependency>
175
186
  <groupId>io.netty</groupId>
176
187
  <artifactId>netty-codec-http</artifactId>
@@ -186,6 +197,11 @@
186
197
  <artifactId>netty-codec</artifactId>
187
198
  <version>${netty.version}</version>
188
199
  </dependency>
200
+ <dependency>
201
+ <groupId>io.netty</groupId>
202
+ <artifactId>netty-codec-base</artifactId>
203
+ <version>${netty.version}</version>
204
+ </dependency>
189
205
  <dependency>
190
206
  <groupId>io.netty</groupId>
191
207
  <artifactId>netty-transport</artifactId>
@@ -274,7 +290,7 @@
274
290
  <dependency>
275
291
  <groupId>org.apache.commons</groupId>
276
292
  <artifactId>commons-lang3</artifactId>
277
- <version>3.14.0</version>
293
+ <version>3.18.0</version>
278
294
  </dependency>
279
295
  <dependency>
280
296
  <groupId>org.slf4j</groupId>
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.2.0
4
+ version: 2.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: 2025-03-12 00:00:00.000000000 Z
11
+ date: 2025-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json