File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
- * 3.4.1 (in development)
1
+ * 3.4.1
2
2
* Move the username argument in the Redis and Connection classes to the
3
3
end of the argument list. This helps those poor souls that specify all
4
4
their connection options as non-keyword arguments. #1276
10
10
username to Redis servers < 6.0.0 results in an error. Attempt to detect
11
11
this condition and retry the AUTH command with only the password such
12
12
that authentication continues to work for these users. #1274
13
+ * Removed the __eq__ hooks to Redis and ConnectionPool that were added
14
+ in 3.4.0. This ended up being a bad idea as two separate connection
15
+ pools be considered equal yet manage a completely separate set of
16
+ connections.
13
17
* 3.4.0
14
18
* Allow empty pipelines to be executed if there are WATCHed keys.
15
19
This is a convenient way to test if any of the watched keys changed
40
44
raised by child processes in the very unlikely chance that a deadlock
41
45
is encountered. Thanks @gmbnomis, @mdellweg, @yht804421715. #1270,
42
46
#1138, #1178, #906, #1262
47
+ * Added __eq__ hooks to the Redis and ConnectionPool classes.
48
+ Thanks @brainix. #1240
43
49
* 3.3.11
44
50
* Further fix for the SSLError -> TimeoutError mapping to work
45
51
on obscure releases of Python 2.7.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def int_or_str(value):
31
31
return value
32
32
33
33
34
- __version__ = '3.4.0 '
34
+ __version__ = '3.4.1 '
35
35
VERSION = tuple (map (int_or_str , __version__ .split ('.' )))
36
36
37
37
__all__ = [
You can’t perform that action at this time.
0 commit comments