Skip to content

Releases: redis/ioredis

v3.0.0-1

16 Apr 07:04
Compare
Choose a tag to compare
v3.0.0-1 Pre-release
Pre-release

Features

  • add debug logs for resolved sentinel nodes (8f3d3f7)
  • report error on Sentinel connection refused (#445) (#446) (286a5bc)
  • set default port of sentinels to 26379. (#441) (539fe41)

BREAKING CHANGES

  • The default port of sentinels are now 26379 instead of 6379. This shouldn't break your app in most case since few setups has the sentinel server running on 6379, but if it's your case and the port isn't set explicitly, please go to update it.

v3.0.0-0

26 Jan 05:24
Compare
Choose a tag to compare
v3.0.0-0 Pre-release
Pre-release

This is a performance-focused release. We finially switch to the new version of JavaScript parser and drop the support for hiredis (Thanks to the lovely community!).
Also, we switch to denque to improve the queueing performance.

Let us know if there's any issue when using this pre-release.

Other Changes

  • increase the default reconnection interval (c5fefb7), closes #414

BREAKING CHANGES

  • Although the interface doesn't change after upgrading the js parser, there may be still some potential internal differences that may break the applications which rely on them. Also, force a major version bump emphasizes the dropping of the hiredis.

v2.5.0

06 Jan 02:42
Compare
Choose a tag to compare

Features

  • quit immediately when in reconnecting state (#410) (a6f04f2)

v2.4.3

15 Dec 16:32
Compare
Choose a tag to compare

Bug Fixes

v2.4.2

04 Dec 04:05
Compare
Choose a tag to compare

Bug Fixes

  • handle error when creating tls connection (904f433)

v2.4.1

04 Dec 01:21
Compare
Choose a tag to compare

Performance Improvements

  • by default call setNoDelay on the stream (#406) (990a221)

v2.4.0

24 Sep 17:59
Compare
Choose a tag to compare

Features

v2.3.1

24 Sep 16:34
Compare
Choose a tag to compare

Bug Fixes

  • prevent sentinel from getting duplicated nodes (0338677)

v2.3.0

11 Aug 15:06
Compare
Choose a tag to compare

Bug Fixes

  • reject with general error in Redis#connect (#354) (8f7a436)

Features

v2.2.0

28 Jun 14:42
Compare
Choose a tag to compare

Bug Fixes

  • cluster: ensure node exists before being redirected via an ASK (#341) (5d9d0d3)

Features

  • cluster: add Cluster#quit() to quit cluster gracefully. (#339) (68c4ccc), closes #315