Merge pull request #698 from ychunxue/v1.x
Prepare for KCL 1.13.3 release
This commit is contained in:
commit
74fc856dab
4 changed files with 17 additions and 15 deletions
|
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
## Latest Release (1.13.2 Janurary 13, 2020)
|
## Latest Release (1.13.3 March 2, 2020)
|
||||||
|
[Milestone#49] (https://github.com/awslabs/amazon-kinesis-client/milestone/49)
|
||||||
|
* Refactoring shard closure verification performed by ShutdownTask.
|
||||||
|
* [PR #684] (https://github.com/awslabs/amazon-kinesis-client/pull/684)
|
||||||
|
* Fixing the bug in ShardSyncTaskManager to resolve the issue of new shards not being processed after resharding.
|
||||||
|
* [PR #694] (https://github.com/awslabs/amazon-kinesis-client/pull/694)
|
||||||
|
|
||||||
|
## Release 1.13.2 (Janurary 13, 2020)
|
||||||
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
|
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
|
||||||
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
|
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
|
||||||
|
|
||||||
|
|
|
||||||
19
README.md
19
README.md
|
|
@ -31,7 +31,13 @@ To make it easier for developers to write record processors in other languages,
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
#### Latest Release (1.13.2 Janurary 13, 2020)
|
#### Latest Release (1.13.3 March 2, 2020)
|
||||||
|
* Refactoring shard closure verification performed by ShutdownTask.
|
||||||
|
* [PR #684] (https://github.com/awslabs/amazon-kinesis-client/pull/684)
|
||||||
|
* Fixing the bug in ShardSyncTaskManager to resolve the issue of new shards not being processed after resharding.
|
||||||
|
* [PR #694] (https://github.com/awslabs/amazon-kinesis-client/pull/694)
|
||||||
|
|
||||||
|
#### Release (1.13.2 Janurary 13, 2020)
|
||||||
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
|
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
|
||||||
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
|
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
|
||||||
|
|
||||||
|
|
@ -47,17 +53,6 @@ To make it easier for developers to write record processors in other languages,
|
||||||
* Handling completed and blocked tasks better during graceful shutdown
|
* Handling completed and blocked tasks better during graceful shutdown
|
||||||
* [PR #640](https://github.com/awslabs/amazon-kinesis-client/pull/640)
|
* [PR #640](https://github.com/awslabs/amazon-kinesis-client/pull/640)
|
||||||
|
|
||||||
#### Release 1.12.0 (October 17, 2019)
|
|
||||||
* Adding logging around shard end codepaths
|
|
||||||
* [PR #585](https://github.com/awslabs/amazon-kinesis-client/pull/585)
|
|
||||||
* Updating checkpointing failure message to refer to javadocs
|
|
||||||
* [PR #590](https://github.com/awslabs/amazon-kinesis-client/pull/590)
|
|
||||||
* Updating Sonatype to dedicated AWS endpoint.
|
|
||||||
* [PR #618](https://github.com/awslabs/amazon-kinesis-client/pull/618)
|
|
||||||
* 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 #623](https://github.com/awslabs/amazon-kinesis-client/pull/623)
|
|
||||||
* Updating AWS SDK to 1.11.655
|
|
||||||
* [PR #626](https://github.com/awslabs/amazon-kinesis-client/pull/626)
|
|
||||||
|
|
||||||
###### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
###### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
||||||
|
|
||||||
|
|
|
||||||
2
pom.xml
2
pom.xml
|
|
@ -6,7 +6,7 @@
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>Amazon Kinesis Client Library for Java</name>
|
<name>Amazon Kinesis Client Library for Java</name>
|
||||||
<version>1.13.3-SNAPSHOT</version>
|
<version>1.13.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>
|
||||||
|
|
|
||||||
|
|
@ -129,7 +129,7 @@ public class KinesisClientLibConfiguration {
|
||||||
/**
|
/**
|
||||||
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
||||||
*/
|
*/
|
||||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.13.2";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.13.3";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue