Release 1.8.10 of the Amazon Kinesis Client for Java (#288)
* Allow providing a custom IKinesisProxy implementation. * PR #274 * Checkpointing on a different thread should no longer emit a warning about NullMetricsScope. * PR #284 * Issue #48 * Upgraded the AWS Java SDK to version 1.11.271 * PR #287
This commit is contained in:
parent
4309f23032
commit
59d40251c7
3 changed files with 11 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: Amazon Kinesis Client Library for Java
|
Bundle-Name: Amazon Kinesis Client Library for Java
|
||||||
Bundle-SymbolicName: com.amazonaws.kinesisclientlibrary;singleton:=true
|
Bundle-SymbolicName: com.amazonaws.kinesisclientlibrary;singleton:=true
|
||||||
Bundle-Version: 1.8.9
|
Bundle-Version: 1.8.10
|
||||||
Bundle-Vendor: Amazon Technologies, Inc
|
Bundle-Vendor: Amazon Technologies, Inc
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||||
Require-Bundle: org.apache.commons.codec;bundle-version="1.6",
|
Require-Bundle: org.apache.commons.codec;bundle-version="1.6",
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,15 @@ To make it easier for developers to write record processors in other languages,
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
### Release 1.8.10
|
||||||
|
* Allow providing a custom IKinesisProxy implementation.
|
||||||
|
* [PR #274](https://github.com/awslabs/amazon-kinesis-client/pull/274)
|
||||||
|
* Checkpointing on a different thread should no longer emit a warning about NullMetricsScope.
|
||||||
|
* [PR #284](https://github.com/awslabs/amazon-kinesis-client/pull/284)
|
||||||
|
* [Issue #48](https://github.com/awslabs/amazon-kinesis-client/issues/48)
|
||||||
|
* Upgraded the AWS Java SDK to version 1.11.271
|
||||||
|
* [PR #287](https://github.com/awslabs/amazon-kinesis-client/pull/287)
|
||||||
|
|
||||||
### Release 1.8.9
|
### Release 1.8.9
|
||||||
* Allow disabling check for the case where a child shard has an open parent shard.
|
* Allow disabling check for the case where a child shard has an open parent shard.
|
||||||
There is a race condition where it's possible for the a parent shard to appear open, while having child shards. This check can now be disabled by setting [`ignoreUnexpectedChildShards`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1037) to true.
|
There is a race condition where it's possible for the a parent shard to appear open, while having child shards. This check can now be disabled by setting [`ignoreUnexpectedChildShards`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1037) to true.
|
||||||
|
|
|
||||||
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.8.10-SNAPSHOT</version>
|
<version>1.8.10</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