Skip to content

Commit 89a90e3

Browse files
Preparation for v2.6.0 (#1323)
1 parent ab24b66 commit 89a90e3

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
For **1.x** release notes, please see [v1.x/CHANGELOG.md](https://github.com/awslabs/amazon-kinesis-client/blob/v1.x/CHANGELOG.md)
44

55
---
6+
### Release 2.6.0 (2024-05-01)
7+
* [#1317](https://github.com/awslabs/amazon-kinesis-client/pull/1317) Add enablePriorityLeaseAssignment config
8+
* [#1320](https://github.com/awslabs/amazon-kinesis-client/pull/1320) Update lease taker to get unassigned leases
9+
* [#1318](https://github.com/awslabs/amazon-kinesis-client/pull/1318) Internally construct and use stream ARNs for all streams in multi-stream mode
10+
* [#1291](https://github.com/awslabs/amazon-kinesis-client/pull/1291) Update RetrievalFactory implementations to utilize the StreamIdentifier field of StreamConfig
11+
* [#1308](https://github.com/awslabs/amazon-kinesis-client/pull/1308) Move shutdownComplete call to ShardConsumer
12+
* [#1313](https://github.com/awslabs/amazon-kinesis-client/pull/1313) Add additional integration tests for multi-stream and cross account access
13+
* [#1273](https://github.com/awslabs/amazon-kinesis-client/pull/1273) Optimize currentStreamConfigMap by cleaning up lingering streams
14+
* [#1302](https://github.com/awslabs/amazon-kinesis-client/pull/1302) Fix gracefulShutdown behavior in Scheduler
15+
616
### Release 2.5.8 (2024-03-27)
717
* [#1278](https://github.com/awslabs/amazon-kinesis-client/pull/1278) Upgrade awssdk.version from 2.25.3 to 2.25.11
818
* [#1279](https://github.com/awslabs/amazon-kinesis-client/pull/1279) Upgrade org.apache.maven.plugins:maven-gpg-plugin from 3.1.0 to 3.2.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
6363
<dependency>
6464
<groupId>software.amazon.kinesis</groupId>
6565
<artifactId>amazon-kinesis-client</artifactId>
66-
<version>2.5.8</version>
66+
<version>2.6.0</version>
6767
</dependency>
6868
```
6969

amazon-kinesis-client-multilang/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>amazon-kinesis-client-pom</artifactId>
2323
<groupId>software.amazon.kinesis</groupId>
24-
<version>2.6.0-SNAPSHOT</version>
24+
<version>2.6.0</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

amazon-kinesis-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>software.amazon.kinesis</groupId>
2525
<artifactId>amazon-kinesis-client-pom</artifactId>
26-
<version>2.6.0-SNAPSHOT</version>
26+
<version>2.6.0</version>
2727
</parent>
2828

2929
<artifactId>amazon-kinesis-client</artifactId>

amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class RetrievalConfig {
4949
*/
5050
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java";
5151

52-
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.6.0-SNAPSHOT";
52+
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.6.0";
5353

5454
/**
5555
* Client used to make calls to Kinesis for records retrieval

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<artifactId>amazon-kinesis-client-pom</artifactId>
2323
<packaging>pom</packaging>
2424
<name>Amazon Kinesis Client Library</name>
25-
<version>2.6.0-SNAPSHOT</version>
25+
<version>2.6.0</version>
2626
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
2727
from Amazon Kinesis.
2828
</description>

0 commit comments

Comments
 (0)