Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redis-sessions

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redis-sessions - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

4

CHANGELOG.md
# CHANGELOG
## 1.0.6
* Removed callback for `quit` method.
## 1.0.5

@@ -4,0 +8,0 @@

3

index.js

@@ -343,5 +343,4 @@ // Generated by CoffeeScript 1.10.0

RedisSessions.prototype.quit = function(cb) {
RedisSessions.prototype.quit = function() {
this.redis.quit();
cb(null, true);
};

@@ -348,0 +347,0 @@

{
"name": "redis-sessions",
"description": "An advanced session store for Redis",
"version": "1.0.5",
"version": "1.0.6",
"license": "MIT",

@@ -6,0 +6,0 @@ "author": "P. Liess <smrchy+npm@gmail.com>",

@@ -785,8 +785,6 @@ // Generated by CoffeeScript 1.10.0

it('Issue the Quit Command.', function(done) {
rs.quit(function(err, resp) {
resp.should.equal(true);
done();
});
rs.quit();
done();
});
});
});

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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