1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

Add changelog entries

This commit is contained in:
Ruben Bridgewater
2015-11-23 18:38:06 +01:00
parent b91692e928
commit 32a5e1d148
2 changed files with 8 additions and 2 deletions

View File

@@ -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

View File

@@ -30,7 +30,6 @@ describe("The node_redis client", function () {
var client;
afterEach(function () {
// Explicitly ignore still running commands
client.end(true);
});