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

ioredis

Package Overview
Dependencies
Maintainers
1
Versions
228
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ioredis - npm Package Compare versions

Comparing version 1.2.5 to 1.2.6

4

Changelog.md

@@ -5,2 +5,6 @@ ## Changelog

### v1.2.6 - May 13, 2015
* Fix showFriendlyErrorStack not working in pipeline.
### v1.2.5 - May 12, 2015

@@ -7,0 +11,0 @@

2

lib/pipeline.js
'use strict';
var _ = require('lodash');
var Command = require('./command');
var Commander = require('./commander');

@@ -14,2 +13,3 @@ var fbuffer = require('flexbuffer');

this.redis = redis;
this.options = redis.options;
this._queue = [];

@@ -16,0 +16,0 @@ this._result = [];

{
"name": "ioredis",
"version": "1.2.5",
"version": "1.2.6",
"description": "A delightful, performance-focused Redis client for Node and io.js",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -68,2 +68,8 @@ 'use strict';

});
it('should have the same options as its container', function () {
var redis = new Redis({ showFriendlyErrorStack: true });
var pipeline = redis.pipeline();
expect(pipeline.options).to.have.property('showFriendlyErrorStack', true);
});
});
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