Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/node_modules
*.log
.idea
package-lock.json
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down Expand Up @@ -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",
Expand Down