pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/py-redis



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Feb  4 16:38:23 UTC 2020

Modified Files:
        pkgsrc/databases/py-redis: Makefile distinfo

Log Message:
py-redis: updated to 3.4.1

3.4.1
* Move the username argument in the Redis and Connection classes to the
  end of the argument list. This helps those poor souls that specify all
  their connection options as non-keyword arguments.
* Prior to ACL support, redis-py ignored the username component of
  Connection URLs. With ACL support, usernames are no longer ignored and
  are used to authenticate against an ACL rule. Some cloud vendors with
  managed Redis instances (like Heroku) provide connection URLs with a
  username component pre-ACL that is not intended to be used. Sending that
  username to Redis servers < 6.0.0 results in an error. Attempt to detect
  this condition and retry the AUTH command with only the password such
  that authentication continues to work for these users.
* Removed the __eq__ hooks to Redis and ConnectionPool that were added
  in 3.4.0. This ended up being a bad idea as two separate connection
  pools be considered equal yet manage a completely separate set of
  connections.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/py-redis/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/databases/py-redis/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/py-redis/Makefile
diff -u pkgsrc/databases/py-redis/Makefile:1.11 pkgsrc/databases/py-redis/Makefile:1.12
--- pkgsrc/databases/py-redis/Makefile:1.11     Sat Feb  1 12:25:25 2020
+++ pkgsrc/databases/py-redis/Makefile  Tue Feb  4 16:38:22 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2020/02/01 12:25:25 adam Exp $
+# $NetBSD: Makefile,v 1.12 2020/02/04 16:38:22 adam Exp $
 
-DISTNAME=      redis-3.4.0
+DISTNAME=      redis-3.4.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    databases python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=r/redis/}

Index: pkgsrc/databases/py-redis/distinfo
diff -u pkgsrc/databases/py-redis/distinfo:1.9 pkgsrc/databases/py-redis/distinfo:1.10
--- pkgsrc/databases/py-redis/distinfo:1.9      Sat Feb  1 12:25:25 2020
+++ pkgsrc/databases/py-redis/distinfo  Tue Feb  4 16:38:22 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.9 2020/02/01 12:25:25 adam Exp $
+$NetBSD: distinfo,v 1.10 2020/02/04 16:38:22 adam Exp $
 
-SHA1 (redis-3.4.0.tar.gz) = fcebc71dd0da8279b176a46bb0c15cb91d04b833
-RMD160 (redis-3.4.0.tar.gz) = b57e600897dfb8d9c1aee942d2be9abeb37643dd
-SHA512 (redis-3.4.0.tar.gz) = 8044eecaf272e97ddd3949dcb11177749a4cafd998ea7672c5be46220874cd3de3b95043a32fdea3b32ea33a128f78946867936ff136a65e84d5124645f8ed9f
-Size (redis-3.4.0.tar.gz) = 137356 bytes
+SHA1 (redis-3.4.1.tar.gz) = 2596346f26c10cb649fd66a7858269b95b63b4fa
+RMD160 (redis-3.4.1.tar.gz) = 0f2b469757b79a42ea6a1a0b6cf72f78f18d0afe
+SHA512 (redis-3.4.1.tar.gz) = e5aacb8e448a563c802c808406754375a64d9f88d7efbd1c23ac42e48dc527f1840223887f0d1819409946a9406677893d93ea003f0b828bd0a7cb06e99c64a7
+Size (redis-3.4.1.tar.gz) = 137568 bytes



Home | Main Index | Thread Index | Old Index