aws-kclrb 3.0.0 → 3.1.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 -1
- data/VERSION +1 -1
- data/pom.xml +24 -9
- 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: '0590e08cb8aeb08e0dedec5c6fb485c8f9fe9971882367bbdb26712003681a32'
|
4
|
+
data.tar.gz: '0760288c8a697240e83875e4127f7a6a2c2bf715f33c4e1184912a7419299b65'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdc90bc9c8804ec3f0426c6c1e24396506065f3f77fd0df6a26070281a8c557f505fd7a5a0c83dd14876be956f199576c2c2a592d63e35fb36a7d455c643e291
|
7
|
+
data.tar.gz: 1ec72d31c3ced10560b34f8ddbaaafbae44b8b64f4a40f224ebe14e753e47b880991d05baf3a0b35961cece247a40ae330a9d70c7ed6306df942c258ed9647a4
|
data/README.md
CHANGED
@@ -85,13 +85,21 @@ The following defaults are used in the sample application:
|
|
85
85
|
|
86
86
|
### Running the Data Producer
|
87
87
|
|
88
|
-
To run the data producer, run the following commands:
|
88
|
+
To run the data producer indefinitely, run the following commands:
|
89
89
|
|
90
90
|
```sh
|
91
91
|
cd samples
|
92
92
|
rake run_producer
|
93
93
|
```
|
94
94
|
|
95
|
+
To run the data producer with a timeout, run the following commands:
|
96
|
+
|
97
|
+
```sh
|
98
|
+
cd samples
|
99
|
+
rake "run_producer[t]"
|
100
|
+
```
|
101
|
+
* *note: replace t with number of seconds to run the producer*
|
102
|
+
|
95
103
|
#### Notes
|
96
104
|
|
97
105
|
* The [AWS Ruby SDK gem][aws-ruby-sdk-gem] for Kinesis needs to be installed as a pre-requisite. To install,
|
@@ -186,6 +194,16 @@ all languages.
|
|
186
194
|
* The [Amazon Kinesis Forum][kinesis-forum]
|
187
195
|
|
188
196
|
## Release Notes
|
197
|
+
### Release 3.1.0 (October 1, 2025)
|
198
|
+
* [#108](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/108) Add multi-lang support for leaseAssignmentIntervalMillis
|
199
|
+
* [#116](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/116) Upgrade amazon-kinesis-client from 3.0.0 to 3.1.3
|
200
|
+
* [#116](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/116) Upgrade aws-sdk from 2.25.64 to 2.33.0
|
201
|
+
* [#116](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/116) Upgrade netty.version from 4.1.108.Final to 4.2.4.Final
|
202
|
+
* [#116](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/116) Upgrade fasterxml-jackson from 2.13.5 to 2.15.0
|
203
|
+
* [#116](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/116) Upgrade checker-qual from 2.5.2 to 3.49.4
|
204
|
+
* [#116](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/116) Upgrade org.apache.commons:commons-lang3 from 3.14.0 to 3.18.0
|
205
|
+
* [#93](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/93) Upgrade logback.version from 1.3.14 to 1.13.15
|
206
|
+
* [#96](https://github.com/awslabs/amazon-kinesis-client-ruby/pull/96) Upgrade commons-beanutils from 1.9.4 to 1.11.0
|
189
207
|
|
190
208
|
### Release 3.0.0 (November 6, 2024)
|
191
209
|
* New lease assignment / load balancing algorithm
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.1.0
|
data/pom.xml
CHANGED
@@ -2,12 +2,12 @@
|
|
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
|
-
<kcl.version>3.
|
7
|
-
<netty.version>4.
|
5
|
+
<awssdk.version>2.33.0</awssdk.version>
|
6
|
+
<kcl.version>3.1.3</kcl.version>
|
7
|
+
<netty.version>4.2.4.Final</netty.version>
|
8
8
|
<netty-reactive.version>2.0.6</netty-reactive.version>
|
9
|
-
<fasterxml-jackson.version>2.
|
10
|
-
<logback.version>1.3.
|
9
|
+
<fasterxml-jackson.version>2.15.0</fasterxml-jackson.version>
|
10
|
+
<logback.version>1.3.15</logback.version>
|
11
11
|
</properties>
|
12
12
|
<dependencies>
|
13
13
|
<dependency>
|
@@ -182,6 +182,16 @@
|
|
182
182
|
<artifactId>identity-spi</artifactId>
|
183
183
|
<version>${awssdk.version}</version>
|
184
184
|
</dependency>
|
185
|
+
<dependency>
|
186
|
+
<groupId>software.amazon.awssdk</groupId>
|
187
|
+
<artifactId>retries-spi</artifactId>
|
188
|
+
<version>${awssdk.version}</version>
|
189
|
+
</dependency>
|
190
|
+
<dependency>
|
191
|
+
<groupId>software.amazon.awssdk</groupId>
|
192
|
+
<artifactId>retries</artifactId>
|
193
|
+
<version>${awssdk.version}</version>
|
194
|
+
</dependency>
|
185
195
|
<dependency>
|
186
196
|
<groupId>io.netty</groupId>
|
187
197
|
<artifactId>netty-codec-http</artifactId>
|
@@ -197,6 +207,11 @@
|
|
197
207
|
<artifactId>netty-codec</artifactId>
|
198
208
|
<version>${netty.version}</version>
|
199
209
|
</dependency>
|
210
|
+
<dependency>
|
211
|
+
<groupId>io.netty</groupId>
|
212
|
+
<artifactId>netty-codec-base</artifactId>
|
213
|
+
<version>${netty.version}</version>
|
214
|
+
</dependency>
|
200
215
|
<dependency>
|
201
216
|
<groupId>io.netty</groupId>
|
202
217
|
<artifactId>netty-transport</artifactId>
|
@@ -260,7 +275,7 @@
|
|
260
275
|
<dependency>
|
261
276
|
<groupId>org.checkerframework</groupId>
|
262
277
|
<artifactId>checker-qual</artifactId>
|
263
|
-
<version>
|
278
|
+
<version>3.49.4</version>
|
264
279
|
</dependency>
|
265
280
|
<dependency>
|
266
281
|
<groupId>com.google.errorprone</groupId>
|
@@ -285,7 +300,7 @@
|
|
285
300
|
<dependency>
|
286
301
|
<groupId>org.apache.commons</groupId>
|
287
302
|
<artifactId>commons-lang3</artifactId>
|
288
|
-
<version>3.
|
303
|
+
<version>3.18.0</version>
|
289
304
|
</dependency>
|
290
305
|
<dependency>
|
291
306
|
<groupId>org.slf4j</groupId>
|
@@ -391,7 +406,7 @@
|
|
391
406
|
<dependency>
|
392
407
|
<groupId>commons-beanutils</groupId>
|
393
408
|
<artifactId>commons-beanutils</artifactId>
|
394
|
-
<version>1.
|
409
|
+
<version>1.11.0</version>
|
395
410
|
</dependency>
|
396
411
|
<dependency>
|
397
412
|
<groupId>commons-collections</groupId>
|
@@ -399,4 +414,4 @@
|
|
399
414
|
<version>3.2.2</version>
|
400
415
|
</dependency>
|
401
416
|
</dependencies>
|
402
|
-
</project>
|
417
|
+
</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: 3.
|
4
|
+
version: 3.1.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:
|
11
|
+
date: 2025-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|