Skip to content

Commit 50b9d9e

Browse files
Release v2.2.0 (#269)
* Upgrade logback to 1.5.16 (#265) * 2.2.0 Release: Bump KCL version to 2.7.0, update documentation --------- Co-authored-by: lucienlu-aws <[email protected]>
1 parent d3715c8 commit 50b9d9e

File tree

5 files changed

+26
-13
lines changed

5 files changed

+26
-13
lines changed

.github/workflows/run-unit-tests.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
20-
# TODO: revert macOS-13 back to macOS-latest
21-
# macOS-latest switched architectures and does not have older versions of python available
22-
# https://github.com/actions/setup-python/issues/856
23-
os: [ubuntu-latest, macOS-13, windows-latest ]
19+
python-version: [3.8, 3.9, "3.10", 3.11]
20+
os: [ubuntu-latest, macOS-latest, windows-latest ]
2421

2522
steps:
2623
- uses: actions/checkout@v2

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,17 @@ access.
5555
For questions regarding Amazon Kinesis Service and the client libraries please visit the
5656
[Amazon Kinesis Forums][kinesis-forum]
5757

58+
## 🚨Important: Migration to Python KCL 2.2.0 or later with MultiLangDaemon - Credential Provider Changes Required
59+
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 Python 2.x versions,
60+
v2.2.0 is the first Python release to use Java KCL 2.7.0. All MultiLangDaemon users upgrading from earlier versions must update
61+
their credential provider configuration in the `.properties` file to use credentials provider name for AWS SDK for Java 2.x.
62+
Failure to do this will cause your multilang KCL application to fail during startup with credential provider construction errors.
63+
Please check the following link for the credentials provider mapping and MultiLangDaemon credentials provider configuration guide
64+
65+
- [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)
66+
- [KCL Multilang Credentials Provider Configuration Guide](https://github.com/aws/amazon-kinesis-client/blob/master/docs/multilang/configuring-credential-providers.md)
67+
68+
5869
## Running the Sample
5970

6071
Using the `amazon_kclpy` package requires the MultiLangDaemon which is provided
@@ -145,6 +156,12 @@ all languages.
145156
* The [Amazon Kinesis Forum][kinesis-forum]
146157

147158
## Release Notes
159+
### Release 2.2.0 (2025-03-12) - IMPORTANT: See section ``Migration to Python KCL 2.2.0`` to ensure upgrading does not break compatibility
160+
* [#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/).
161+
* The Glue Schema Registry integration functionality no longer depends on AWS SDK for Java 1.x. Previously, it required this as a transient dependency.
162+
* Multilangdaemon has been upgraded to use AWS SDK for Java 2.x. It no longer depends on AWS SDK for Java 1.x.
163+
* [#270](https://github.com/awslabs/amazon-kinesis-client-python/pull/270) Upgrade logback.version from 1.3.14 to 1.5.16
164+
* [#270](https://github.com/awslabs/amazon-kinesis-client-python/pull/270) Upgrade netty.version from 4.1.108.Final to 4.1.118.Final
148165

149166
### Release 2.1.6 (January 22, 2025)
150167
* Updates KCL version to use KCL 2.6.1. Brings in [changes from the KCL 2.6.1 release][2.6.1 changelog].

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<properties>
55
<awssdk.version>2.25.64</awssdk.version>
66
<aws-java-sdk.version>1.12.668</aws-java-sdk.version>
7-
<kcl.version>2.6.1</kcl.version>
7+
<kcl.version>2.7.0</kcl.version>
88
<netty.version>4.1.118.Final</netty.version>
99
<netty-reactive.version>2.0.6</netty-reactive.version>
1010
<fasterxml-jackson.version>2.13.5</fasterxml-jackson.version>

samples/sample.properties

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ streamName = kclpysample
1717
applicationName = PythonKCLSample
1818

1919
# Users can change the credentials provider the KCL will use to retrieve credentials.
20-
# The DefaultAWSCredentialsProviderChain checks several other providers, which is
20+
# Expected key name (case-sensitive):
21+
# AwsCredentialsProvider / AwsCredentialsProviderDynamoDB / AwsCredentialsProviderCloudWatch
22+
# The DefaultCredentialsProvider checks several other providers, which is
2123
# described here:
22-
# http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/auth/DefaultAWSCredentialsProviderChain.html
23-
#
24-
# For additional configuration, including nested properties, see:
25-
# https://github.com/awslabs/amazon-kinesis-client/blob/master/docs/multilang/configuring-credential-providers.md
26-
AWSCredentialsProvider = DefaultAWSCredentialsProviderChain
24+
# https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/auth/credentials/DefaultCredentialsProvider.html
25+
AwsCredentialsProvider = DefaultCredentialsProvider
2726

2827
# Appended to the user agent of the KCL. Does not impact the functionality of the
2928
# KCL in any other way.

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.6'
45+
PACKAGE_VERSION = '2.2.0'
4646
PYTHON_REQUIREMENTS = [
4747
'boto3',
4848
# argparse is part of python2.7 but must be declared for python2.6

0 commit comments

Comments
 (0)