v2.2.4 Release (#789)
* Adding release notes * Release 2.2.4 * fixing duplicate entry for 2.2.3 * Fixing typo * Approved wording. Co-authored-by: Joshua Kim <kimjos@amazon.com>
This commit is contained in:
parent
5d68e65c2c
commit
4fde788414
6 changed files with 16 additions and 7 deletions
|
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
### Latest Release 2.3.3 (December 23, 2020)
|
||||
|
||||
### Latest Release 2.3.4 (February 19, 2021)
|
||||
[Milestone#56](https://github.com/awslabs/amazon-kinesis-client/milestone/56)
|
||||
* [#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.
|
||||
|
||||
### Release 2.3.3 (December 23, 2020)
|
||||
[Milestone#55](https://github.com/awslabs/amazon-kinesis-client/milestone/55)
|
||||
* Fixing bug in PrefetchRecordsPublisher which was causing retry storms if initial request fails.
|
||||
* Fixing bug where idleTimeBetweenReadsInMillis property was ignored in PollingConfig.
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
|||
<dependency>
|
||||
<groupId>software.amazon.kinesis</groupId>
|
||||
<artifactId>amazon-kinesis-client</artifactId>
|
||||
<version>2.3.3</version>
|
||||
<version>2.3.4</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
|
@ -63,7 +63,11 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
|||
|
||||
## Release Notes
|
||||
|
||||
### Latest Release 2.3.3 (December 23, 2020)
|
||||
### Latest Release 2.3.4 (February 19, 2021)
|
||||
[Milestone#56](https://github.com/awslabs/amazon-kinesis-client/milestone/56)
|
||||
* [#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.
|
||||
|
||||
### Release 2.3.3 (December 23, 2020)
|
||||
[Milestone#55](https://github.com/awslabs/amazon-kinesis-client/milestone/55)
|
||||
* Fixing bug in PrefetchRecordsPublisher which was causing retry storms if initial request fails.
|
||||
* Fixing bug where idleTimeBetweenReadsInMillis property was ignored in PollingConfig.
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<parent>
|
||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<groupId>software.amazon.kinesis</groupId>
|
||||
<version>2.3.3</version>
|
||||
<version>2.3.4</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<parent>
|
||||
<groupId>software.amazon.kinesis</groupId>
|
||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<version>2.3.3</version>
|
||||
<version>2.3.4</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>amazon-kinesis-client</artifactId>
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ public class RetrievalConfig {
|
|||
*/
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java";
|
||||
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.3.3";
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.3.4";
|
||||
|
||||
/**
|
||||
* Client used to make calls to Kinesis for records retrieval
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -22,7 +22,7 @@
|
|||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Amazon Kinesis Client Library</name>
|
||||
<version>2.3.3</version>
|
||||
<version>2.3.4</version>
|
||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||
from Amazon Kinesis.
|
||||
</description>
|
||||
|
|
|
|||
Loading…
Reference in a new issue