Skip to content

Commit 1236d65

Browse files
Preparation for v1.15.1 release (#1252)
* Updated aws-java-sdk from 1.12.406 to 1.12.647 * Prepare for v1.15.1 release * update CHANGELOG.md with changes for 1.15.1 * add 1.15.1 changes to README * include Guava update in changelog * Update release notes with concise descriptions
1 parent e731486 commit 1236d65

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
2-
### Latest Release (1.15.0 - Jun 8, 2023)
2+
### Latest Release (1.15.1 - Feb 5, 2023)
3+
* [#1214](https://github.com/awslabs/amazon-kinesis-client/pull/1214) Added backoff logic for ShardSyncTaskIntegrationTest
4+
* [#1214](https://github.com/awslabs/amazon-kinesis-client/pull/1214) Upgrade Guava version from 31.0.1 to 32.1.1
5+
* [#1252](https://github.com/awslabs/amazon-kinesis-client/pull/1252) Upgrade aws-java-sdk from 1.12.406 to 1.12.647
6+
7+
### Release (1.15.0 - Jun 8, 2023)
38
* **[#1108](https://github.com/awslabs/amazon-kinesis-client/pull/1108) Add support for Stream ARNs**
49
* [#1111](https://github.com/awslabs/amazon-kinesis-client/pull/1111) More consistent testing behavior with HashRangesAreAlwaysComplete
510
* [#1054](https://github.com/awslabs/amazon-kinesis-client/pull/1054) Upgrade log4j-core from 2.17.1 to 2.20.0

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ To make it easier for developers to write record processors in other languages,
3434

3535
## Release Notes
3636

37-
### Latest Release (1.15.0 - Jun 8, 2023)
37+
### Latest Release (1.15.1 - Feb 5, 2023)
38+
* [#1214](https://github.com/awslabs/amazon-kinesis-client/pull/1214) Added backoff logic for ShardSyncTaskIntegrationTest
39+
* [#1214](https://github.com/awslabs/amazon-kinesis-client/pull/1214) Upgrade Guava version from 31.0.1 to 32.1.1
40+
* [#1252](https://github.com/awslabs/amazon-kinesis-client/pull/1252) Upgrade aws-java-sdk from 1.12.406 to 1.12.647
41+
42+
### Release (1.15.0 - Jun 8, 2023)
3843
* **[#1108](https://github.com/awslabs/amazon-kinesis-client/pull/1108) Add support for Stream ARNs**
3944
* [#1111](https://github.com/awslabs/amazon-kinesis-client/pull/1111) More consistent testing behavior with HashRangesAreAlwaysComplete
4045
* [#1054](https://github.com/awslabs/amazon-kinesis-client/pull/1054) Upgrade log4j-core from 2.17.1 to 2.20.0

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>amazon-kinesis-client</artifactId>
77
<packaging>jar</packaging>
88
<name>Amazon Kinesis Client Library for Java</name>
9-
<version>1.15.1-SNAPSHOT</version>
9+
<version>1.15.1</version>
1010
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
1111
from Amazon Kinesis.
1212
</description>
@@ -25,7 +25,7 @@
2525
</licenses>
2626

2727
<properties>
28-
<aws-java-sdk.version>1.12.408</aws-java-sdk.version>
28+
<aws-java-sdk.version>1.12.647</aws-java-sdk.version>
2929
<sqlite4java.version>1.0.392</sqlite4java.version>
3030
<sqlite4java.native>libsqlite4java</sqlite4java.native>
3131
<sqlite4java.libpath>${project.build.directory}/test-lib</sqlite4java.libpath>

src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public class KinesisClientLibConfiguration {
149149
/**
150150
* User agent set when Amazon Kinesis Client Library makes AWS requests.
151151
*/
152-
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.15.0";
152+
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.15.1";
153153

154154
/**
155155
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls

0 commit comments

Comments
 (0)