KCL 2.2.3 release (#604)
* KCL 2.2.3 release * Added prior related release notes
This commit is contained in:
parent
f6dec3e579
commit
18a55cf6f3
6 changed files with 17 additions and 6 deletions
|
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### Release 2.2.3 (September 04, 2019)
|
||||||
|
|
||||||
|
[Milestone#38](https://github.com/awslabs/amazon-kinesis-client/milestone/38)
|
||||||
|
* Fix to prevent data loss and stuck shards in the event of failed records delivery in Polling readers
|
||||||
|
* [PR#603](https://github.com/awslabs/amazon-kinesis-client/pull/603)
|
||||||
|
|
||||||
### Release 2.2.2 (August 19, 2019)
|
### Release 2.2.2 (August 19, 2019)
|
||||||
|
|
||||||
[Milestone#36](https://github.com/awslabs/amazon-kinesis-client/milestone/36)
|
[Milestone#36](https://github.com/awslabs/amazon-kinesis-client/milestone/36)
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
<version>2.2.2</version>
|
<version>2.2.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -60,7 +60,12 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### Latest Release (2.2.2 - August 19, 2019)
|
### Latest Release (2.2.3 - September 04, 2019)
|
||||||
|
[Milestone#38](https://github.com/awslabs/amazon-kinesis-client/milestone/38)
|
||||||
|
* Fix to prevent data loss and stuck shards in the event of failed records delivery in Polling readers
|
||||||
|
* [PR#603](https://github.com/awslabs/amazon-kinesis-client/pull/603)
|
||||||
|
|
||||||
|
### Related Prior Release (2.2.2 - August 19, 2019)
|
||||||
[Milestone#36](https://github.com/awslabs/amazon-kinesis-client/milestone/36)
|
[Milestone#36](https://github.com/awslabs/amazon-kinesis-client/milestone/36)
|
||||||
* Fix to prevent invalid ShardConsumer state transitions due to rejected executor service executions.
|
* Fix to prevent invalid ShardConsumer state transitions due to rejected executor service executions.
|
||||||
* [PR#560](https://github.com/awslabs/amazon-kinesis-client/pull/560)
|
* [PR#560](https://github.com/awslabs/amazon-kinesis-client/pull/560)
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<version>2.2.3-SNAPSHOT</version>
|
<version>2.2.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<version>2.2.3-SNAPSHOT</version>
|
<version>2.2.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,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 = "amazon-kinesis-client-library-java";
|
||||||
|
|
||||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.3-SNAPSHOT";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.3";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Client used to make calls to Kinesis for records retrieval
|
* 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>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Amazon Kinesis Client Library</name>
|
<name>Amazon Kinesis Client Library</name>
|
||||||
<version>2.2.3-SNAPSHOT</version>
|
<version>2.2.3</version>
|
||||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||||
from Amazon Kinesis.
|
from Amazon Kinesis.
|
||||||
</description>
|
</description>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue