New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

connect-dynamodb

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-dynamodb - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

5

History.md

@@ -0,1 +1,6 @@

1.0.8 / 2016-07-18
==================
* Fix issue with reap method (https://github.com/ca98am79/connect-dynamodb/issues/27)
1.0.7 / 2016-01-29

@@ -2,0 +7,0 @@ ==================

7

lib/connect-dynamodb.js

@@ -194,5 +194,10 @@ /*!

};
this.client.scan(params, function (err, data) {
this.client.scan(params, function onScan(err, data) {
if (err) return fn && fn(err);
destroy.call(this, data, fn);
if (typeof data.LastEvaluatedKey != "undefined") {
//console.log("Scanning for more...");
params.ExclusiveStartKey = data.LastEvaluatedKey;
this.client.scan(params, onScan);
}
}.bind(this));

@@ -199,0 +204,0 @@ };

2

package.json
{
"name": "connect-dynamodb",
"description": "DynamoDB session store for Connect",
"version": "1.0.7",
"version": "1.0.8",
"author": "Mike Carson <ca98am79@gmail.com> (http://ca98am79.com)",

@@ -6,0 +6,0 @@ "main": "./index.js",

@@ -78,2 +78,3 @@ # Connect DynamoDB

* [Etienne Adriaenssen](https://github.com/etiennea)
* [Michael Irigoyen](https://github.com/goyney)

@@ -80,0 +81,0 @@ Thanks!

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc