Comparing version 1.2.5 to 1.2.6
@@ -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 @@ |
'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); | ||
}); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
213111
4639