- Update to 2.8.0
- Enable STAGE support
- Enable AUTOPLIST and delete pkg-plist accordingly
- Tweak HIREDIS option description
Changes:
* redis-py should play better with gevent when a gevent Timeout is
raised.
* Added SENTINEL command.
* Fixed a bug where pipelines could potentially correct a connection
if the MULTI command generated a ResponseError.
* Connections now call socket.shutdown() prior to socket.close() to
ensure communication ends immediately per the note at
http://docs.python.org/2/library/socket.html#socket.socket.close
* Lock checks are now based on floats rather than ints.
- Update to 2.7.6
- Update setup.py patch
Changes:
* 2.7.6
* Added CONFIG RESETSTAT command. Thanks Yossi Gottlieb.
* Fixed a bug introduced in 2.7.3 that caused issues with script objects
and pipelines. Thanks Carpentier Pierre-Francois.
* Converted redis-py's test suite to use the awesome py.test library.
* Fixed a bug introduced in 2.7.5 that prevented a ConnectionError from
being raised when the Redis server is LOADING data.
* Added a BusyLoadingError exception that's raised when the Redis server
is starting up and not accepting commands yet. BusyLoadingError
subclasses ConnectionError, which this state previously returned.
Thanks Yossi Gottlieb.
* 2.7.5
* DEL, HDEL and ZREM commands now return the numbers of keys deleted
instead of just True/False.
* from_url now supports URIs with a port number. Thanks Aaron Westendorf.