All Versions
52
Latest Version
Avg Release Cycle
103 days
Latest Release
-
Changelog History
Page 2
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 thedefault
user with the provided password. This behavior is deprecated and will be removed in Redis 4.6.0. Fix #1038.
- โช Restore the accidential auth behavior of redis-rb 4.3.0 with a warning. If provided with the
-
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 withRedis.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 forRedis::Distributed
. See #941. - ๐ Fix handling of empty stream responses. See #905, #929.
- ๐ Fix
-
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.
- ๐ Fix