From daee9e2cd4bf8098187dfafd03d74c2de4d87d2d Mon Sep 17 00:00:00 2001 From: Ashwin Giridharan Date: Thu, 19 Nov 2020 14:31:04 -0800 Subject: [PATCH 1/3] KCL V2.3.2 release --- CHANGELOG.md | 6 +++++- README.md | 6 +++++- amazon-kinesis-client-multilang/pom.xml | 2 +- amazon-kinesis-client/pom.xml | 2 +- .../software/amazon/kinesis/retrieval/RetrievalConfig.java | 2 +- pom.xml | 4 ++-- 6 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ba9c029..16e5ffe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -### Latest Release 2.3.1 (October 20, 2020) +### Latest Release 2.3.2 (November 19, 2020) +[Milestone#54](https://github.com/awslabs/amazon-kinesis-client/milestone/54) +* Adding support for Glue Schema Registry. Deserialize and read schemas associated with the records. + +### Release 2.3.1 (October 20, 2020) [Milestone#53](https://github.com/awslabs/amazon-kinesis-client/milestone/53) * Introducing support for processing multiple kinesis data streams with the same KCL 2.x for java consumer application * To build a consumer application that can process multiple streams at the same time, you must implement a new diff --git a/README.md b/README.md index 77523fb6..f6ff34e6 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,11 @@ The recommended way to use the KCL for Java is to consume it from Maven. ## Release Notes -### Latest Release 2.3.1 (October 20, 2020) +### Latest Release 2.3.2 (November 19, 2020) +[Milestone#54](https://github.com/awslabs/amazon-kinesis-client/milestone/54) +* Adding support for Glue Schema Registry. Deserialize and read schemas associated with the records. + +### Release 2.3.1 (October 20, 2020) [Milestone#53](https://github.com/awslabs/amazon-kinesis-client/milestone/53) * Introducing support for processing multiple kinesis data streams with the same KCL 2.x for java consumer application * To build a consumer application that can process multiple streams at the same time, you must implement a new diff --git a/amazon-kinesis-client-multilang/pom.xml b/amazon-kinesis-client-multilang/pom.xml index fcb18e87..5c632372 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.3.1 + 2.3.2 4.0.0 diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml index 1a3a20e1..c7229a6a 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.3.1 + 2.3.2 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 c38f442d..829ce035 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 @@ -46,7 +46,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.3.1"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.3.2"; /** * Client used to make calls to Kinesis for records retrieval diff --git a/pom.xml b/pom.xml index 4883d75e..44556aa2 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ amazon-kinesis-client-pom pom Amazon Kinesis Client Library - 2.3.1 + 2.3.2 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis. @@ -33,7 +33,7 @@ - 2.14.0 + 2.15.31 From 51179295aa7efde96c3a8758660de77cbf0018ab Mon Sep 17 00:00:00 2001 From: Ashwin Giridharan Date: Thu, 19 Nov 2020 14:43:08 -0800 Subject: [PATCH 2/3] Updating Readme version numbers --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6ff34e6..a97d40dd 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ The recommended way to use the KCL for Java is to consume it from Maven. software.amazon.kinesis amazon-kinesis-client - 2.3.1 + 2.3.2 ``` @@ -57,7 +57,7 @@ The recommended way to use the KCL for Java is to consume it from Maven. com.amazonaws amazon-kinesis-client - 1.11.2 + 1.14.0 ``` From 53779c9b235688ce3da4ab1a131f33c9d3fb65b2 Mon Sep 17 00:00:00 2001 From: Ashwin Giridharan Date: Thu, 19 Nov 2020 15:04:49 -0800 Subject: [PATCH 3/3] Updating change log --- CHANGELOG.md | 2 ++ README.md | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16e5ffe4..cdf6f31e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ### Latest Release 2.3.2 (November 19, 2020) [Milestone#54](https://github.com/awslabs/amazon-kinesis-client/milestone/54) * Adding support for Glue Schema Registry. Deserialize and read schemas associated with the records. +* Updating AWS SDK version to 2.15.31 + ### Release 2.3.1 (October 20, 2020) [Milestone#53](https://github.com/awslabs/amazon-kinesis-client/milestone/53) diff --git a/README.md b/README.md index a97d40dd..cb3d1c96 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ The recommended way to use the KCL for Java is to consume it from Maven. ### Latest Release 2.3.2 (November 19, 2020) [Milestone#54](https://github.com/awslabs/amazon-kinesis-client/milestone/54) * Adding support for Glue Schema Registry. Deserialize and read schemas associated with the records. +* Updating AWS SDK version to 2.15.31 ### Release 2.3.1 (October 20, 2020) [Milestone#53](https://github.com/awslabs/amazon-kinesis-client/milestone/53)