We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00f7a9f commit 082d198Copy full SHA for 082d198
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# Unreleased
2
3
+# 5.4.0
4
+
5
+- Fix `blmpop` method to actually use `BLMPOP`, it was mistakenly issuing `LMPOP` commands.
6
+- `xadd` now accepts a `minid:` argument.
7
+- `zrank` and `zrevrank` now accepts `with_score:` argument.
8
+- `Redis#call` now accept a block, allowing to use `Redis` instances where `RedisClient` is expected.
9
10
# 5.3.0
11
12
- Fix the return type of `hgetall` when used inside a `multi` transaction which is itself inside a pipeline.
lib/redis/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
class Redis
- VERSION = '5.3.0'
+ VERSION = '5.4.0'
end
0 commit comments