From 269724b8df33aa854f4efa776fe8afb8630ead43 Mon Sep 17 00:00:00 2001 From: Rex Chen Date: Fri, 10 Dec 2021 14:27:20 -0500 Subject: [PATCH 1/5] Update log4j dependency Signed-off-by: Rex Chen --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 81a48070..3d86748f 100644 --- a/pom.xml +++ b/pom.xml @@ -104,9 +104,9 @@ - log4j - log4j - 1.2.17 + org.apache.logging.log4j + log4j-core + 2.15.0 test From b402ad69b22a961f7dce1cc7f26b9c1bca728b10 Mon Sep 17 00:00:00 2001 From: Rex Chen Date: Fri, 10 Dec 2021 17:03:40 -0500 Subject: [PATCH 2/5] Upgrade AWSSDK to v1.12.128 Signed-off-by: Rex Chen --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3d86748f..3ed84f23 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ - 1.12.3 + 1.12.128 1.0.392 libsqlite4java ${project.build.directory}/test-lib From f9648b4d990595d33d2a96fa1bf073177e0d0cb5 Mon Sep 17 00:00:00 2001 From: Rex Chen Date: Fri, 10 Dec 2021 16:58:26 -0500 Subject: [PATCH 3/5] Preparation for v1.14.5 Signed-off-by: Rex Chen --- CHANGELOG.md | 6 +++++- README.md | 6 +++++- pom.xml | 2 +- .../lib/worker/KinesisClientLibConfiguration.java | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8c85c87..e74e733a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -### Latest Release (1.14.4 - June 14, 2021) +### Latest Release (1.14.5 - Dec 10, 2021) +* [#872](https://github.com/awslabs/amazon-kinesis-client/pull/872) Update log4j test dependency from 1.2.17 to 2.15.0 +* [#873](https://github.com/awslabs/amazon-kinesis-client/pull/873) Upgrading version of AWS Java SDK to 1.12.128 + +### Release (1.14.4 - June 14, 2021) * [Milestone#61](https://github.com/awslabs/amazon-kinesis-client/milestone/61) * [#816](https://github.com/awslabs/amazon-kinesis-client/pull/816) Updated the Worker shutdown logic to make sure that the `LeaseCleanupManager` also terminates all the threads that it has started. * [#821](https://github.com/awslabs/amazon-kinesis-client/pull/821) Upgrading version of AWS Java SDK to 1.12.3 diff --git a/README.md b/README.md index 59796ceb..9a557adb 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,11 @@ To make it easier for developers to write record processors in other languages, ## Release Notes -### Latest Release (1.14.4 - June 14, 2021) +### Latest Release (1.14.5 - Dec 10, 2021) +* [#872](https://github.com/awslabs/amazon-kinesis-client/pull/872) Update log4j test dependency from 1.2.17 to 2.15.0 +* [#873](https://github.com/awslabs/amazon-kinesis-client/pull/873) Upgrading version of AWS Java SDK to 1.12.128 + +### Release (1.14.4 - June 14, 2021) * [Milestone#61](https://github.com/awslabs/amazon-kinesis-client/milestone/61) * [#816](https://github.com/awslabs/amazon-kinesis-client/pull/816) Updated the Worker shutdown logic to make sure that the `LeaseCleanupManager` also terminates all the threads that it has started. * [#821](https://github.com/awslabs/amazon-kinesis-client/pull/821) Upgrading version of AWS Java SDK to 1.12.3 diff --git a/pom.xml b/pom.xml index 3ed84f23..5430790e 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ amazon-kinesis-client jar Amazon Kinesis Client Library for Java - 1.14.4 + 1.14.5 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis. diff --git a/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java b/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java index ad35f737..ca345c5d 100644 --- a/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java +++ b/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java @@ -147,7 +147,7 @@ public class KinesisClientLibConfiguration { /** * User agent set when Amazon Kinesis Client Library makes AWS requests. */ - public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.14.4"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.14.5"; /** * KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls From 07c86081fbfdb8937fb78c0ffc4b7593f4788891 Mon Sep 17 00:00:00 2001 From: Rex Chen Date: Wed, 15 Dec 2021 12:47:58 -0500 Subject: [PATCH 4/5] Upgrade log4j test dependency to v2.16.0 Signed-off-by: Rex Chen --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5430790e..486b4a29 100644 --- a/pom.xml +++ b/pom.xml @@ -106,7 +106,7 @@ org.apache.logging.log4j log4j-core - 2.15.0 + 2.16.0 test From 58036d4977a4b69949556447e072e40da73a2f4d Mon Sep 17 00:00:00 2001 From: Rex Chen Date: Wed, 15 Dec 2021 13:07:16 -0500 Subject: [PATCH 5/5] Preparation for v1.14.6 Signed-off-by: Rex Chen --- CHANGELOG.md | 5 ++++- README.md | 5 ++++- pom.xml | 2 +- .../lib/worker/KinesisClientLibConfiguration.java | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e74e733a..65bc1cce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog -### Latest Release (1.14.5 - Dec 10, 2021) +### Latest Release (1.14.6 - Dec 15, 2021) +* [#876](https://github.com/awslabs/amazon-kinesis-client/pull/876) Update log4j test dependency from 2.15.0 to 2.16.0 + +### Release (1.14.5 - Dec 10, 2021) * [#872](https://github.com/awslabs/amazon-kinesis-client/pull/872) Update log4j test dependency from 1.2.17 to 2.15.0 * [#873](https://github.com/awslabs/amazon-kinesis-client/pull/873) Upgrading version of AWS Java SDK to 1.12.128 diff --git a/README.md b/README.md index 9a557adb..dab65cf6 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,10 @@ To make it easier for developers to write record processors in other languages, ## Release Notes -### Latest Release (1.14.5 - Dec 10, 2021) +### Latest Release (1.14.6 - Dec 15, 2021) +* [#876](https://github.com/awslabs/amazon-kinesis-client/pull/876) Update log4j test dependency from 2.15.0 to 2.16.0 + +### Release (1.14.5 - Dec 10, 2021) * [#872](https://github.com/awslabs/amazon-kinesis-client/pull/872) Update log4j test dependency from 1.2.17 to 2.15.0 * [#873](https://github.com/awslabs/amazon-kinesis-client/pull/873) Upgrading version of AWS Java SDK to 1.12.128 diff --git a/pom.xml b/pom.xml index 486b4a29..f12c2f36 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ amazon-kinesis-client jar Amazon Kinesis Client Library for Java - 1.14.5 + 1.14.6 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis. diff --git a/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java b/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java index ca345c5d..9a85df8e 100644 --- a/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java +++ b/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java @@ -147,7 +147,7 @@ public class KinesisClientLibConfiguration { /** * User agent set when Amazon Kinesis Client Library makes AWS requests. */ - public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.14.5"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.14.6"; /** * KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls