|
1 | 1 | Changelog
|
2 | 2 | =========
|
3 | 3 |
|
| 4 | +## v.2.6.0-2 - xx Apr, 2016 |
| 5 | + |
| 6 | +Features |
| 7 | + |
| 8 | +- Added support for the new `CLIENT REPLY ON|OFF|SKIP` command (Redis v.3.2) |
| 9 | +- Added support for camelCase |
| 10 | + - The Node.js landscape default is to use camelCase. node_redis is a bit out of the box here |
| 11 | + but from now on it is possible to use both, just as you prefer! |
| 12 | + - If there's any documented variable missing as camelCased, please open a issue for it |
| 13 | +- Added support for `__proto__` and other reserved keywords as hgetall field |
| 14 | +- Only emit an error if the error has not already been handled in a callback and improve error handling in general |
| 15 | +- Improved unspecific error message "Connection gone from end / close event" |
| 16 | +- Added `args` to command errors to improve identification of the error |
| 17 | +- Added `message_buffer` / `pmessage_buffer` events. That event is always going to emit a buffer |
| 18 | + - Listening to the `message` event at the same time is always going to return the same message as string |
| 19 | +- Added callback option to the duplicate function |
| 20 | +- Updated [redis-commands](https://github.com/NodeRedis/redis-commands) dependency ([changelog](https://github.com/NodeRedis/redis-commands/releases/tag/v.1.2.0)) |
| 21 | + |
| 22 | +Bugfixes |
| 23 | + |
| 24 | +- Fixed v.2.5.0 auth command regression (under special circumstances a reconnect would not authenticate properly) |
| 25 | +- Fixed v.2.6.0-0 pub sub mode and quit command regressions: |
| 26 | + - Entering pub sub mode not working if a earlier called and still running command returned an error |
| 27 | + - Unsubscribe callback not called if unsubscribing from all channels and resubscribing right away |
| 28 | + - Quit command resulting in an error in some cases |
| 29 | +- Fixed special handled functions in batch and multi context not working the same as without (e.g. select and info) |
| 30 | + - Be aware that not all commands work in combination with transactions but they all work with batch |
| 31 | +- Fixed address always set to 127.0.0.1:6379 in case host / port is set in the `tls` options instead of the general options |
| 32 | + |
4 | 33 | ## v.2.6.0-1 - 01 Apr, 2016
|
5 | 34 |
|
6 | 35 | A second pre-release with further fixes. This is likely going to be released as 2.6.0 stable without further changes.
|
|
0 commit comments