File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ # 4.2.0
4
+
5
+ * Convert commands to accept keyword arguments rather than option hashes. This both help catching typos, and reduce needless allocations.
6
+ * Deprecate the synchrony driver. It will be removed in 5.0 and hopefully maintained as a separate gem. See #915 .
7
+ * Make ` Redis#exists ` variadic, will return an Integer if called with multiple keys.
8
+ * Add ` Redis#exists? ` to get a Boolean if any of the keys exists.
9
+ * ` Redis#exists ` when called with a single key will warn that future versions will return an Integer.
10
+ Set ` Redis.exists_returns_integer = true ` to opt-in to the new behavior.
11
+ * Support ` keepttl ` ooption in ` set ` . See #913 .
12
+ * Optimized initialization of Redis::Cluster. See #912 .
13
+ * Accept sentinel options even with string key. See #599 .
14
+ * Verify TLS connections by default. See #900 .
15
+
3
16
# 4.1.4
4
17
5
18
* Alias ` Redis#disconnect ` as ` #close ` . See #901 .
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
class Redis
4
- VERSION = '4.1.4 '
4
+ VERSION = '4.2.0 '
5
5
end
You can’t perform that action at this time.
0 commit comments