Skip to content

Commit 276e57c

Browse files
authored
Upgrade to KCL 2.6.1 (#264)
* Upgrade KCL version to 2.6.1 * Bump Java KCL dependencies
1 parent 3868914 commit 276e57c

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,9 @@ all languages.
146146

147147
## Release Notes
148148

149+
### Release 2.1.6 (January 22, 2025)
150+
* Updates KCL version to use KCL 2.6.1. Brings in [changes from the KCL 2.6.1 release][2.6.1 changelog].
151+
149152
### Release 2.1.5 (May 29, 2024)
150153
* Fixed CI due to different macOS architecture [PR #246](https://github.com/awslabs/amazon-kinesis-client-python/pull/246)
151154
* Added necessary Java SDKs to run sample [PR #248](https://github.com/awslabs/amazon-kinesis-client-python/pull/248)
@@ -342,6 +345,7 @@ all languages.
342345
[boto]: http://boto.readthedocs.org/en/latest/
343346
[DefaultCredentialsProvider]: https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/auth/credentials/DefaultCredentialsProvider.html
344347
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169
348+
[2.6.1 changelog]: https://github.com/awslabs/amazon-kinesis-client/blob/v2.6.1/CHANGELOG.md#release-261-2024-12-13
345349

346350
## License
347351

pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<properties>
5-
<awssdk.version>2.25.11</awssdk.version>
5+
<awssdk.version>2.25.64</awssdk.version>
66
<aws-java-sdk.version>1.12.668</aws-java-sdk.version>
7-
<kcl.version>2.5.8</kcl.version>
7+
<kcl.version>2.6.1</kcl.version>
88
<netty.version>4.1.108.Final</netty.version>
99
<netty-reactive.version>2.0.6</netty-reactive.version>
1010
<fasterxml-jackson.version>2.13.5</fasterxml-jackson.version>
11-
<logback.version>1.3.12</logback.version>
11+
<logback.version>1.3.14</logback.version>
1212
</properties>
1313
<dependencies>
1414
<dependency>
@@ -269,22 +269,22 @@
269269
<dependency>
270270
<groupId>com.google.protobuf</groupId>
271271
<artifactId>protobuf-java</artifactId>
272-
<version>3.21.7</version>
272+
<version>4.27.5</version>
273273
</dependency>
274274
<dependency>
275275
<groupId>org.apache.commons</groupId>
276276
<artifactId>commons-lang3</artifactId>
277-
<version>3.12.0</version>
277+
<version>3.14.0</version>
278278
</dependency>
279279
<dependency>
280280
<groupId>org.slf4j</groupId>
281281
<artifactId>slf4j-api</artifactId>
282-
<version>2.0.5</version>
282+
<version>2.0.13</version>
283283
</dependency>
284284
<dependency>
285285
<groupId>io.reactivex.rxjava3</groupId>
286286
<artifactId>rxjava</artifactId>
287-
<version>3.1.5</version>
287+
<version>3.1.8</version>
288288
</dependency>
289289
<dependency>
290290
<groupId>com.fasterxml.jackson.dataformat</groupId>
@@ -344,7 +344,7 @@
344344
<dependency>
345345
<groupId>software.amazon.glue</groupId>
346346
<artifactId>schema-registry-serde</artifactId>
347-
<version>1.1.13</version>
347+
<version>1.1.19</version>
348348
</dependency>
349349
<dependency>
350350
<groupId>joda-time</groupId>
@@ -369,7 +369,7 @@
369369
<dependency>
370370
<groupId>commons-io</groupId>
371371
<artifactId>commons-io</artifactId>
372-
<version>2.11.0</version>
372+
<version>2.16.1</version>
373373
</dependency>
374374
<dependency>
375375
<groupId>commons-logging</groupId>
@@ -379,7 +379,7 @@
379379
<dependency>
380380
<groupId>org.apache.commons</groupId>
381381
<artifactId>commons-collections4</artifactId>
382-
<version>4.2</version>
382+
<version>4.4</version>
383383
</dependency>
384384
<dependency>
385385
<groupId>commons-beanutils</groupId>

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
PACKAGE_NAME = 'amazon_kclpy'
4444
JAR_DIRECTORY = os.path.join(PACKAGE_NAME, 'jars')
45-
PACKAGE_VERSION = '2.1.5'
45+
PACKAGE_VERSION = '2.1.6'
4646
PYTHON_REQUIREMENTS = [
4747
'boto3',
4848
# argparse is part of python2.7 but must be declared for python2.6

0 commit comments

Comments
 (0)