Skip to content

Commit c69ccb6

Browse files
Prepare for v2.6.1 (#1411)
1 parent a159fa3 commit c69ccb6

File tree

6 files changed

+28
-5
lines changed

6 files changed

+28
-5
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
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.1 (2024-12-13)
7+
* [#1365](https://github.com/awslabs/amazon-kinesis-client/pull/1365) Add config to enable point in time recovery for the DynamoDB lease table created by KCL
8+
* [#1325](https://github.com/awslabs/amazon-kinesis-client/pull/1325) Add logic to sync from lease table on first app bootstrap
9+
* [#1372](https://github.com/awslabs/amazon-kinesis-client/pull/1372) Fix debug and trace level logging to log all worker loops
10+
* [#1319](https://github.com/awslabs/amazon-kinesis-client/pull/1319) Fix a race condition between ShardConsumer shutdown and initialization
11+
* [#1354](https://github.com/awslabs/amazon-kinesis-client/pull/1354) Fix bug where the in-memory lease is updated even when DDB fails to update
12+
* [#1363](https://github.com/awslabs/amazon-kinesis-client/pull/1363) Fix some of the warnings emitted by maven during build
13+
* [#1358](https://github.com/awslabs/amazon-kinesis-client/pull/1358) Remove ShutdownNotificationAware and update javadocs
14+
* [#1329](https://github.com/awslabs/amazon-kinesis-client/pull/1329) Remove unnecessary lambda
15+
* [#1340](https://github.com/awslabs/amazon-kinesis-client/pull/1340) Generate wrappers from proto files instead of shipping them directly
16+
* [#1332](https://github.com/awslabs/amazon-kinesis-client/pull/1332) Enforce consistent code style with palantir-java-format
17+
* [#1294](https://github.com/awslabs/amazon-kinesis-client/pull/1294) Upgrade org.apache.maven.plugins:maven-checkstyle-plugin from 3.3.0 to 3.3.1
18+
* [#1296](https://github.com/awslabs/amazon-kinesis-client/pull/1296) Upgrade org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.5
19+
* [#1312](https://github.com/awslabs/amazon-kinesis-client/pull/1312) Upgrade commons-io:commons-io from 2.15.1 to 2.16.1
20+
* [#1331](https://github.com/awslabs/amazon-kinesis-client/pull/1331) Upgrade maven-compiler-plugin from 3.11.0 to 3.13.0
21+
* [#1335](https://github.com/awslabs/amazon-kinesis-client/pull/1335) Upgrade org.slf4j:slf4j-api from 2.0.7 to 2.0.13
22+
* [#1336](https://github.com/awslabs/amazon-kinesis-client/pull/1336) Upgrade io.reactivex.rxjava3:rxjava from 3.1.6 to 3.1.8
23+
* [#1337](https://github.com/awslabs/amazon-kinesis-client/pull/1337) Upgrade com.google.protobuf:protobuf-java from 3.21.12 to 4.27.0
24+
* [#1341](https://github.com/awslabs/amazon-kinesis-client/pull/1341) Upgrade awssdk.version from 2.25.11 to 2.25.64
25+
* [#1342](https://github.com/awslabs/amazon-kinesis-client/pull/1342) Upgrade org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0
26+
* [#1343](https://github.com/awslabs/amazon-kinesis-client/pull/1343) Upgrade org.apache.maven.plugins:maven-failsafe-plugin from 3.1.2 to 3.2.5
27+
* [#1383](https://github.com/awslabs/amazon-kinesis-client/pull/1383) Upgrade com.google.protobuf:protobuf-java from 4.27.0 to 4.27.5
28+
629
### Release 2.6.0 (2024-05-01)
730
* [#1317](https://github.com/awslabs/amazon-kinesis-client/pull/1317) Add enablePriorityLeaseAssignment config
831
* [#1320](https://github.com/awslabs/amazon-kinesis-client/pull/1320) Update lease taker to get unassigned leases

README.md

+1-1
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.6.0</version>
66+
<version>2.6.1</version>
6767
</dependency>
6868
```
6969

amazon-kinesis-client-multilang/pom.xml

+1-1
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.1-SNAPSHOT</version>
24+
<version>2.6.1</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

amazon-kinesis-client/pom.xml

+1-1
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.1-SNAPSHOT</version>
26+
<version>2.6.1</version>
2727
</parent>
2828

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

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

+1-1
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.1-SNAPSHOT";
52+
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.6.1";
5353

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

pom.xml

+1-1
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.1-SNAPSHOT</version>
25+
<version>2.6.1</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)