Comparing version 1.6.13 to 1.6.14
@@ -54,3 +54,3 @@ 'use strict'; | ||
this.client = new redis.createClient(options.port || options.socket, options.host, options); | ||
this.client = new redis.createClient(options.port || options.socket, options.host, _.omit(options, 'prefix')); | ||
@@ -57,0 +57,0 @@ this.prefix = options.prefix; |
@@ -55,3 +55,3 @@ 'use strict'; | ||
this.client = new redis.createClient(options.port || options.socket, options.host, options); | ||
this.client = new redis.createClient(options.port || options.socket, options.host, _.omit(options, 'prefix')); | ||
@@ -58,0 +58,0 @@ this.prefix = options.prefix; |
{ | ||
"author": "adrai", | ||
"name": "cqrs-saga", | ||
"version": "1.6.13", | ||
"version": "1.6.14", | ||
"private": false, | ||
@@ -30,3 +30,3 @@ "main": "index.js", | ||
"mongodb": ">= 0.0.1", | ||
"redis": "2.3.x >= 0.10.1", | ||
"redis": ">= 0.10.1", | ||
"tingodb": ">= 0.0.1" | ||
@@ -33,0 +33,0 @@ }, |
@@ -0,1 +1,4 @@ | ||
## [v1.6.14](https://github.com/adrai/node-cqrs-saga/compare/v1.6.13...v1.6.14) | ||
- redis: fix for new redis lib | ||
## [v1.6.13](https://github.com/adrai/node-cqrs-saga/compare/v1.6.12...v1.6.13) | ||
@@ -2,0 +5,0 @@ - mongodb: added optional heartbeat |
162690