PageRenderTime 56ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/nd/node_modules/redis/changelog.md

https://bitbucket.org/akindziora/websocketserver
Markdown | 302 lines | 192 code | 110 blank | 0 comment | 0 complexity | 4edd801b84506182ce3d1a9ab207d2eb MD5 | raw file
Possible License(s): BSD-3-Clause, MIT
  1. Changelog
  2. =========
  3. ## v0.9.2 - December 15, 2013
  4. * Regenerate commands for new 2.8.x Redis commands. (Marek Ventur)
  5. * Correctly time reconnect counts when using 'auth'. (William Hockey)
  6. ## v0.9.1 - November 23, 2013
  7. * Allow hmset to accept numeric keys. (Alex Stokes)
  8. * Fix TypeError for multiple MULTI/EXEC errors. (Kwangsu Kim)
  9. ## v0.9.0 - October 17, 2013
  10. * Domains support. (Forrest L Norvell)
  11. ## v0.8.6 - October 2, 2013
  12. * If error is already an Error, don't wrap it in another Error. (Mathieu M-Gosselin)
  13. * Fix retry delay logic (Ian Babrou)
  14. * Return Errors instead of strings where Errors are expected (Ian Babrou)
  15. * Add experimental `.unref()` method to RedisClient (Bryce Baril / Olivier Lalonde)
  16. * Strengthen checking of reply to prevent conflating "message" or "pmessage" fields with pub_sub replies. (Bryce Baril)
  17. ## v0.8.5 - September 26, 2013
  18. * Add `auth_pass` option to connect and immediately authenticate (Henrik Peinar)
  19. ## v0.8.4 - June 24, 2013
  20. Many contributed features and fixes, including:
  21. * Ignore password set if not needed. (jbergknoff)
  22. * Improved compatibility with 0.10.X for tests and client.end() (Bryce Baril)
  23. * Protect connection retries from application exceptions. (Amos Barreto)
  24. * Better exception handling for Multi/Exec (Thanasis Polychronakis)
  25. * Renamed pubsub mode to subscriber mode (Luke Plaster)
  26. * Treat SREM like SADD when passed an array (Martin Ciparelli)
  27. * Fix empty unsub/punsub TypeError (Jeff Barczewski)
  28. * Only attempt to run a callback if it one was provided (jifeng)
  29. ## v0.8.3 - April 09, 2013
  30. Many contributed features and fixes, including:
  31. * Fix some tests for Node.js version 0.9.x+ changes (Roman Ivanilov)
  32. * Fix error when commands submitted after idle event handler (roamm)
  33. * Bypass Redis for no-op SET/SETEX commands (jifeng)
  34. * Fix HMGET + detect_buffers (Joffrey F)
  35. * Fix CLIENT LOAD functionality (Jonas Dohse)
  36. * Add percentage outputs to diff_multi_bench_output.js (Bryce Baril)
  37. * Add retry_max_delay option (Tomasz Durka)
  38. * Fix parser off-by-one errors with nested multi-bulk replies (Bryce Baril)
  39. * Prevent parser from sinking application-side exceptions (Bryce Baril)
  40. * Fix parser incorrect buffer skip when parsing multi-bulk errors (Bryce Baril)
  41. * Reverted previous change with throwing on non-string values with HMSET (David Trejo)
  42. * Fix command queue sync issue when using pubsub (Tom Leach)
  43. * Fix compatibility with two-word Redis commands (Jonas Dohse)
  44. * Add EVAL with array syntax (dmoena)
  45. * Fix tests due to Redis reply order changes in 2.6.5+ (Bryce Baril)
  46. * Added a test for the SLOWLOG command (Nitesh Sinha)
  47. * Fix SMEMBERS order dependency in test broken by Redis changes (Garrett Johnson)
  48. * Update commands for new Redis commands (David Trejo)
  49. * Prevent exception from SELECT on subscriber reconnection (roamm)
  50. ## v0.8.2 - November 11, 2012
  51. Another version bump because 0.8.1 didn't get applied properly for some mysterious reason.
  52. Sorry about that.
  53. Changed name of "faster" parser to "javascript".
  54. ## v0.8.1 - September 11, 2012
  55. Important bug fix for null responses (Jerry Sievert)
  56. ## v0.8.0 - September 10, 2012
  57. Many contributed features and fixes, including:
  58. * Pure JavaScript reply parser that is usually faster than hiredis (Jerry Sievert)
  59. * Remove hiredis as optionalDependency from package.json. It still works if you want it.
  60. * Restore client state on reconnect, including select, subscribe, and monitor. (Ignacio Burgueño)
  61. * Fix idle event (Trae Robrock)
  62. * Many documentation improvements and bug fixes (David Trejo)
  63. ## v0.7.2 - April 29, 2012
  64. Many contributed fixes. Thank you, contributors.
  65. * [GH-190] - pub/sub mode fix (Brian Noguchi)
  66. * [GH-165] - parser selection fix (TEHEK)
  67. * numerous documentation and examples updates
  68. * auth errors emit Errors instead of Strings (David Trejo)
  69. ## v0.7.1 - November 15, 2011
  70. Fix regression in reconnect logic.
  71. Very much need automated tests for reconnection and queue logic.
  72. ## v0.7.0 - November 14, 2011
  73. Many contributed fixes. Thanks everybody.
  74. * [GH-127] - properly re-initialize parser on reconnect
  75. * [GH-136] - handle passing undefined as callback (Ian Babrou)
  76. * [GH-139] - properly handle exceptions thrown in pub/sub event handlers (Felix Geisendörfer)
  77. * [GH-141] - detect closing state on stream error (Felix Geisendörfer)
  78. * [GH-142] - re-select database on reconnection (Jean-Hugues Pinson)
  79. * [GH-146] - add sort example (Maksim Lin)
  80. Some more goodies:
  81. * Fix bugs with node 0.6
  82. * Performance improvements
  83. * New version of `multi_bench.js` that tests more realistic scenarios
  84. * [GH-140] - support optional callback for subscribe commands
  85. * Properly flush and error out command queue when connection fails
  86. * Initial work on reconnection thresholds
  87. ## v0.6.7 - July 30, 2011
  88. (accidentally skipped v0.6.6)
  89. Fix and test for [GH-123]
  90. Passing an Array as as the last argument should expand as users
  91. expect. The old behavior was to coerce the arguments into Strings,
  92. which did surprising things with Arrays.
  93. ## v0.6.5 - July 6, 2011
  94. Contributed changes:
  95. * Support SlowBuffers (Umair Siddique)
  96. * Add Multi to exports (Louis-Philippe Perron)
  97. * Fix for drain event calculation (Vladimir Dronnikov)
  98. Thanks!
  99. ## v0.6.4 - June 30, 2011
  100. Fix bug with optional callbacks for hmset.
  101. ## v0.6.2 - June 30, 2011
  102. Bugs fixed:
  103. * authentication retry while server is loading db (danmaz74) [GH-101]
  104. * command arguments processing issue with arrays
  105. New features:
  106. * Auto update of new commands from redis.io (Dave Hoover)
  107. * Performance improvements and backpressure controls.
  108. * Commands now return the true/false value from the underlying socket write(s).
  109. * Implement command_queue high water and low water for more better control of queueing.
  110. See `examples/backpressure_drain.js` for more information.
  111. ## v0.6.1 - June 29, 2011
  112. Add support and tests for Redis scripting through EXEC command.
  113. Bug fix for monitor mode. (forddg)
  114. Auto update of new commands from redis.io (Dave Hoover)
  115. ## v0.6.0 - April 21, 2011
  116. Lots of bugs fixed.
  117. * connection error did not properly trigger reconnection logic [GH-85]
  118. * client.hmget(key, [val1, val2]) was not expanding properly [GH-66]
  119. * client.quit() while in pub/sub mode would throw an error [GH-87]
  120. * client.multi(['hmset', 'key', {foo: 'bar'}]) fails [GH-92]
  121. * unsubscribe before subscribe would make things very confused [GH-88]
  122. * Add BRPOPLPUSH [GH-79]
  123. ## v0.5.11 - April 7, 2011
  124. Added DISCARD
  125. I originally didn't think DISCARD would do anything here because of the clever MULTI interface, but somebody
  126. pointed out to me that DISCARD can be used to flush the WATCH set.
  127. ## v0.5.10 - April 6, 2011
  128. Added HVALS
  129. ## v0.5.9 - March 14, 2011
  130. Fix bug with empty Array arguments - Andy Ray
  131. ## v0.5.8 - March 14, 2011
  132. Add `MONITOR` command and special monitor command reply parsing.
  133. ## v0.5.7 - February 27, 2011
  134. Add magical auth command.
  135. Authentication is now remembered by the client and will be automatically sent to the server
  136. on every connection, including any reconnections.
  137. ## v0.5.6 - February 22, 2011
  138. Fix bug in ready check with `return_buffers` set to `true`.
  139. Thanks to Dean Mao and Austin Chau.
  140. ## v0.5.5 - February 16, 2011
  141. Add probe for server readiness.
  142. When a Redis server starts up, it might take a while to load the dataset into memory.
  143. During this time, the server will accept connections, but will return errors for all non-INFO
  144. commands. Now node_redis will send an INFO command whenever it connects to a server.
  145. If the info command indicates that the server is not ready, the client will keep trying until
  146. the server is ready. Once it is ready, the client will emit a "ready" event as well as the
  147. "connect" event. The client will queue up all commands sent before the server is ready, just
  148. like it did before. When the server is ready, all offline/non-ready commands will be replayed.
  149. This should be backward compatible with previous versions.
  150. To disable this ready check behavior, set `options.no_ready_check` when creating the client.
  151. As a side effect of this change, the key/val params from the info command are available as
  152. `client.server_options`. Further, the version string is decomposed into individual elements
  153. in `client.server_options.versions`.
  154. ## v0.5.4 - February 11, 2011
  155. Fix excess memory consumption from Queue backing store.
  156. Thanks to Gustaf Sjöberg.
  157. ## v0.5.3 - February 5, 2011
  158. Fix multi/exec error reply callback logic.
  159. Thanks to Stella Laurenzo.
  160. ## v0.5.2 - January 18, 2011
  161. Fix bug where unhandled error replies confuse the parser.
  162. ## v0.5.1 - January 18, 2011
  163. Fix bug where subscribe commands would not handle redis-server startup error properly.
  164. ## v0.5.0 - December 29, 2010
  165. Some bug fixes:
  166. * An important bug fix in reconnection logic. Previously, reply callbacks would be invoked twice after
  167. a reconnect.
  168. * Changed error callback argument to be an actual Error object.
  169. New feature:
  170. * Add friendly syntax for HMSET using an object.
  171. ## v0.4.1 - December 8, 2010
  172. Remove warning about missing hiredis. You probably do want it though.
  173. ## v0.4.0 - December 5, 2010
  174. Support for multiple response parsers and hiredis C library from Pieter Noordhuis.
  175. Return Strings instead of Buffers by default.
  176. Empty nested mb reply bug fix.
  177. ## v0.3.9 - November 30, 2010
  178. Fix parser bug on failed EXECs.
  179. ## v0.3.8 - November 10, 2010
  180. Fix for null MULTI response when WATCH condition fails.
  181. ## v0.3.7 - November 9, 2010
  182. Add "drain" and "idle" events.
  183. ## v0.3.6 - November 3, 2010
  184. Add all known Redis commands from Redis master, even ones that are coming in 2.2 and beyond.
  185. Send a friendlier "error" event message on stream errors like connection refused / reset.
  186. ## v0.3.5 - October 21, 2010
  187. A few bug fixes.
  188. * Fixed bug with `nil` multi-bulk reply lengths that showed up with `BLPOP` timeouts.
  189. * Only emit `end` once when connection goes away.
  190. * Fixed bug in `test.js` where driver finished before all tests completed.
  191. ## unversioned wasteland
  192. See the git history for what happened before.