Preparation for v2.2.0 (#536)
This commit is contained in:
parent
6c64055d9b
commit
c8f82836b1
6 changed files with 19 additions and 21 deletions
|
|
@ -1,4 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
### Release 2.2.0 (April 8, 2019)
|
||||||
|
[Milestone#31](https://github.com/awslabs/amazon-kinesis-client/milestone/31)
|
||||||
|
* Updated License to [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
* [PR#523](https://github.com/awslabs/amazon-kinesis-client/pull/523)
|
||||||
|
* Introducing configuration for suppressing logs from ReadTimeoutExceptions caused while calling SubscribeToShard.
|
||||||
|
Suppression can be configured by setting `LifecycleConfig#readTimeoutsToIgnoreBeforeWarning(Count)`.
|
||||||
|
* [PR#528](https://github.com/awslabs/amazon-kinesis-client/issues/528)
|
||||||
|
|
||||||
### Release 2.1.3 (March 18, 2019)
|
### Release 2.1.3 (March 18, 2019)
|
||||||
[Milestone#30](https://github.com/awslabs/amazon-kinesis-client/milestone/30)
|
[Milestone#30](https://github.com/awslabs/amazon-kinesis-client/milestone/30)
|
||||||
|
|
|
||||||
25
README.md
25
README.md
|
|
@ -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.1.2</version>
|
<version>2.2.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -60,22 +60,13 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### Latest Release (2.1.3 - March 18, 2019)
|
### Latest Release (2.2.0 - April 8, 2019)
|
||||||
[Milestone#30](https://github.com/awslabs/amazon-kinesis-client/milestone/30)
|
[Milestone#31](https://github.com/awslabs/amazon-kinesis-client/milestone/31)
|
||||||
* Added a message to recommend using `KinesisClientUtil` when an acquire timeout occurs in the `FanOutRecordsPublisher`.
|
* Updated License to [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
||||||
* [PR#514](https://github.com/awslabs/amazon-kinesis-client/pull/514)
|
* [PR#523](https://github.com/awslabs/amazon-kinesis-client/pull/523)
|
||||||
* Added a sleep between retries while waiting for a newly created stream consumer to become active.
|
* Introducing configuration for suppressing logs from ReadTimeoutExceptions caused while calling SubscribeToShard.
|
||||||
* [PR#506](https://github.com/awslabs/amazon-kinesis-client/issues/506)
|
Suppression can be configured by setting `LifecycleConfig#readTimeoutsToIgnoreBeforeWarning(Count)`.
|
||||||
* Added timeouts on all futures returned from the DynamoDB and Kinesis clients.
|
* [PR#528](https://github.com/awslabs/amazon-kinesis-client/issues/528)
|
||||||
The timeouts can be configured by setting `LeaseManagementConfig#requestTimeout(Duration)` for DynamoDB, and `PollingConfig#kinesisRequestTimeout(Duration)` for Kinesis.
|
|
||||||
* [PR#518](https://github.com/awslabs/amazon-kinesis-client/pull/518)
|
|
||||||
* Upgraded to SDK version 2.5.10.
|
|
||||||
* [PR#518](https://github.com/awslabs/amazon-kinesis-client/pull/518)
|
|
||||||
* Artifacts for the Amazon Kinesis Client for Java are now signed by a new GPG key:
|
|
||||||
```
|
|
||||||
pub 4096R/86368934 2019-02-14 [expires: 2020-02-14]
|
|
||||||
uid Amazon Kinesis Tools <amazon-kinesis-tools@amazon.com>
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
||||||
|
|
|
||||||
|
|
@ -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.1.4-SNAPSHOT</version>
|
<version>2.2.0</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.1.4-SNAPSHOT</version>
|
<version>2.2.0</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.1.4";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.1.4-SNAPSHOT</version>
|
<version>2.2.0</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