diff options
author | rodent <rodent@pkgsrc.org> | 2014-10-05 20:12:16 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2014-10-05 20:12:16 +0000 |
commit | 2ed26b4c1b37497b1c4e2b4e07f400afa6840986 (patch) | |
tree | 9f163d110e6918a19b93ffc61f96656b4b48a0c4 /databases | |
parent | a0b2bfa02b4d9c338af7892f89fb7df3cd622f2f (diff) | |
download | pkgsrc-2ed26b4c1b37497b1c4e2b4e07f400afa6840986.tar.gz |
* 2.10.3
* Fixed a bug with the bytearray support introduced in 2.10.2. Thanks
Josh Owen.
* 2.10.2
* Added support for Hiredis's new bytearray support. Thanks
https://github.com/tzickel
* POSSIBLE BACKWARDS INCOMPATBLE CHANGE: Fixed a possible race condition
when multiple threads share the same Lock instance with a timeout. Lock
tokens are now stored in thread local storage by default. If you have
code that acquires a lock in one thread and passes that lock instance to
another thread to release it, you need to disable thread local storage.
Refer to the doc strings on the Lock class about the thread_local
argument information.
* Fixed a regression in from_url where "charset" and "errors" weren't
valid options. "encoding" and "encoding_errors" are still accepted
and preferred.
* The "charset" and "errors" options have been deprecated. Passing
either to StrictRedis.__init__ or from_url will still work but will
also emit a DeprecationWarning. Instead use the "encoding" and
"encoding_errors" options.
* Fixed a compatability bug with Python 3 when the server closes a
connection.
* Added BITPOS command. Thanks https://github.com/jettify.
* Fixed a bug when attempting to send large values to Redis in a Pipeline.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/py-redis-py/Makefile | 4 | ||||
-rw-r--r-- | databases/py-redis-py/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/databases/py-redis-py/Makefile b/databases/py-redis-py/Makefile index 63c02b54859..894bbfb955e 100644 --- a/databases/py-redis-py/Makefile +++ b/databases/py-redis-py/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2014/06/08 15:56:39 rodent Exp $ +# $NetBSD: Makefile,v 1.3 2014/10/05 20:12:16 rodent Exp $ -DISTNAME= redis-2.10.1 +DISTNAME= redis-2.10.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-/-py-/1} CATEGORIES= databases python MASTER_SITES= https://pypi.python.org/packages/source/r/redis/ diff --git a/databases/py-redis-py/distinfo b/databases/py-redis-py/distinfo index d30e2aaea27..bcca7bb21e5 100644 --- a/databases/py-redis-py/distinfo +++ b/databases/py-redis-py/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2014/06/08 15:56:39 rodent Exp $ +$NetBSD: distinfo,v 1.3 2014/10/05 20:12:16 rodent Exp $ -SHA1 (redis-2.10.1.tar.gz) = ecc037c17e651dfa634f78b765a0157b5c2da097 -RMD160 (redis-2.10.1.tar.gz) = 3f5a3db2955578c7b59fdb42a6a33043f38f1609 -Size (redis-2.10.1.tar.gz) = 84143 bytes +SHA1 (redis-2.10.3.tar.gz) = ac04557477e4eeefcb0a5ddeb32138bd08826b0f +RMD160 (redis-2.10.3.tar.gz) = 7864eaac18bdaeb9f3814cf5305ff685a1ced9aa +Size (redis-2.10.3.tar.gz) = 86532 bytes |