From 0ca5b4d6f61c37ef1127f964836dbfe5311c5124 Mon Sep 17 00:00:00 2001 From: ashwing Date: Mon, 23 Sep 2019 07:51:12 -0700 Subject: [PATCH] KCL 2.2.4 release (#615) --- CHANGELOG.md | 11 +++++++++++ README.md | 11 ++++++++++- 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, 25 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e515a59c9..2266cf2d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog + +### Release 2.2.4 (September 23, 2019) + +[Milestone#39](https://github.com/awslabs/amazon-kinesis-client/milestone/39) +* Making FanoutRecordsPublisher test cases resilient to delayed thread operations + * [PR#612](https://github.com/awslabs/amazon-kinesis-client/pull/612) +* Drain delivery queue in the FanoutRecordsPublisher to make slow consumers consume events at their pace + * [PR#607](https://github.com/awslabs/amazon-kinesis-client/pull/607) +* Fix to prevent the onNext event going to stale subscription when restart happens in PrefetchRecordsPublisher + * [PR#606](https://github.com/awslabs/amazon-kinesis-client/pull/606) + ### Release 2.2.3 (September 04, 2019) [Milestone#38](https://github.com/awslabs/amazon-kinesis-client/milestone/38) diff --git a/README.md b/README.md index 96472a369..9e57c4f57 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,16 @@ The recommended way to use the KCL for Java is to consume it from Maven. ## Release Notes -### Latest Release (2.2.3 - September 04, 2019) +### Latest Release (2.2.4 - September 23, 2019) +[Milestone#39](https://github.com/awslabs/amazon-kinesis-client/milestone/39) +* Making FanoutRecordsPublisher test cases resilient to delayed thread operations + * [PR#612](https://github.com/awslabs/amazon-kinesis-client/pull/612) +* Drain delivery queue in the FanoutRecordsPublisher to make slow consumers consume events at their pace + * [PR#607](https://github.com/awslabs/amazon-kinesis-client/pull/607) +* Fix to prevent the onNext event going to stale subscription when restart happens in PrefetchRecordsPublisher + * [PR#606](https://github.com/awslabs/amazon-kinesis-client/pull/606) + +### Related Prior Release (2.2.3 - September 04, 2019) [Milestone#38](https://github.com/awslabs/amazon-kinesis-client/milestone/38) * Fix to prevent data loss and stuck shards in the event of failed records delivery in Polling readers * [PR#603](https://github.com/awslabs/amazon-kinesis-client/pull/603) diff --git a/amazon-kinesis-client-multilang/pom.xml b/amazon-kinesis-client-multilang/pom.xml index cc056a68f..2494e2e22 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.2.4-SNAPSHOT + 2.2.4 4.0.0 diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml index 321db4497..2170b07ba 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.2.4-SNAPSHOT + 2.2.4 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 4b50063a1..1c1c2de21 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 @@ -34,7 +34,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.2.4-SNAPSHOT"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.4"; /** * Client used to make calls to Kinesis for records retrieval diff --git a/pom.xml b/pom.xml index b96835869..04bcaf7c3 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ amazon-kinesis-client-pom pom Amazon Kinesis Client Library - 2.2.4-SNAPSHOT + 2.2.4 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis.