KCL Release 2.2.5 (#635)
* Revalidate if current shard is closed before shutting down the ShardConsumer * KCL 2.2.5 release * KCL 2.2.5 release * Fixing bad merge * Update the KINESIS_CLIENT_LIB_USER_AGENT_VERSION
This commit is contained in:
parent
1f686488c7
commit
bb8fa6cd89
6 changed files with 19 additions and 4 deletions
|
|
@ -1,6 +1,14 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
|
||||||
|
### Release 2.2.5 (October 23, 2019)
|
||||||
|
|
||||||
|
[Milestone#40](https://github.com/awslabs/amazon-kinesis-client/milestone/40)
|
||||||
|
* Updating Sonatype to dedicated AWS endpoint.
|
||||||
|
* [PR#619](https://github.com/awslabs/amazon-kinesis-client/pull/619)
|
||||||
|
* Introducing a validation step to verify if ShardEnd is reached, to prevent shard consumer stuck scenarios in the event of malformed response from service.
|
||||||
|
* [PR#624](https://github.com/awslabs/amazon-kinesis-client/pull/624)
|
||||||
|
|
||||||
### Release 2.2.4 (September 23, 2019)
|
### Release 2.2.4 (September 23, 2019)
|
||||||
|
|
||||||
[Milestone#39](https://github.com/awslabs/amazon-kinesis-client/milestone/39)
|
[Milestone#39](https://github.com/awslabs/amazon-kinesis-client/milestone/39)
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,13 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
### Latest Release (2.2.5 - October 23, 2019)
|
||||||
|
[Milestone#40](https://github.com/awslabs/amazon-kinesis-client/milestone/40)
|
||||||
|
* Updating Sonatype to dedicated AWS endpoint.
|
||||||
|
* [PR#619](https://github.com/awslabs/amazon-kinesis-client/pull/619)
|
||||||
|
* Introducing a validation step to verify if ShardEnd is reached, to prevent shard consumer stuck scenarios in the event of malformed response from service.
|
||||||
|
* [PR#624](https://github.com/awslabs/amazon-kinesis-client/pull/624)
|
||||||
|
|
||||||
### Latest Release (2.2.4 - September 23, 2019)
|
### Latest Release (2.2.4 - September 23, 2019)
|
||||||
[Milestone#39](https://github.com/awslabs/amazon-kinesis-client/milestone/39)
|
[Milestone#39](https://github.com/awslabs/amazon-kinesis-client/milestone/39)
|
||||||
* Making FanoutRecordsPublisher test cases resilient to delayed thread operations
|
* Making FanoutRecordsPublisher test cases resilient to delayed thread operations
|
||||||
|
|
|
||||||
|
|
@ -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.4</version>
|
<version>2.2.5</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.4</version>
|
<version>2.2.5</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.4";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.5";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.4</version>
|
<version>2.2.5</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