UNPKG

40.4 kBMarkdownView Raw
1# Changelog
2
3## v3.0.0 - 09 Feb, 2020
4
5This version is mainly a release to distribute all the unreleased changes on master since 2017 and additionally removes
6a lot of old deprecated features and old internals in preparation for an upcoming modernization refactor (v4).
7
8### Breaking Changes
9
10- Dropped support for Node.js < 6
11- Dropped support for `hiredis` (no longer required)
12- Removed previously deprecated `drain` event
13- Removed previously deprecated `idle` event
14- Removed previously deprecated `parser` option
15- Removed previously deprecated `max_delay` option
16- Removed previously deprecated `max_attempts` option
17- Removed previously deprecated `socket_no_delay` option
18
19### Bug Fixes
20
21- Removed development files from published package (#1370)
22- Duplicate function now allows db param to be passed (#1311)
23
24### Features
25
26- Upgraded to latest `redis-commands` package
27- Upgraded to latest `redis-parser` package, v3.0.0, which brings performance improvements
28- Replaced `double-ended-queue` with `denque`, which brings performance improvements
29- Add timestamps to debug traces
30- Add `socket_initial_delay` option for `socket.setKeepAlive` (#1396)
31
32## v2.8.0 - 31 Jul, 2017
33
34Features
35
36- Accept UPPER_CASE commands in send_command
37- Add arbitrary commands to the prototype by using `Redis.addCommand(name)`
38
39Bugfixes
40
41- Fixed not always copying subscribe unsubscribe arguments
42- Fixed emitting internal errors while reconnecting with auth
43- Fixed crashing with invalid url option
44
45## v2.7.1 - 14 Mar, 2017
46
47Bugfixes
48
49- Fixed monitor mode not working in combination with IPv6 (2.6.0 regression)
50
51## v2.7.0 - 11 Mar, 2017
52
53Features
54
55- All returned errors are from now a subclass of `RedisError`.
56
57Bugfixes
58
59- Fixed rename_commands not accepting `null` as value
60- Fixed `AbortError`s and `AggregateError`s not showing the error message in the stack trace
61
62## v2.6.5 - 15 Jan, 2017
63
64Bugfixes
65
66- Fixed parser not being reset in case the redis connection closed ASAP for overcoming of output buffer limits
67- Fixed parser reset if (p)message_buffer listener is attached
68
69## v2.6.4 - 12 Jan, 2017
70
71Bugfixes
72
73- Fixed monitor mode not working in combination with IPv6, sockets or lua scripts (2.6.0 regression)
74
75## v2.6.3 - 31 Oct, 2016
76
77Bugfixes
78
79- Do not change the tls setting to camel_case
80- Fix domain handling in combination with the offline queue (2.5.3 regression)
81
82## v2.6.2 - 16 Jun, 2016
83
84Bugfixes
85
86- Fixed individual callbacks of a transaction not being called (2.6.0 regression)
87
88## v2.6.1 - 02 Jun, 2016
89
90Bugfixes
91
92- Fixed invalid function name being exported
93
94## v2.6.0 - 01 Jun, 2016
95
96In addition to the pre-releases the following changes exist in v.2.6.0:
97
98Features
99
100- Updated [redis-parser](https://github.com/NodeRedis/node-redis-parser) dependency ([changelog](https://github.com/NodeRedis/node-redis-parser/releases/tag/v.2.0.0))
101- The JS parser is from now on the new default as it is a lot faster than the hiredis parser
102- This is no BC as there is no changed behavior for the user at all but just a performance improvement. Explicitly requireing the Hiredis parser is still possible.
103- Added name property to all Redis functions (Node.js >= 4.0)
104- Improved stack traces in development and debug mode
105
106Bugfixes
107
108- Reverted support for `__proto__` (v.2.6.0-2) to prevent and breaking change
109
110Deprecations
111
112- The `parser` option is deprecated and should be removed. The built-in Javascript parser is a lot faster than the hiredis parser and has more features
113
114## v2.6.0-2 - 29 Apr, 2016
115
116Features
117
118- Added support for the new [CLIENT REPLY ON|OFF|SKIP](http://redis.io/commands/client-reply) command (Redis v.3.2)
119- Added support for camelCase
120- The Node.js landscape default is to use camelCase. node_redis is a bit out of the box here
121 but from now on it is possible to use both, just as you prefer!
122- If there's any documented variable missing as camelCased, please open a issue for it
123- Improve error handling significantly
124- Only emit an error if the error has not already been handled in a callback
125- Improved unspecific error messages e.g. "Connection gone from end / close event"
126- Added `args` to command errors to improve identification of the error
127- Added origin to errors if there's e.g. a connection error
128- Added ReplyError class. All Redis errors are from now on going to be of that class
129- Added AbortError class. A subclass of AbortError. All unresolved and by node_redis rejected commands are from now on of that class
130- Added AggregateError class. If a unresolved and by node_redis rejected command has no callback and
131 this applies to more than a single command, the errors for the commands without callback are aggregated
132 to a single error that is emitted in debug_mode in that case.
133- Added `message_buffer` / `pmessage_buffer` events. That event is always going to emit a buffer
134- Listening to the `message` event at the same time is always going to return the same message as string
135- Added callback option to the duplicate function
136- Added support for `__proto__` and other reserved keywords as hgetall field
137- Updated [redis-commands](https://github.com/NodeRedis/redis-commands) dependency ([changelog](https://github.com/NodeRedis/redis-commands/releases/tag/v.1.2.0))
138
139Bugfixes
140
141- Fixed v.2.5.0 auth command regression (under special circumstances a reconnect would not authenticate properly)
142- Fixed v.2.6.0-0 pub sub mode and quit command regressions:
143- Entering pub sub mode not working if a earlier called and still running command returned an error
144- Unsubscribe callback not called if unsubscribing from all channels and resubscribing right away
145- Quit command resulting in an error in some cases
146- Fixed special handled functions in batch and multi context not working the same as without (e.g. select and info)
147- Be aware that not all commands work in combination with transactions but they all work with batch
148- 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
149
150## v2.6.0-1 - 01 Apr, 2016
151
152A second pre-release with further fixes. This is likely going to be released as 2.6.0 stable without further changes.
153
154Features
155
156- Added type validations for client.send_command arguments
157
158Bugfixes
159
160- Fixed client.send_command not working properly with every command and every option
161- Fixed pub sub mode unsubscribing from all channels in combination with the new `string_numbers` option crashing
162- Fixed pub sub mode unsubscribing from all channels not respected while reconnecting
163- Fixed pub sub mode events in combination with the `string_numbers` option emitting the number of channels not as number
164
165## v2.6.0-0 - 27 Mar, 2016
166
167This is mainly a very important bug fix release with some smaller features.
168
169Features
170
171- Monitor and pub sub mode now work together with the offline queue
172- All commands that were send after a connection loss are now going to be send after reconnecting
173- Activating monitor mode does now work together with arbitrary commands including pub sub mode
174- Pub sub mode is completely rewritten and all known issues fixed
175- Added `string_numbers` option to get back strings instead of numbers
176- Quit command is from now on always going to end the connection properly
177
178Bugfixes
179
180- Fixed calling monitor command while other commands are still running
181- Fixed monitor and pub sub mode not working together
182- Fixed monitor mode not working in combination with the offline queue
183- Fixed pub sub mode not working in combination with the offline queue
184- Fixed pub sub mode resubscribing not working with non utf8 buffer channels
185- Fixed pub sub mode crashing if calling unsubscribe / subscribe in various combinations
186- Fixed pub sub mode emitting unsubscribe even if no channels were unsubscribed
187- Fixed pub sub mode emitting a message without a message published
188- Fixed quit command not ending the connection and resulting in further reconnection if called while reconnecting
189
190The quit command did not end connections earlier if the connection was down at that time and this could have
191lead to strange situations, therefor this was fixed to end the connection right away in those cases.
192
193## v2.5.3 - 21 Mar, 2016
194
195Bugfixes
196
197- Revert throwing on invalid data types and print a warning instead
198
199## v2.5.2 - 16 Mar, 2016
200
201Bugfixes
202
203- Fixed breaking changes against Redis 2.4 introduced in 2.5.0 / 2.5.1
204
205## v2.5.1 - 15 Mar, 2016
206
207Bugfixes
208
209- Fixed info command not working anymore with optional section argument
210
211## v2.5.0 - 15 Mar, 2016
212
213Same changelog as the pre-release
214
215## v2.5.0-1 - 07 Mar, 2016
216
217This is a big release with some substantial underlining changes. Therefor this is released as a pre-release and I encourage anyone who's able to, to test this out.
218
219It took way to long to release this one and the next release cycles will be shorter again.
220
221This release is also going to deprecate a couple things to prepare for a future v.3 (it'll still take a while to v.3).
222
223Features
224
225- The parsers moved into the [redis-parser](https://github.com/NodeRedis/node-redis-parser) module and will be maintained in there from now on
226- Improve js parser speed significantly for big SUNION/SINTER/LRANGE/ZRANGE
227- Improve redis-url parsing to also accept the database-number and options as query parameters as suggested in [IANA](http://www.iana.org/assignments/uri-schemes/prov/redis)
228- Added a `retry_unfulfilled_commands` option
229- Setting this to 'true' results in retrying all commands that were not fulfilled on a connection loss after the reconnect. Use with caution
230- Added a `db` option to select the database while connecting (this is [not recommended](https://groups.google.com/forum/#!topic/redis-db/vS5wX8X4Cjg))
231- Added a `password` option as alias for auth_pass
232- The client.server_info is from now on updated while using the info command
233- Gracefuly handle redis protocol errors from now on
234- Added a `warning` emitter that receives node_redis warnings like auth not required and deprecation messages
235- Added a `retry_strategy` option that replaces all reconnect options
236- The reconnecting event from now on also receives:
237- The error message why the reconnect happened (params.error)
238- The amount of times the client was connected (params.times_connected)
239- The total reconnecting time since the last time connected (params.total_retry_time)
240- Always respect the command execution order no matter if the reply could be returned sync or not (former exceptions: [#937](https://github.com/NodeRedis/node_redis/issues/937#issuecomment-167525939))
241- redis.createClient is now checking input values stricter and detects more faulty input
242- Started refactoring internals into individual modules
243- Pipelining speed improvements
244
245Bugfixes
246
247- Fixed explicit undefined as a command callback in a multi context
248- Fixed hmset failing to detect the first key as buffer or date if the key is of that type
249- Fixed do not run toString on an array argument and throw a "invalid data" error instead
250- This is not considered as breaking change, as this is likely a error in your code and if you want to have such a behavior you should handle this beforehand
251- The same applies to Map / Set and individual Object types
252- Fixed redis url not accepting the protocol being omitted or protocols other than the redis protocol for convenience
253- Fixed parsing the db keyspace even if the first database does not begin with a zero
254- Fixed handling of errors occurring while receiving pub sub messages
255- Fixed huge string pipelines crashing NodeJS (Pipeline size above 256mb)
256- Fixed rename_commands and prefix option not working together
257- Fixed ready being emitted to early in case a slave is still syncing / master down
258
259Deprecations
260
261- Using any command with a argument being set to null or undefined is deprecated
262- From v.3.0.0 on using a command with such an argument will return an error instead
263- If you want to keep the old behavior please use a precheck in your code that converts the arguments to a string.
264- Using SET or SETEX with a undefined or null value will from now on also result in converting the value to "null" / "undefined" to have a consistent behavior. This is not considered as breaking change, as it returned an error earlier.
265- Using .end(flush) without the flush parameter is deprecated and the flush parameter should explicitly be used
266- From v.3.0.0 on using .end without flush will result in an error
267- Using .end without flush means that any command that did not yet return is going to silently fail. Therefor this is considered harmful and you should explicitly silence such errors if you are sure you want this
268- Depending on the return value of a command to detect the backpressure is deprecated
269- From version 3.0.0 on node_redis might not return true / false as a return value anymore. Please rely on client.should_buffer instead
270- The `socket_nodelay` option is deprecated and will be removed in v.3.0.0
271- If you want to buffer commands you should use [.batch or .multi](./README.md) instead. This is necessary to reduce the amount of different options and this is very likely reducing your throughput if set to false.
272- If you are sure you want to activate the NAGLE algorithm you can still activate it by using client.stream.setNoDelay(false)
273- The `max_attempts` option is deprecated and will be removed in v.3.0.0. Please use the `retry_strategy` instead
274- The `retry_max_delay` option is deprecated and will be removed in v.3.0.0. Please use the `retry_strategy` instead
275- The drain event is deprecated and will be removed in v.3.0.0. Please listen to the stream drain event instead
276- The idle event is deprecated and will likely be removed in v.3.0.0. If you rely on this feature please open a new ticket in node_redis with your use case
277- Redis < v. 2.6 is not officially supported anymore and might not work in all cases. Please update to a newer redis version as it is not possible to test for these old versions
278- Removed non documented command syntax (adding the callback to an arguments array instead of passing it as individual argument)
279
280## v2.4.2 - 27 Nov, 2015
281
282Bugfixes
283
284- Fixed not emitting ready after reconnect with disable_resubscribing ([@maxgalbu](https://github.com/maxgalbu))
285
286## v2.4.1 - 25 Nov, 2015
287
288Bugfixes
289
290- Fixed a js parser regression introduced in 2.4.0 ([@BridgeAR](https://github.com/BridgeAR))
291
292## v2.4.0 - 25 Nov, 2015
293
294Features
295
296- Added `tls` option to initiate a connection to a redis server behind a TLS proxy. Thanks ([@paddybyers](https://github.com/paddybyers))
297- Added `prefix` option to auto key prefix any command with the provided prefix ([@luin](https://github.com/luin) & [@BridgeAR](https://github.com/BridgeAR))
298- Added `url` option to pass the connection url with the options object ([@BridgeAR](https://github.com/BridgeAR))
299- Added `client.duplicate([options])` to duplicate the current client and return a new one with the same options ([@BridgeAR](https://github.com/BridgeAR))
300- Improve performance by up to 20% on almost all use cases ([@BridgeAR](https://github.com/BridgeAR))
301
302Bugfixes
303
304- Fixed js parser handling big values slow ([@BridgeAR](https://github.com/BridgeAR))
305- The speed is now on par with the hiredis parser.
306
307## v2.3.1 - 18 Nov, 2015
308
309Bugfixes
310
311- Fixed saving buffers with charsets other than utf-8 while using multi ([@BridgeAR](https://github.com/BridgeAR))
312- Fixed js parser handling big values very slow ([@BridgeAR](https://github.com/BridgeAR))
313- The speed is up to ~500% faster than before but still up to ~50% slower than the hiredis parser.
314
315## v2.3.0 - 30 Oct, 2015
316
317Features
318
319- Improve speed further for: ([@BridgeAR](https://github.com/BridgeAR))
320- saving big strings (up to +300%)
321- using .multi / .batch (up to +50% / on Node.js 0.10.x +300%)
322- saving small buffers
323- Increased coverage to 99% ([@BridgeAR](https://github.com/BridgeAR))
324- Refactored manual backpressure control ([@BridgeAR](https://github.com/BridgeAR))
325- Removed the high water mark and low water mark. Such a mechanism should be implemented by a user instead
326- The `drain` event is from now on only emitted if the stream really had to buffer
327- Reduced the default connect_timeout to be one hour instead of 24h ([@BridgeAR](https://github.com/BridgeAR))
328- Added .path to redis.createClient(options); ([@BridgeAR](https://github.com/BridgeAR))
329- Ignore info command, if not available on server ([@ivanB1975](https://github.com/ivanB1975))
330
331Bugfixes
332
333- Fixed a js parser error that could result in a timeout ([@BridgeAR](https://github.com/BridgeAR))
334- Fixed .multi / .batch used with Node.js 0.10.x not working properly after a reconnect ([@BridgeAR](https://github.com/BridgeAR))
335- Fixed fired but not yet returned commands not being rejected after a connection loss ([@BridgeAR](https://github.com/BridgeAR))
336- Fixed connect_timeout not respected if no connection has ever been established ([@gagle](https://github.com/gagle) & [@benjie](https://github.com/benjie))
337- Fixed return_buffers in pub sub mode ([@komachi](https://github.com/komachi))
338
339## v2.2.5 - 18 Oct, 2015
340
341Bugfixes
342
343- Fixed undefined options passed to a new instance not accepted (possible with individual .createClient functions) ([@BridgeAR](https://github.com/BridgeAR))
344
345## v2.2.4 - 17 Oct, 2015
346
347Bugfixes
348
349- Fixed unspecific error message for unresolvable commands ([@BridgeAR](https://github.com/BridgeAR))
350- Fixed not allowed command error in pubsub mode not being returned in a provided callback ([@BridgeAR](https://github.com/BridgeAR))
351- Fixed to many commands forbidden in pub sub mode ([@BridgeAR](https://github.com/BridgeAR))
352- Fixed mutation of the arguments array passed to .multi / .batch constructor ([@BridgeAR](https://github.com/BridgeAR))
353- Fixed mutation of the options object passed to createClient ([@BridgeAR](https://github.com/BridgeAR))
354- Fixed error callback in .multi not called if connection in broken mode ([@BridgeAR](https://github.com/BridgeAR))
355
356## v2.2.3 - 14 Oct, 2015
357
358Bugfixes
359
360- Fixed multi not being executed on Node 0.10.x if node_redis not yet ready ([@BridgeAR](https://github.com/BridgeAR))
361
362## v2.2.2 - 14 Oct, 2015
363
364Bugfixes
365
366- Fixed regular commands not being executed after a .multi until .exec was called ([@BridgeAR](https://github.com/BridgeAR))
367
368## v2.2.1 - 12 Oct, 2015
369
370No code change
371
372## v2.2.0 - 12 Oct, 2015 - The peregrino falcon
373
374The peregrino falcon is the fasted bird on earth and this is what this release is all about: Increased performance for heavy usage by up to **400%** [sic!] and increased overall performance for any command as well. Please check the benchmarks in the [README.md](README.md) for further details.
375
376Features
377
378- Added rename_commands options to handle renamed commands from the redis config ([@digmxl](https://github.com/digmxl) & [@BridgeAR](https://github.com/BridgeAR))
379- Added disable_resubscribing option to prevent a client from resubscribing after reconnecting ([@BridgeAR](https://github.com/BridgeAR))
380- Increased performance ([@BridgeAR](https://github.com/BridgeAR))
381- exchanging built in queue with [@petkaantonov](https://github.com/petkaantonov)'s [double-ended queue](https://github.com/petkaantonov/deque)
382- prevent polymorphism
383- optimize statements
384- Added _.batch_ command, similar to .multi but without transaction ([@BridgeAR](https://github.com/BridgeAR))
385- Improved pipelining to minimize the [RTT](http://redis.io/topics/pipelining) further ([@BridgeAR](https://github.com/BridgeAR))
386
387Bugfixes
388
389- Fixed a javascript parser regression introduced in 2.0 that could result in timeouts on high load. ([@BridgeAR](https://github.com/BridgeAR))
390- I was not able to write a regression test for this, since the error seems to only occur under heavy load with special conditions. So please have a look for timeouts with the js parser, if you use it and report all issues and switch to the hiredis parser in the meanwhile. If you're able to come up with a reproducable test case, this would be even better :)
391- Fixed should_buffer boolean for .exec, .select and .auth commands not being returned and fix a couple special conditions ([@BridgeAR](https://github.com/BridgeAR))
392
393If you do not rely on transactions but want to reduce the RTT you can use .batch from now on. It'll behave just the same as .multi but it does not have any transaction and therefor won't roll back any failed commands.<br>
394Both .multi and .batch are from now on going to cache the commands and release them while calling .exec.
395
396Please consider using .batch instead of looping through a lot of commands one by one. This will significantly improve your performance.
397
398Here are some stats compared to ioredis 1.9.1 (Lenovo T450s i7-5600U):
399
400 simple set
401 82,496 op/s » ioredis
402 112,617 op/s » node_redis
403
404 simple get
405 82,015 op/s » ioredis
406 105,701 op/s » node_redis
407
408 simple get with pipeline
409 10,233 op/s » ioredis
410 26,541 op/s » node_redis (using .batch)
411
412 lrange 100
413 7,321 op/s » ioredis
414 26,155 op/s » node_redis
415
416 publish
417 90,524 op/s » ioredis
418 112,823 op/s » node_redis
419
420 subscribe
421 43,783 op/s » ioredis
422 61,889 op/s » node_redis
423
424To conclude: we can proudly say that node_redis is very likely outperforming any other node redis client.
425
426Known issues
427
428- The pub sub system has some flaws and those will be addressed in the next minor release
429
430## v2.1.0 - Oct 02, 2015
431
432Features:
433
434- Addded optional flush parameter to `.end`. If set to true, commands fired after using .end are going to be rejected instead of being ignored. (@crispy1989)
435- Addded: host and port can now be provided in a single options object. E.g. redis.createClient({ host: 'localhost', port: 1337, max_attempts: 5 }); (@BridgeAR)
436- Speedup common cases (@BridgeAR)
437
438Bugfixes:
439
440- Fix argument mutation while using the array notation with the multi constructor (@BridgeAR)
441- Fix multi.hmset key not being type converted if used with an object and key not being a string (@BridgeAR)
442- Fix parser errors not being catched properly (@BridgeAR)
443- Fix a crash that could occur if a redis server does not return the info command as usual #541 (@BridgeAR)
444- Explicitly passing undefined as a callback statement will work again. E.g. client.publish('channel', 'message', undefined); (@BridgeAR)
445
446## v2.0.1 - Sep 24, 2015
447
448Bugfixes:
449
450- Fix argument mutation while using the array notation in combination with keys / callbacks ([#866](.)). (@BridgeAR)
451
452## v2.0.0 - Sep 21, 2015
453
454This is the biggest release that node_redis had since it was released in 2010. A long list of outstanding bugs has been fixed, so we are very happy to present you redis 2.0 and we highly recommend updating as soon as possible.
455
456# What's new in 2.0
457
458- Implemented a "connection is broken" mode if no connection could be established
459- node_redis no longer throws under any circumstances, preventing it from terminating applications.
460- Multi error handling is now working properly
461- Consistent command behavior including multi
462- Windows support
463- Improved performance
464- A lot of code cleanup
465- Many bug fixes
466- Better user support!
467
468## Features:
469
470- Added a "redis connection is broken" mode after reaching max connection attempts / exceeding connection timeout. (@BridgeAR)
471- Added NODE_DEBUG=redis env to activate the debug_mode (@BridgeAR)
472- Added a default connection timeout of 24h instead of never timing out as a default (@BridgeAR)
473- Added: Network errors and other stream errors will from now on include the error code as `err.code` property (@BridgeAR)
474- Added: Errors thrown by redis will now include the redis error code as `err.code` property. (@skeggse & @BridgeAR)
475- Added: Errors thrown by node_redis will now include a `err.command` property for the command used (@BridgeAR)
476- Added new commands and drop support for deprecated _substr_ (@BridgeAR)
477- Added new possibilities how to provide the command arguments (@BridgeAR)
478- The entries in the keyspace of the server_info is now an object instead of a string. (@SinisterLight & @BridgeAR)
479- Small speedup here and there (e.g. by not using .toLowerCase() anymore) (@BridgeAR)
480- Full windows support (@bcoe)
481- Increased coverage by 10% and add a lot of tests to make sure everything works as it should. We now reached 97% :-) (@BridgeAR)
482- Remove dead code, clean up and refactor very old chunks (@BridgeAR)
483- Don't flush the offline queue if reconnecting (@BridgeAR)
484- Emit all errors insteaf of throwing sometimes and sometimes emitting them (@BridgeAR)
485- _auth_pass_ passwords are now checked to be a valid password (@jcppman & @BridgeAR)
486
487## Bug fixes:
488
489- Don't kill the app anymore by randomly throwing errors sync instead of emitting them (@BridgeAR)
490- Don't catch user errors anymore occuring in callbacks (no try callback anymore & more fixes for the parser) (@BridgeAR)
491- Early garbage collection of queued items (@dohse)
492- Fix js parser returning errors as strings (@BridgeAR)
493- Do not wrap errors into other errors (@BridgeAR)
494- Authentication failures are now returned in the callback instead of being emitted (@BridgeAR)
495- Fix a memory leak on reconnect (@rahar)
496- Using `send_command` directly may now also be called without the args as stated in the [README.md](./README.md) (@BridgeAR)
497- Fix the multi.exec error handling (@BridgeAR)
498- Fix commands being inconsistent and behaving wrong (@BridgeAR)
499- Channel names with spaces are now properly resubscribed after a reconnection (@pbihler)
500- Do not try to reconnect after the connection timeout has been exceeded (@BridgeAR)
501- Ensure the execution order is observed if using .eval (@BridgeAR)
502- Fix commands not being rejected after calling .quit (@BridgeAR)
503- Fix .auth calling the callback twice if already connected (@BridgeAR)
504- Fix detect_buffers not working in pub sub mode and while monitoring (@BridgeAR)
505- Fix channel names always being strings instead of buffers while return_buffers is true (@BridgeAR)
506- Don't print any debug statements if not asked for (@BridgeAR)
507- Fix a couple small other bugs
508
509## Breaking changes:
510
5111. redis.send_command commands have to be lower case from now on. This does only apply if you use `.send_command` directly instead of the convenient methods like `redis.command`.
5122. Error messages have changed quite a bit. If you depend on a specific wording please check your application carfully.
5133. Errors are from now on always either returned if a callback is present or emitted. They won't be thrown (neither sync, nor async).
5144. The Multi error handling has changed a lot!
515
516- All errors are from now on errors instead of strings (this only applied to the js parser).
517- If an error occurs while queueing the commands an EXECABORT error will be returned including the failed commands as `.errors` property instead of an array with errors.
518- If an error occurs while executing the commands and that command has a callback it'll return the error as first parameter (`err, undefined` instead of `null, undefined`).
519- All the errors occuring while executing the commands will stay in the result value as error instance (if you used the js parser before they would have been strings). Be aware that the transaction won't be aborted if those error occurr!
520- If `multi.exec` does not have a callback and an EXECABORT error occurrs, it'll emit that error instead.
521
5225. If redis can't connect to your redis server it'll give up after a certain point of failures (either max connection attempts or connection timeout exceeded). If that is the case it'll emit an CONNECTION_BROKEN error. You'll have to initiate a new client to try again afterwards.
5236. The offline queue is not flushed anymore on a reconnect. It'll stay until node_redis gives up trying to reach the server or until you close the connection.
5247. Before this release node_redis catched user errors and threw them async back. This is not the case anymore! No user behavior of what so ever will be tracked or catched.
5258. The keyspace of `redis.server_info` (db0...) is from now on an object instead of an string.
526
527NodeRedis also thanks @qdb, @tobek, @cvibhagool, @frewsxcv, @davidbanham, @serv, @vitaliylag, @chrishamant, @GamingCoder and all other contributors that I may have missed for their contributions!
528
529From now on we'll push new releases more frequently out and fix further long outstanding things and implement new features.
530
531<hr>
532
533## v1.0.0 - Aug 30, 2015
534
535- Huge issue and pull-request cleanup. Thanks Blain! (@blainsmith)
536- [#658](https://github.com/NodeRedis/node_redis/pull/658) Client now parses URL-format connection strings (e.g., redis://foo:pass@127.0.0.1:8080) (@kuwabarahiroshi)
537- [#749](https://github.com/NodeRedis/node_redis/pull/749) Fix reconnection bug when client is in monitoring mode (@danielbprice)
538- [#786](https://github.com/NodeRedis/node_redis/pull/786) Refactor createClient. Fixes #651 (@BridgeAR)
539- [#793](https://github.com/NodeRedis/node_redis/pull/793) Refactor tests and improve test coverage (@erinspice, @bcoe)
540- [#733](https://github.com/NodeRedis/node_redis/pull/733) Fixes detect_buffers functionality in the context of exec. Fixes #732, #263 (@raydog)
541- [#785](https://github.com/NodeRedis/node_redis/pull/785) Tiny speedup by using 'use strict' (@BridgeAR)
542- Fix extraneous error output due to pubsub tests (Mikael Kohlmyr)
543
544## v0.12.1 - Aug 10, 2014
545
546- Fix IPv6/IPv4 family selection in node 0.11+ (Various)
547
548## v0.12.0 - Aug 9, 2014
549
550- Fix unix socket support (Jack Tang)
551- Improve createClient argument handling (Jack Tang)
552
553## v0.11.0 - Jul 10, 2014
554
555- IPv6 Support. (Yann Stephan)
556- Revert error emitting and go back to throwing errors. (Bryce Baril)
557- Set socket_keepalive to prevent long-lived client timeouts. (mohit)
558- Correctly reset retry timer. (ouotuo)
559- Domains protection from bad user exit. (Jake Verbaten)
560- Fix reconnection socket logic to prevent misqueued entries. (Iain Proctor)
561
562## v0.10.3 - May 22, 2014
563
564- Update command list to match Redis 2.8.9 (Charles Feng)
565
566## v0.10.2 - May 18, 2014
567
568- Better binary key handling for HGETALL. (Nick Apperson)
569- Fix test not resetting `error` handler. (CrypticSwarm)
570- Fix SELECT error semantics. (Bryan English)
571
572## v0.10.1 - February 17, 2014
573
574- Skip plucking redis version from the INFO stream if INFO results weren't provided. (Robert Sköld)
575
576## v0.10.0 - December 21, 2013
577
578- Instead of throwing errors asynchronously, emit errors on client. (Bryce Baril)
579
580## v0.9.2 - December 15, 2013
581
582- Regenerate commands for new 2.8.x Redis commands. (Marek Ventur)
583- Correctly time reconnect counts when using 'auth'. (William Hockey)
584
585## v0.9.1 - November 23, 2013
586
587- Allow hmset to accept numeric keys. (Alex Stokes)
588- Fix TypeError for multiple MULTI/EXEC errors. (Kwangsu Kim)
589
590## v0.9.0 - October 17, 2013
591
592- Domains support. (Forrest L Norvell)
593
594## v0.8.6 - October 2, 2013
595
596- If error is already an Error, don't wrap it in another Error. (Mathieu M-Gosselin)
597- Fix retry delay logic (Ian Babrou)
598- Return Errors instead of strings where Errors are expected (Ian Babrou)
599- Add experimental `.unref()` method to RedisClient (Bryce Baril / Olivier Lalonde)
600- Strengthen checking of reply to prevent conflating "message" or "pmessage" fields with pub_sub replies. (Bryce Baril)
601
602## v0.8.5 - September 26, 2013
603
604- Add `auth_pass` option to connect and immediately authenticate (Henrik Peinar)
605
606## v0.8.4 - June 24, 2013
607
608Many contributed features and fixes, including:
609
610- Ignore password set if not needed. (jbergknoff)
611- Improved compatibility with 0.10.X for tests and client.end() (Bryce Baril)
612- Protect connection retries from application exceptions. (Amos Barreto)
613- Better exception handling for Multi/Exec (Thanasis Polychronakis)
614- Renamed pubsub mode to subscriber mode (Luke Plaster)
615- Treat SREM like SADD when passed an array (Martin Ciparelli)
616- Fix empty unsub/punsub TypeError (Jeff Barczewski)
617- Only attempt to run a callback if it one was provided (jifeng)
618
619## v0.8.3 - April 09, 2013
620
621Many contributed features and fixes, including:
622
623- Fix some tests for Node.js version 0.9.x+ changes (Roman Ivanilov)
624- Fix error when commands submitted after idle event handler (roamm)
625- Bypass Redis for no-op SET/SETEX commands (jifeng)
626- Fix HMGET + detect_buffers (Joffrey F)
627- Fix CLIENT LOAD functionality (Jonas Dohse)
628- Add percentage outputs to diff_multi_bench_output.js (Bryce Baril)
629- Add retry_max_delay option (Tomasz Durka)
630- Fix parser off-by-one errors with nested multi-bulk replies (Bryce Baril)
631- Prevent parser from sinking application-side exceptions (Bryce Baril)
632- Fix parser incorrect buffer skip when parsing multi-bulk errors (Bryce Baril)
633- Reverted previous change with throwing on non-string values with HMSET (David Trejo)
634- Fix command queue sync issue when using pubsub (Tom Leach)
635- Fix compatibility with two-word Redis commands (Jonas Dohse)
636- Add EVAL with array syntax (dmoena)
637- Fix tests due to Redis reply order changes in 2.6.5+ (Bryce Baril)
638- Added a test for the SLOWLOG command (Nitesh Sinha)
639- Fix SMEMBERS order dependency in test broken by Redis changes (Garrett Johnson)
640- Update commands for new Redis commands (David Trejo)
641- Prevent exception from SELECT on subscriber reconnection (roamm)
642
643## v0.8.2 - November 11, 2012
644
645Another version bump because 0.8.1 didn't get applied properly for some mysterious reason.
646Sorry about that.
647
648Changed name of "faster" parser to "javascript".
649
650## v0.8.1 - September 11, 2012
651
652Important bug fix for null responses (Jerry Sievert)
653
654## v0.8.0 - September 10, 2012
655
656Many contributed features and fixes, including:
657
658- Pure JavaScript reply parser that is usually faster than hiredis (Jerry Sievert)
659- Remove hiredis as optionalDependency from package.json. It still works if you want it.
660- Restore client state on reconnect, including select, subscribe, and monitor. (Ignacio Burgueño)
661- Fix idle event (Trae Robrock)
662- Many documentation improvements and bug fixes (David Trejo)
663
664## v0.7.2 - April 29, 2012
665
666Many contributed fixes. Thank you, contributors.
667
668- [GH-190] - pub/sub mode fix (Brian Noguchi)
669- [GH-165] - parser selection fix (TEHEK)
670- numerous documentation and examples updates
671- auth errors emit Errors instead of Strings (David Trejo)
672
673## v0.7.1 - November 15, 2011
674
675Fix regression in reconnect logic.
676
677Very much need automated tests for reconnection and queue logic.
678
679## v0.7.0 - November 14, 2011
680
681Many contributed fixes. Thanks everybody.
682
683- [GH-127] - properly re-initialize parser on reconnect
684- [GH-136] - handle passing undefined as callback (Ian Babrou)
685- [GH-139] - properly handle exceptions thrown in pub/sub event handlers (Felix Geisendörfer)
686- [GH-141] - detect closing state on stream error (Felix Geisendörfer)
687- [GH-142] - re-select database on reconnection (Jean-Hugues Pinson)
688- [GH-146] - add sort example (Maksim Lin)
689
690Some more goodies:
691
692- Fix bugs with node 0.6
693- Performance improvements
694- New version of `multi_bench.js` that tests more realistic scenarios
695- [GH-140] - support optional callback for subscribe commands
696- Properly flush and error out command queue when connection fails
697- Initial work on reconnection thresholds
698
699## v0.6.7 - July 30, 2011
700
701(accidentally skipped v0.6.6)
702
703Fix and test for [GH-123]
704
705Passing an Array as as the last argument should expand as users
706expect. The old behavior was to coerce the arguments into Strings,
707which did surprising things with Arrays.
708
709## v0.6.5 - July 6, 2011
710
711Contributed changes:
712
713- Support SlowBuffers (Umair Siddique)
714- Add Multi to exports (Louis-Philippe Perron)
715- Fix for drain event calculation (Vladimir Dronnikov)
716
717Thanks!
718
719## v0.6.4 - June 30, 2011
720
721Fix bug with optional callbacks for hmset.
722
723## v0.6.2 - June 30, 2011
724
725Bugs fixed:
726
727- authentication retry while server is loading db (danmaz74) [GH-101]
728- command arguments processing issue with arrays
729
730New features:
731
732- Auto update of new commands from redis.io (Dave Hoover)
733- Performance improvements and backpressure controls.
734- Commands now return the true/false value from the underlying socket write(s).
735- Implement command_queue high water and low water for more better control of queueing.
736
737See `examples/backpressure_drain.js` for more information.
738
739## v0.6.1 - June 29, 2011
740
741Add support and tests for Redis scripting through EXEC command.
742
743Bug fix for monitor mode. (forddg)
744
745Auto update of new commands from redis.io (Dave Hoover)
746
747## v0.6.0 - April 21, 2011
748
749Lots of bugs fixed.
750
751- connection error did not properly trigger reconnection logic [GH-85]
752- client.hmget(key, [val1, val2]) was not expanding properly [GH-66]
753- client.quit() while in pub/sub mode would throw an error [GH-87]
754- client.multi(['hmset', 'key', {foo: 'bar'}]) fails [GH-92]
755- unsubscribe before subscribe would make things very confused [GH-88]
756- Add BRPOPLPUSH [GH-79]
757
758## v0.5.11 - April 7, 2011
759
760Added DISCARD
761
762I originally didn't think DISCARD would do anything here because of the clever MULTI interface, but somebody
763pointed out to me that DISCARD can be used to flush the WATCH set.
764
765## v0.5.10 - April 6, 2011
766
767Added HVALS
768
769## v0.5.9 - March 14, 2011
770
771Fix bug with empty Array arguments - Andy Ray
772
773## v0.5.8 - March 14, 2011
774
775Add `MONITOR` command and special monitor command reply parsing.
776
777## v0.5.7 - February 27, 2011
778
779Add magical auth command.
780
781Authentication is now remembered by the client and will be automatically sent to the server
782on every connection, including any reconnections.
783
784## v0.5.6 - February 22, 2011
785
786Fix bug in ready check with `return_buffers` set to `true`.
787
788Thanks to Dean Mao and Austin Chau.
789
790## v0.5.5 - February 16, 2011
791
792Add probe for server readiness.
793
794When a Redis server starts up, it might take a while to load the dataset into memory.
795During this time, the server will accept connections, but will return errors for all non-INFO
796commands. Now node_redis will send an INFO command whenever it connects to a server.
797If the info command indicates that the server is not ready, the client will keep trying until
798the server is ready. Once it is ready, the client will emit a "ready" event as well as the
799"connect" event. The client will queue up all commands sent before the server is ready, just
800like it did before. When the server is ready, all offline/non-ready commands will be replayed.
801This should be backward compatible with previous versions.
802
803To disable this ready check behavior, set `options.no_ready_check` when creating the client.
804
805As a side effect of this change, the key/val params from the info command are available as
806`client.server_options`. Further, the version string is decomposed into individual elements
807in `client.server_options.versions`.
808
809## v0.5.4 - February 11, 2011
810
811Fix excess memory consumption from Queue backing store.
812
813Thanks to Gustaf Sjöberg.
814
815## v0.5.3 - February 5, 2011
816
817Fix multi/exec error reply callback logic.
818
819Thanks to Stella Laurenzo.
820
821## v0.5.2 - January 18, 2011
822
823Fix bug where unhandled error replies confuse the parser.
824
825## v0.5.1 - January 18, 2011
826
827Fix bug where subscribe commands would not handle redis-server startup error properly.
828
829## v0.5.0 - December 29, 2010
830
831Some bug fixes:
832
833- An important bug fix in reconnection logic. Previously, reply callbacks would be invoked twice after
834 a reconnect.
835- Changed error callback argument to be an actual Error object.
836
837New feature:
838
839- Add friendly syntax for HMSET using an object.
840
841## v0.4.1 - December 8, 2010
842
843Remove warning about missing hiredis. You probably do want it though.
844
845## v0.4.0 - December 5, 2010
846
847Support for multiple response parsers and hiredis C library from Pieter Noordhuis.
848Return Strings instead of Buffers by default.
849Empty nested mb reply bug fix.
850
851## v0.3.9 - November 30, 2010
852
853Fix parser bug on failed EXECs.
854
855## v0.3.8 - November 10, 2010
856
857Fix for null MULTI response when WATCH condition fails.
858
859## v0.3.7 - November 9, 2010
860
861Add "drain" and "idle" events.
862
863## v0.3.6 - November 3, 2010
864
865Add all known Redis commands from Redis master, even ones that are coming in 2.2 and beyond.
866
867Send a friendlier "error" event message on stream errors like connection refused / reset.
868
869## v0.3.5 - October 21, 2010
870
871A few bug fixes.
872
873- Fixed bug with `nil` multi-bulk reply lengths that showed up with `BLPOP` timeouts.
874- Only emit `end` once when connection goes away.
875- Fixed bug in `test.js` where driver finished before all tests completed.
876
877## unversioned wasteland
878
879See the git history for what happened before.