Release notes for 1.9.2 and updated versions (#390)
Release notes for 1.9.2 and updated versions
This commit is contained in:
parent
c7105765c6
commit
8fb01ddd08
4 changed files with 32 additions and 13 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
|
@ -1,5 +1,20 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Release 1.9.2 (September 4, 2018)
|
||||||
|
* Allow use of Immutable Clients
|
||||||
|
* [Issue #280](https://github.com/awslabs/amazon-kinesis-client/issues/280)
|
||||||
|
* [PR #305](https://github.com/awslabs/amazon-kinesis-client/pull/305)
|
||||||
|
* Allow the use of `AT_TIMESTAMP` for MultiLang Daemon Clients.
|
||||||
|
* [Issue #341)(https://github.com/awslabs/amazon-kinesis-client/issues/341)
|
||||||
|
* [PR #342](https://github.com/awslabs/amazon-kinesis-client/pull/342)
|
||||||
|
* Update the cache for `KinesisProxy#getShard` on cache misses.
|
||||||
|
* [PR #344](https://github.com/awslabs/amazon-kinesis-client/pull/344)
|
||||||
|
* Changed release process to use a standard process.
|
||||||
|
* [PR #389](https://github.com/awslabs/amazon-kinesis-client/pull/389)
|
||||||
|
* Removed tests that expected a null region response for unknown regions.
|
||||||
|
* [PR #346](https://github.com/awslabs/amazon-kinesis-client/pull/346)
|
||||||
|
* Updated the version of the AWS Java SDK to 1.11.400
|
||||||
|
|
||||||
## Release 1.9.1 (April 30, 2018)
|
## Release 1.9.1 (April 30, 2018)
|
||||||
* Added the ability to create a prepared checkpoint when at `SHARD_END`.
|
* Added the ability to create a prepared checkpoint when at `SHARD_END`.
|
||||||
* [PR #301](https://github.com/awslabs/amazon-kinesis-client/pull/301)
|
* [PR #301](https://github.com/awslabs/amazon-kinesis-client/pull/301)
|
||||||
|
|
|
||||||
24
README.md
24
README.md
|
|
@ -30,16 +30,20 @@ To make it easier for developers to write record processors in other languages,
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### Latest Release (1.9.1)
|
### Latest Release (1.9.2 - September 4, 2018)
|
||||||
* Added the ability to create a prepared checkpoint when at `SHARD_END`.
|
* Allow use of Immutable Clients
|
||||||
* [PR #301](https://github.com/awslabs/amazon-kinesis-client/pull/301)
|
* [Issue #280](https://github.com/awslabs/amazon-kinesis-client/issues/280)
|
||||||
* Added the ability to subscribe to worker state change events.
|
* [PR #305](https://github.com/awslabs/amazon-kinesis-client/pull/305)
|
||||||
* [PR #291](https://github.com/awslabs/amazon-kinesis-client/pull/291)
|
* Allow the use of `AT_TIMESTAMP` for MultiLang Daemon Clients.
|
||||||
* Added support for custom lease managers.
|
* [Issue #341)(https://github.com/awslabs/amazon-kinesis-client/issues/341)
|
||||||
A custom `LeaseManager` can be provided to `Worker.Builder` that will be used to provide lease services.
|
* [PR #342](https://github.com/awslabs/amazon-kinesis-client/pull/342)
|
||||||
This makes it possible to implement custom lease management systems in addition to the default DynamoDB system.
|
* Update the cache for `KinesisProxy#getShard` on cache misses.
|
||||||
* [PR #297](https://github.com/awslabs/amazon-kinesis-client/pull/297)
|
* [PR #344](https://github.com/awslabs/amazon-kinesis-client/pull/344)
|
||||||
* Updated the version of the AWS Java SDK to 1.11.219
|
* Changed release process to use a standard process.
|
||||||
|
* [PR #389](https://github.com/awslabs/amazon-kinesis-client/pull/389)
|
||||||
|
* Removed tests that expected a null region response for unknown regions.
|
||||||
|
* [PR #346](https://github.com/awslabs/amazon-kinesis-client/pull/346)
|
||||||
|
* Updated the version of the AWS Java SDK to 1.11.400
|
||||||
|
|
||||||
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
||||||
|
|
||||||
|
|
|
||||||
4
pom.xml
4
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.9.2-SNAPSHOT</version>
|
<version>1.9.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>
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
</licenses>
|
</licenses>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<aws-java-sdk.version>1.11.344</aws-java-sdk.version>
|
<aws-java-sdk.version>1.11.400</aws-java-sdk.version>
|
||||||
<sqlite4java.version>1.0.392</sqlite4java.version>
|
<sqlite4java.version>1.0.392</sqlite4java.version>
|
||||||
<sqlite4java.native>libsqlite4java</sqlite4java.native>
|
<sqlite4java.native>libsqlite4java</sqlite4java.native>
|
||||||
<sqlite4java.libpath>${project.build.directory}/test-lib</sqlite4java.libpath>
|
<sqlite4java.libpath>${project.build.directory}/test-lib</sqlite4java.libpath>
|
||||||
|
|
|
||||||
|
|
@ -126,7 +126,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.9.1";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.9.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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue