From 32a5e1d1489228a0d1bad5e3ab93ac5fd8376a3d Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Mon, 23 Nov 2015 18:38:06 +0100 Subject: [PATCH] Add changelog entries --- changelog.md | 9 ++++++++- test/node_redis.spec.js | 1 - 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 502eaa8a87..47de9acaa7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,14 @@ Changelog ========= -## v.2.x.x - xx Nov, 2015 +## v.2.4.0 - xx Nov, 2015 + +Features + +- Added `tls` option to iniate a connection to a redis server behind a TLS proxy. Thanks ([@paddybyers](https://github.com/paddybyers) +- Added a *url* option to pass the connection url with the options object ([@BridgeAR](https://github.com/BridgeAR) +- Added `client.duplicate([options])` to duplicate the current client and return a new one with the same options ([@BridgeAR](https://github.com/BridgeAR) +- Improve performance by up to 20% on almost all use cases ([@BridgeAR](https://github.com/BridgeAR) Bugfixes diff --git a/test/node_redis.spec.js b/test/node_redis.spec.js index 547dbc6251..f8d91962d8 100644 --- a/test/node_redis.spec.js +++ b/test/node_redis.spec.js @@ -30,7 +30,6 @@ describe("The node_redis client", function () { var client; afterEach(function () { - // Explicitly ignore still running commands client.end(true); });