All Versions
52
Latest Version
Avg Release Cycle
103 days
Latest Release
-

Changelog History
Page 2

  • v4.5.1 Changes

    • โช Restore the accidential auth behavior of redis-rb 4.3.0 with a warning. If provided with the default user's password, but a wrong username, redis-rb will first try to connect as the provided user, but then will fallback to connect as the default user with the provided password. This behavior is deprecated and will be removed in Redis 4.6.0. Fix #1038.
  • v4.5.0 Changes

    • ๐Ÿ‘€ Handle parts of the command using incompatible encodings. See #1037.
    • โž• Add GET option to SET command. See #1036.
    • โž• Add ZRANDMEMBER command. See #1035.
    • โž• Add LMOVE/BLMOVE commands. See #1034.
    • โž• Add ZMSCORE command. See #1032.
    • โž• Add LT/GT options to ZADD. See #1033.
    • โž• Add SMISMEMBER command. See #1031.
    • โž• Add EXAT/PXAT options to SET. See #1028.
    • โž• Add GETDEL/GETEX commands. See #1024.
    • Redis#exists now returns an Integer by default, as warned since 4.2.0. The old behavior can be restored with Redis.exists_returns_integer = false.
    • ๐Ÿ›  Fix Redis < 6 detection during connect. See #1025.
    • ๐Ÿ›  Fix fetching command details in Redis cluster when the first node is unhealthy. See #1026.
  • v4.4.0 Changes

    • Redis cluster: fix cross-slot validation in pipelines. Fix ##1019.
    • โž• Add support for XAUTOCLAIM. See #1018.
    • Properly issue READONLY when reconnecting to replicas. Fix #1017.
    • ๐Ÿ‘€ Make del a noop if passed an empty list of keys. See #998.
    • โž• Add support for ZINTER. See #995.
  • v4.3.1 Changes

    • ๐Ÿ›  Fix password authentication against redis server 5 and older.
  • v4.3.0 Changes

    • โž• Add the TYPE argument to scan and scan_each. See #985.
    • ๐Ÿ‘Œ Support AUTH command for ACL. See #967.
  • v4.2.5 Changes

    • โšก๏ธ Optimize the ruby connector write buffering. See #964.
  • v4.2.4 Changes

    • ๐Ÿ›  Fix bytesize calculations in the ruby connector, and work on a copy of the buffer. Fix #961, #962.
  • v4.2.3 Changes

    • ๐Ÿ‘€ Use io/wait instead of IO.select in the ruby connector. See #960.
    • ๐Ÿ‘€ Use exception free non blocking IOs in the ruby connector. See #926.
    • ๐Ÿ‘€ Prevent corruption of the client when an interrupt happen during inside a pipeline block. See #945.
  • v4.2.2 Changes

    • ๐Ÿ›  Fix WATCH support for Redis::Distributed. See #941.
    • ๐Ÿ›  Fix handling of empty stream responses. See #905, #929.
  • v4.2.1 Changes

    • ๐Ÿ›  Fix exists? returning an actual boolean when called with multiple keys. See #918.
    • Setting Redis.exists_returns_integer = false disables warning message about new behaviour. See #920.