Skip to content

Commit 4b7f562

Browse files
committed
3.4.1
1 parent 1b05075 commit 4b7f562

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGES

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* 3.4.1 (in development)
1+
* 3.4.1
22
* Move the username argument in the Redis and Connection classes to the
33
end of the argument list. This helps those poor souls that specify all
44
their connection options as non-keyword arguments. #1276
@@ -10,6 +10,10 @@
1010
username to Redis servers < 6.0.0 results in an error. Attempt to detect
1111
this condition and retry the AUTH command with only the password such
1212
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.
1317
* 3.4.0
1418
* Allow empty pipelines to be executed if there are WATCHed keys.
1519
This is a convenient way to test if any of the watched keys changed
@@ -40,6 +44,8 @@
4044
raised by child processes in the very unlikely chance that a deadlock
4145
is encountered. Thanks @gmbnomis, @mdellweg, @yht804421715. #1270,
4246
#1138, #1178, #906, #1262
47+
* Added __eq__ hooks to the Redis and ConnectionPool classes.
48+
Thanks @brainix. #1240
4349
* 3.3.11
4450
* Further fix for the SSLError -> TimeoutError mapping to work
4551
on obscure releases of Python 2.7.

redis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def int_or_str(value):
3131
return value
3232

3333

34-
__version__ = '3.4.0'
34+
__version__ = '3.4.1'
3535
VERSION = tuple(map(int_or_str, __version__.split('.')))
3636

3737
__all__ = [

0 commit comments

Comments
 (0)