Revisions of python-redis

buildservice-autocommit accepted request 751836 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 49)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 750899 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 48)
Added changes as requested in SR#750614. Hope I understood the comments there correctly.

- specfile:
  * be more specifc in %files section
- update to version 3.3.11:
  * Further fix for the SSLError -> TimeoutError mapping to work on
    obscure releases of Python 2.7.
- changes from version 3.3.10:
  * Fixed a potential error handling bug for the SSLError ->
    TimeoutError mapping introduced in 3.3.9. hanks @zbristow. #1224
- changes from version 3.3.9:
  * Mapped Python 2.7 SSLError to TimeoutError where
    appropriate. Timeouts should now consistently raise TimeoutErrors
    on Python 2.7 for both unsecured and secured connections. Thanks
    @zbristow. #1222
buildservice-autocommit accepted request 729802 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 47)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 46)
- Update to 3.3.8:
  * Fixed MONITOR parsing to properly parse IPv6 client addresses
  * Fixed a regression introduced in 3.3.0
buildservice-autocommit accepted request 722638 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 45)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 722636 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 44)
- Update to v3.3.6
  * Resolve a race condition with the PubSubWorkerThread. #1150
  * Response callbacks are now case insensitive.
  * Added support for hiredis-py 1.0.0 encoding error support.
  * Add READONLY and READWRITE commands.
  * Added extensive health checks that keep the connections lively.
  * Many more changes, see upstream changelog.
buildservice-autocommit accepted request 694225 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 43)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 42)
- Update to 3.2.0 bsc#1131555:
buildservice-autocommit accepted request 690298 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 41)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 690168 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 40)
- Add missing build dependency setuptools
buildservice-autocommit accepted request 688630 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 39)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 688628 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 38)
- Update to v3.2.1
  * Fix SentinelConnectionPool to work in multiprocess/forked
    environments
buildservice-autocommit accepted request 676986 from Thomas Bechtold's avatar Thomas Bechtold (tbechtold) (revision 37)
baserev update by copy to link target
Thomas Bechtold's avatar Thomas Bechtold (tbechtold) accepted request 676978 from Sebastian Wagner's avatar Sebastian Wagner (sebix) (revision 36)
- Update to 3.2.0:
    * Added support for `select.poll` to test whether data can be read
      on a socket. This should allow for significantly more connections to
      be used with pubsub. Fixes #486/#1115
    * Attempt to guarentee that the ConnectionPool hands out healthy
      connections. Healthy connections are those that have an established
      socket connection to the Redis server, are ready to accept a command
      and have no data available to read. Fixes #1127/#886
    * Use the socket.IPPROTO_TCP constant instead of socket.SOL_TCP.
      IPPROTO_TCP is available on more interpreters (Jython for instance).
      Thanks @Junnplus. #1130
    * Fixed a regression introduced in 3.0 that mishandles exceptions not
      derived from the base Exception class. KeyboardInterrupt and
      gevent.timeout notable. Thanks Christian Fersch. #1128/#1129
    * Significant improvements to handing connections with forked processes.
      Parent and child processes no longer trample on each others' connections.
      Thanks to Jay Rolette for the patch and highlighting this issue.
      #504/#732/#784/#863
    * PythonParser no longer closes the associated connection's socket. The
      connection itself will close the socket. #1108/#1085
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 35)
- Update to 3.1.0:
    * Connection URLs must have one of the following schemes:
      redis://, rediss://, unix://. Thanks @jdupl123. #961/#969
    * Fixed an issue with retry_on_timeout logic that caused some TimeoutErrors
      to be retried. Thanks Aaron Yang. #1022/#1023
    * Added support for SNI for SSL. Thanks @oridistor and Roey Prat. #1087
    * Fixed ConnectionPool repr for pools with no connections. Thanks
      Cody Scott. #1043/#995
    * Fixed GEOHASH to return a None value when specifying a place that
      doesn't exist on the server. Thanks @guybe7. #1126
    * Fixed XREADGROUP to return an empty dictionary for messages that
      have been deleted but still exist in the unacknowledged queue. Thanks
      @xeizmendi. #1116
    * Added an owned method to Lock objects. owned returns a boolean
      indicating whether the current lock instance still owns the lock.
      Thanks Dave Johansen. #1112
    * Allow lock.acquire() to accept an optional token argument. If
      provided, the token argument is used as the unique value used to claim
      the lock. Thankd Dave Johansen. #1112
    * Added a reacquire method to Lock objects. reaquire attempts to renew
      the lock such that the timeout is extended to the same value that the
      lock was initially acquired with. Thanks Ihor Kalnytskyi. #1014
    * Stream names found within XREAD and XREADGROUP responses now properly
      respect the decode_responses flag.
    * XPENDING_RANGE now requires the user the specify the min, max and
      count arguments. Newer versions of Redis prevent ount from being
      infinite so it's left to the user to specify these values explicitly.
    * ZADD now returns None when xx=True and incr=True and an element
      is specified that doesn't exist in the sorted set. This matches
      what the server returns in this case. #1084
buildservice-autocommit accepted request 649608 from Todd R's avatar Todd R (TheBlackCat) (revision 34)
baserev update by copy to link target
Todd R's avatar Todd R (TheBlackCat) accepted request 649543 from Sebastian Wagner's avatar Sebastian Wagner (sebix) (revision 33)
- add recommendation for python-hiredis as requested by @mimi_vx in Request#649524
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 649524 from Sebastian Wagner's avatar Sebastian Wagner (sebix) (revision 32)
- update to version 3.0.1:
- update to version 3.0.0:
buildservice-autocommit accepted request 635475 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 31)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 30)
- Add patch redis-skip-rounding.patch to fix rounding issues with
  geolocation, it is not stable enought o produce pinpoint equal
  results among 32bit platforms
Displaying revisions 41 - 60 of 89
openSUSE Build Service is sponsored by