From 3a1b02a593ca38e456c213bb0e513a6a3c0b7b8c Mon Sep 17 00:00:00 2001 From: Brendan Lynch Date: Wed, 11 Oct 2023 14:29:08 -0700 Subject: [PATCH 1/5] Bumped aws-glue-schema-registry version --- amazon-kinesis-client/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml index 7f7f5f4ca..217a8c90e 100644 --- a/amazon-kinesis-client/pom.xml +++ b/amazon-kinesis-client/pom.xml @@ -51,7 +51,7 @@ libsqlite4java ${project.build.directory}/test-lib 2.0.7 - 1.1.14 + 1.1.16 true From 00898607efa76238c81854c283d27ea5372009fc Mon Sep 17 00:00:00 2001 From: Brendan Lynch Date: Wed, 25 Oct 2023 15:14:03 -0700 Subject: [PATCH 2/5] Updated aws-glue-schema-registry to 1.1.17 --- amazon-kinesis-client/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml index 217a8c90e..b6595c96e 100644 --- a/amazon-kinesis-client/pom.xml +++ b/amazon-kinesis-client/pom.xml @@ -51,7 +51,7 @@ libsqlite4java ${project.build.directory}/test-lib 2.0.7 - 1.1.16 + 1.1.17 true From 2058f9fca155579ce76cd21f6f8cf2a978a55aec Mon Sep 17 00:00:00 2001 From: Brendan Lynch Date: Wed, 8 Nov 2023 16:01:00 -0800 Subject: [PATCH 3/5] Release of 2.5.3 --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- amazon-kinesis-client-multilang/pom.xml | 2 +- amazon-kinesis-client/pom.xml | 2 +- .../amazon/kinesis/retrieval/RetrievalConfig.java | 2 +- pom.xml | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9497e1cb..fdd10fb18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ For **1.x** release notes, please see [v1.x/CHANGELOG.md](https://github.com/awslabs/amazon-kinesis-client/blob/v1.x/CHANGELOG.md) --- +### Release 2.5.3 (November 8, 2023) +* [#1219]( https://github.com/awslabs/amazon-kinesis-client/pull/1219) Provided streamArn in getRecords request +* [#1216]( https://github.com/awslabs/amazon-kinesis-client/pull/1216) Updated AWS Glue Schema Registry from version 1.1.14 to 1.1.17. +* [#1205]( https://github.com/awslabs/amazon-kinesis-client/pull/1205) Updated the FAQ with impact of changing default checkpoint. +* [#1203]( https://github.com/awslabs/amazon-kinesis-client/pull/1203) Added links from README.md to FAQ and doc folder. +* [#1202]( https://github.com/awslabs/amazon-kinesis-client/pull/1202) Introduced a FAQ for Kinesis Client Library +* [#1200]( https://github.com/awslabs/amazon-kinesis-client/pull/1200) Added test case for StreamIdentifier serialization. + ### Release 2.5.2 (2023-08-07) * [#1184](https://github.com/awslabs/amazon-kinesis-client/pull/1184) [#367] Enhanced multi-lang `AWSCredentialsProvider=...` decoder and c… * [#1186](https://github.com/awslabs/amazon-kinesis-client/pull/1186) Provided documentation for multilang's new NestedPropertyKey enhancement. diff --git a/README.md b/README.md index 4d60678cf..581fdb7bb 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ The recommended way to use the KCL for Java is to consume it from Maven. software.amazon.kinesis amazon-kinesis-client - 2.5.1 + 2.5.3 ``` diff --git a/amazon-kinesis-client-multilang/pom.xml b/amazon-kinesis-client-multilang/pom.xml index bafa2bfab..173395d8b 100644 --- a/amazon-kinesis-client-multilang/pom.xml +++ b/amazon-kinesis-client-multilang/pom.xml @@ -21,7 +21,7 @@ amazon-kinesis-client-pom software.amazon.kinesis - 2.5.3-SNAPSHOT + 2.5.3 4.0.0 diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml index b6595c96e..76ca4d096 100644 --- a/amazon-kinesis-client/pom.xml +++ b/amazon-kinesis-client/pom.xml @@ -22,7 +22,7 @@ software.amazon.kinesis amazon-kinesis-client-pom - 2.5.3-SNAPSHOT + 2.5.3 amazon-kinesis-client diff --git a/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java b/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java index d20a57c11..1f69b0d50 100644 --- a/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java +++ b/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java @@ -49,7 +49,7 @@ public class RetrievalConfig { */ public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java"; - public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.5.3-SNAPSHOT"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.5.3"; /** * Client used to make calls to Kinesis for records retrieval diff --git a/pom.xml b/pom.xml index 8844aa532..6f6c0cb84 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ amazon-kinesis-client-pom pom Amazon Kinesis Client Library - 2.5.3-SNAPSHOT + 2.5.3 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis. From 8d4b511b6365326ce605623293953ae92fb76e67 Mon Sep 17 00:00:00 2001 From: Brendan Lynch Date: Wed, 8 Nov 2023 16:07:16 -0800 Subject: [PATCH 4/5] Fixed spacing in CHANGELOG --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdd10fb18..c906dee56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,12 @@ For **1.x** release notes, please see [v1.x/CHANGELOG.md](https://github.com/aws --- ### Release 2.5.3 (November 8, 2023) -* [#1219]( https://github.com/awslabs/amazon-kinesis-client/pull/1219) Provided streamArn in getRecords request -* [#1216]( https://github.com/awslabs/amazon-kinesis-client/pull/1216) Updated AWS Glue Schema Registry from version 1.1.14 to 1.1.17. -* [#1205]( https://github.com/awslabs/amazon-kinesis-client/pull/1205) Updated the FAQ with impact of changing default checkpoint. -* [#1203]( https://github.com/awslabs/amazon-kinesis-client/pull/1203) Added links from README.md to FAQ and doc folder. -* [#1202]( https://github.com/awslabs/amazon-kinesis-client/pull/1202) Introduced a FAQ for Kinesis Client Library -* [#1200]( https://github.com/awslabs/amazon-kinesis-client/pull/1200) Added test case for StreamIdentifier serialization. +* [#1219](https://github.com/awslabs/amazon-kinesis-client/pull/1219) Provided streamArn in getRecords request +* [#1216](https://github.com/awslabs/amazon-kinesis-client/pull/1216) Updated AWS Glue Schema Registry from version 1.1.14 to 1.1.17. +* [#1205](https://github.com/awslabs/amazon-kinesis-client/pull/1205) Updated the FAQ with impact of changing default checkpoint. +* [#1203](https://github.com/awslabs/amazon-kinesis-client/pull/1203) Added links from README.md to FAQ and doc folder. +* [#1202](https://github.com/awslabs/amazon-kinesis-client/pull/1202) Introduced a FAQ for Kinesis Client Library +* [#1200](https://github.com/awslabs/amazon-kinesis-client/pull/1200) Added test case for StreamIdentifier serialization. ### Release 2.5.2 (2023-08-07) * [#1184](https://github.com/awslabs/amazon-kinesis-client/pull/1184) [#367] Enhanced multi-lang `AWSCredentialsProvider=...` decoder and c… From 4d34dc909d866df8cceeb7034f80b61154929efb Mon Sep 17 00:00:00 2001 From: Brendan Lynch Date: Wed, 8 Nov 2023 16:10:29 -0800 Subject: [PATCH 5/5] Fixed commit description spacing in CHANGELOG --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c906dee56..509f26083 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ For **1.x** release notes, please see [v1.x/CHANGELOG.md](https://github.com/aws --- ### Release 2.5.3 (November 8, 2023) * [#1219](https://github.com/awslabs/amazon-kinesis-client/pull/1219) Provided streamArn in getRecords request -* [#1216](https://github.com/awslabs/amazon-kinesis-client/pull/1216) Updated AWS Glue Schema Registry from version 1.1.14 to 1.1.17. +* [#1216](https://github.com/awslabs/amazon-kinesis-client/pull/1216) Updated AWS Glue Schema Registry from version 1.1.14 to 1.1.17. * [#1205](https://github.com/awslabs/amazon-kinesis-client/pull/1205) Updated the FAQ with impact of changing default checkpoint. * [#1203](https://github.com/awslabs/amazon-kinesis-client/pull/1203) Added links from README.md to FAQ and doc folder. * [#1202](https://github.com/awslabs/amazon-kinesis-client/pull/1202) Introduced a FAQ for Kinesis Client Library