Preparing for Release 1.13.2

This commit is contained in:
Cory Bradshaw 2020-01-13 08:37:47 -08:00 committed by Cory-Bradshaw
parent a7079a81e4
commit 02c2036d5d
4 changed files with 14 additions and 9 deletions

View file

@ -1,4 +1,8 @@
# Changelog # Changelog
## Latest Release (1.13.2 Janurary 13, 2020)
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
## Release 1.13.1 (December 31, 2019) ## Release 1.13.1 (December 31, 2019)
[Milestone#44](https://github.com/awslabs/amazon-kinesis-client/milestone/44) [Milestone#44](https://github.com/awslabs/amazon-kinesis-client/milestone/44)
* Adding BillingMode Support to KCL 1.x. This enables the customer to specify if they want provisioned capacity for DDB, or pay per request. * Adding BillingMode Support to KCL 1.x. This enables the customer to specify if they want provisioned capacity for DDB, or pay per request.

View file

@ -31,8 +31,11 @@ To make it easier for developers to write record processors in other languages,
## Release Notes ## Release Notes
## Latest Release (1.13.1 December 30, 2019) #### Latest Release (1.13.2 Janurary 13, 2020)
[Milestone#44](https://github.com/awslabs/amazon-kinesis-client/milestone/44) * Adding backward compatible constructors that use the default DDB Billing Mode (#673)
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
#### Release (1.13.1 December 30, 2019)
* Adding BillingMode Support to KCL 1.x. This enables the customer to specify if they want provisioned capacity for DDB, or pay per request. * Adding BillingMode Support to KCL 1.x. This enables the customer to specify if they want provisioned capacity for DDB, or pay per request.
* [PR #656](https://github.com/awslabs/amazon-kinesis-client/pull/656) * [PR #656](https://github.com/awslabs/amazon-kinesis-client/pull/656)
* Ensure ShardSyncTask invocation from ShardSyncTaskManager for pending ShardEnd events. * Ensure ShardSyncTask invocation from ShardSyncTaskManager for pending ShardEnd events.
@ -40,13 +43,11 @@ To make it easier for developers to write record processors in other languages,
* Fix the LeaseManagementIntegrationTest failure. * Fix the LeaseManagementIntegrationTest failure.
* [PR #670](https://github.com/awslabs/amazon-kinesis-client/pull/670) * [PR #670](https://github.com/awslabs/amazon-kinesis-client/pull/670)
## Release (1.13.0 November 5, 2019) #### Release (1.13.0 November 5, 2019)
[Milestone#42](https://github.com/awslabs/amazon-kinesis-client/milestone/42)
* 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) #### Release 1.12.0 (October 17, 2019)
[Milestone#41](https://github.com/awslabs/amazon-kinesis-client/milestone/41)
* Adding logging around shard end codepaths * Adding logging around shard end codepaths
* [PR #585](https://github.com/awslabs/amazon-kinesis-client/pull/585) * [PR #585](https://github.com/awslabs/amazon-kinesis-client/pull/585)
* Updating checkpointing failure message to refer to javadocs * Updating checkpointing failure message to refer to javadocs
@ -58,7 +59,7 @@ To make it easier for developers to write record processors in other languages,
* Updating AWS SDK to 1.11.655 * Updating AWS SDK to 1.11.655
* [PR #626](https://github.com/awslabs/amazon-kinesis-client/pull/626) * [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]**.
[kinesis]: http://aws.amazon.com/kinesis [kinesis]: http://aws.amazon.com/kinesis
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169 [kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169

View file

@ -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.1</version> <version>1.13.2</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>

View file

@ -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.1"; public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.13.2";
/** /**
* 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