Skip to content

Releases: redis/ioredis

v1.15.1

Choose a tag to compare

@luin luin released this 19 Feb 04:56

Bug Fixes

  • select db on connect event to prevent subscribe errors (829bf26), closes #255

v2.0.0-alpha1

v2.0.0-alpha1 Pre-release
Pre-release

Choose a tag to compare

@luin luin released this 10 Feb 07:33

Bug Fixes

  • cluster: avoid command.reject being overwritten twice (d0a0017)
  • cluster: fix not connecting to the unknown nodes (0dcb768)
  • cluster: set retryDelayOnFailover from 2000ms to 200ms (72fd804)

Features

  • cluster: support scaling reads to slaves (98bdec2), closes #170
  • redis: support readonly mode for cluster (0a4186e)

BREAKING CHANGES

  • cluster: Cluster#masterNodes and Cluster#nodes is removed. Use Cluster#nodes('masters') and Cluster#nodes('all') instead.
  • cluster: Cluster#to() is removed. Use Promise.all(Cluster#nodes().map(function (node) {})) instead.
  • cluster: Option readOnly is removed. Check out scaleReads option.

v1.15.0

Choose a tag to compare

@luin luin released this 31 Jan 10:25

Bug Fixes

  • "MOVED" err not crashing process when slot was not assigned (6974d4d)
  • remove extra typeof in .to cluster helper (a7b0bfe)

Features

  • revisit of .to(nodeGroup) command (ba12e47)

v1.14.0

Choose a tag to compare

@luin luin released this 04 Jan 13:23
  • Support returning buffers for transactions (#223).

v1.13.2

Choose a tag to compare

@luin luin released this 30 Dec 03:45
  • Add argument transformer for msetnx to support Map (#218).