From c5c408b6e2dac78c555cadf9196c7a13f9eec586 Mon Sep 17 00:00:00 2001 From: Sahil Palvia Date: Wed, 31 Jan 2018 09:52:46 -0800 Subject: [PATCH] Upating CHANGELOG.md with latest release information. --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 094568e0..5df34d50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 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 +* 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. + * [PR #240](https://github.com/awslabs/amazon-kinesis-client/pull/240) + * [Issue #210](https://github.com/awslabs/amazon-kinesis-client/issues/210) +* Upgraded the AWS SDK for Java to 1.11.261 + * [PR #281](https://github.com/awslabs/amazon-kinesis-client/pull/281) + ## Release 1.8.8 * Fixed issues with leases losses due to `ExpiredIteratorException` in `PrefetchGetRecordsCache` and `AsynchronousFetchingStrategy`. PrefetchGetRecordsCache will request for a new iterator and start fetching data again.