diff --git a/.gitignore b/.gitignore index b15724bc..efb7adf9 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /node_modules *.log .idea +package-lock.json diff --git a/README.md b/README.md index d43d1884..1c83a571 100644 --- a/README.md +++ b/README.md @@ -272,6 +272,15 @@ In this release, we have abstracted these implementation details away and expose ## Release Notes +### Release 0.8.0 (February 12, 2019) +* Updated the dependency on [Amazon Kinesis Client for Java][amazon-kcl-github] to 1.9.3 + * This adds support for ListShards API. This API is used in place of DescribeStream API to provide more throughput during ShardSyncTask. Please consult the [AWS Documentation for ListShards](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_ListShards.html) for more information. + * ListShards supports higher call rate, which should reduce instances of throttling when attempting to synchronize the shard list. + * __WARNING: `ListShards` is a new API, and may require updating any explicit IAM policies__ + * [PR #59](https://github.com/awslabs/amazon-kinesis-client-nodejs/pull/59) +* Changed to now download jars from Maven using `https`. + * [PR #59](https://github.com/awslabs/amazon-kinesis-client-nodejs/pull/59) + ### Release 0.7.0 (August 2, 2017) * Updated the dependency on [Amazon Kinesis Client for Java][amazon-kcl-github] to 1.8.1. This adds support for setting a timeout when dispatching records to the node.js record processor. diff --git a/package.json b/package.json index 8175d061..b0c79720 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "aws-kcl", "description": "Kinesis Client Libray (KCL) in Node.js.", - "version": "0.7.0", + "version": "0.8.0", "author": { "name": "Amazon Web Services", "url": "http://aws.amazon.com/" @@ -49,12 +49,7 @@ "bugs": { "url": "https://github.com/awslabs/amazon-kinesis-client-nodejs/issues" }, - "licenses": [ - { - "type": "Amazon Software License", - "url": "https://github.com/awslabs/amazon-kinesis-client-nodejs/blob/master/LICENSE.txt" - } - ], + "license": "Amazon Software License", "keywords": [ "api", "amazon",