Skip to content

Commit 7995b05

Browse files
AvinashChowdaryAvinash Ravilla
andauthored
Preparing for release 2.3.5 (#825)
* upgraded aws java sdk, qos logback and aws sdk versions * preparing for release * added milestone Co-authored-by: Avinash Ravilla <ravillaa@amazon.com>
1 parent 225d088 commit 7995b05

File tree

6 files changed

+33
-7
lines changed

6 files changed

+33
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Changelog
22

3-
### Latest Release 2.3.4 (February 19, 2021)
3+
### Latest Release 2.3.5 (June 14, 2021)
4+
[Milestone#59](https://github.com/awslabs/amazon-kinesis-client/milestone/59)
5+
* [#824](https://github.com/awslabs/amazon-kinesis-client/pull/824) Upgraded dependencies
6+
* logback-classic version to 1.2.3
7+
* AWS Java SDK version to 1.12.3
8+
* AWS SDK version to 2.16.81
9+
* [#815](https://github.com/awslabs/amazon-kinesis-client/pull/815) Converted Future to CompletableFuture which helps in proper conversion to Scala using Scala Future Converters.
10+
* [#810](https://github.com/awslabs/amazon-kinesis-client/pull/810) Bump commons-io from 2.6 to 2.7
11+
* [#804](https://github.com/awslabs/amazon-kinesis-client/pull/804) Allowing user to specify an initial timestamp in which daemon will process records.
12+
* [#802](https://github.com/awslabs/amazon-kinesis-client/pull/802) Upgraded guava from 26.0-jre to 29.0-jre
13+
* [#801](https://github.com/awslabs/amazon-kinesis-client/pull/801) Fixing a bug that causes to block indefinitely when trying to unlock a lock that isn't locked.
14+
* [#762](https://github.com/awslabs/amazon-kinesis-client/pull/762) Added support for web identity token in multilang
15+
16+
### Release 2.3.4 (February 19, 2021)
417
[Milestone#56](https://github.com/awslabs/amazon-kinesis-client/milestone/56)
518
* [#788](https://github.com/awslabs/amazon-kinesis-client/pull/788) Fixing a bug that caused paginated `ListShards` calls with the `ShardFilter` parameter to fail when the lease table was being initialized.
619

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
5050
<dependency>
5151
<groupId>software.amazon.kinesis</groupId>
5252
<artifactId>amazon-kinesis-client</artifactId>
53-
<version>2.3.4</version>
53+
<version>2.3.5</version>
5454
</dependency>
5555
```
5656

@@ -66,7 +66,20 @@ The recommended way to use the KCL for Java is to consume it from Maven.
6666

6767
## Release Notes
6868

69-
### Latest Release 2.3.4 (February 19, 2021)
69+
### Latest Release 2.3.5 (June 14, 2021)
70+
[Milestone#59](https://github.com/awslabs/amazon-kinesis-client/milestone/59)
71+
* [#824](https://github.com/awslabs/amazon-kinesis-client/pull/824) Upgraded dependencies
72+
* logback-classic version to 1.2.3
73+
* AWS Java SDK version to 1.12.3
74+
* AWS SDK version to 2.16.81
75+
* [#815](https://github.com/awslabs/amazon-kinesis-client/pull/815) Converted Future to CompletableFuture which helps in proper conversion to Scala using Scala Future Converters.
76+
* [#810](https://github.com/awslabs/amazon-kinesis-client/pull/810) Bump commons-io from 2.6 to 2.7
77+
* [#804](https://github.com/awslabs/amazon-kinesis-client/pull/804) Allowing user to specify an initial timestamp in which daemon will process records.
78+
* [#802](https://github.com/awslabs/amazon-kinesis-client/pull/802) Upgraded guava from 26.0-jre to 29.0-jre
79+
* [#801](https://github.com/awslabs/amazon-kinesis-client/pull/801) Fixing a bug that causes to block indefinitely when trying to unlock a lock that isn't locked.
80+
* [#762](https://github.com/awslabs/amazon-kinesis-client/pull/762) Added support for web identity token in multilang
81+
82+
### Release 2.3.4 (February 19, 2021)
7083
[Milestone#56](https://github.com/awslabs/amazon-kinesis-client/milestone/56)
7184
* [#788](https://github.com/awslabs/amazon-kinesis-client/pull/788) Fixing a bug that caused paginated `ListShards` calls with the `ShardFilter` parameter to fail when the lease table was being initialized.
7285

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.3.4</version>
24+
<version>2.3.5</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
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.kinesis</groupId>
2424
<artifactId>amazon-kinesis-client-pom</artifactId>
25-
<version>2.3.4</version>
25+
<version>2.3.5</version>
2626
</parent>
2727

2828
<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
@@ -46,7 +46,7 @@ public class RetrievalConfig {
4646
*/
4747
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java";
4848

49-
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.3.4";
49+
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.3.5";
5050

5151
/**
5252
* 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.3.4</version>
25+
<version>2.3.5</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)