392532f780
Accepting request 688628 from home:jayvdb:django
Tomáš Chvátal
2019-03-26 09:41:16 +00:00
728f79cd08
Accepting request 688628 from home:jayvdb:django
Tomáš Chvátal
2019-03-26 09:41:16 +00:00
86cf3a1c1c
Accepting request 676986 from devel:languages:python
Yuchen Lin2019-02-19 11:00:38 +00:00
491851fa09
Accepting request 676986 from devel:languages:python
Yuchen Lin2019-02-19 11:00:38 +00:00
2df149d0c1
Accepting request 676978 from home:sebix:branches:devel:languages:python
Thomas Bechtold2019-02-18 09:39:32 +00:00
e6278448bb
Accepting request 676978 from home:sebix:branches:devel:languages:python
Thomas Bechtold2019-02-18 09:39:32 +00:00
a7a56ab3ae
- 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
Tomáš Chvátal
2019-02-15 11:46:31 +00:00
83cf28ebbc
- 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
Tomáš Chvátal
2019-02-15 11:46:31 +00:00
f62398c5be
Accepting request 649543 from home:sebix:branches:devel:languages:python
Todd R
2018-11-16 15:02:25 +00:00
672bdbe9c3
Accepting request 649543 from home:sebix:branches:devel:languages:python
Todd R
2018-11-16 15:02:25 +00:00
901058bff2
Accepting request 649524 from home:sebix:branches:devel:languages:python
Tomáš Chvátal
2018-11-16 10:20:02 +00:00
24cdc4f801
Accepting request 649524 from home:sebix:branches:devel:languages:python
Tomáš Chvátal
2018-11-16 10:20:02 +00:00
38b1bbe888
Accepting request 635475 from devel:languages:python
Yuchen Lin2018-09-13 22:01:36 +00:00
79a0900a39
Accepting request 635475 from devel:languages:python
Yuchen Lin2018-09-13 22:01:36 +00:00
b5f7a3b1e7
- 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
Tomáš Chvátal
2018-09-13 07:54:53 +00:00
92fa93d609
- 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
Tomáš Chvátal
2018-09-13 07:54:53 +00:00
d13562cd38
- update to 2.10.5: * Allow URL encoded parameters in Redis URLs. Characters like a "/" can now be URL encoded and redis-py will correctly decode them. Thanks * Added support for the WAIT command. Thanks https://github.com/eshizhan * Better shutdown support for the PubSub Worker Thread. It now properly cleans up the connection, unsubscribes from any channels and patterns previously subscribed to and consumes any waiting messages on the socket. * Added the ability to sleep for a brief period in the event of a WatchError occuring. Thanks Joshua Harlow. * Fixed a bug with pipeline error reporting when dealing with characters in error messages that could not be encoded to the connection's character set. Thanks Hendrik Muhs. * Fixed a bug in Sentinel connections that would inadvertantly connect to the master when the connection pool resets. Thanks https://github.com/df3n5 * Better timeout support in Pubsub get_message. Thanks Andy Isaacson. * Fixed a bug with the HiredisParser that would cause the parser to get stuck in an endless loop if a specific number of bytes were delivered from the socket. This fix also increases performance of parsing large responses from the Redis server. * Added support for ZREVRANGEBYLEX. * ConnectionErrors are now raised if Redis refuses a connection due to the maxclients limit being exceeded. Thanks Roman Karpovich. * max_connections can now be set when instantiating client instances. Thanks Ohad Perry.
Dirk Mueller2016-11-15 12:37:13 +00:00
d3334da2f5
- update to 2.10.5: * Allow URL encoded parameters in Redis URLs. Characters like a "/" can now be URL encoded and redis-py will correctly decode them. Thanks * Added support for the WAIT command. Thanks https://github.com/eshizhan * Better shutdown support for the PubSub Worker Thread. It now properly cleans up the connection, unsubscribes from any channels and patterns previously subscribed to and consumes any waiting messages on the socket. * Added the ability to sleep for a brief period in the event of a WatchError occuring. Thanks Joshua Harlow. * Fixed a bug with pipeline error reporting when dealing with characters in error messages that could not be encoded to the connection's character set. Thanks Hendrik Muhs. * Fixed a bug in Sentinel connections that would inadvertantly connect to the master when the connection pool resets. Thanks https://github.com/df3n5 * Better timeout support in Pubsub get_message. Thanks Andy Isaacson. * Fixed a bug with the HiredisParser that would cause the parser to get stuck in an endless loop if a specific number of bytes were delivered from the socket. This fix also increases performance of parsing large responses from the Redis server. * Added support for ZREVRANGEBYLEX. * ConnectionErrors are now raised if Redis refuses a connection due to the maxclients limit being exceeded. Thanks Roman Karpovich. * max_connections can now be set when instantiating client instances. Thanks Ohad Perry.
Dirk Mueller2016-11-15 12:37:13 +00:00
e97c29c8f3
Accepting request 247253 from devel:languages:python
Stephan Kulow
2014-09-03 06:30:19 +00:00
a8fb558a5b
Accepting request 247253 from devel:languages:python
Stephan Kulow
2014-09-03 06:30:19 +00:00
2788fb2d31
Accepting request 247252 from home:TheBlackCat:branches:devel:languages:python
Todd R
2014-09-02 16:38:54 +00:00
30d0eef5b1
Accepting request 247252 from home:TheBlackCat:branches:devel:languages:python
Todd R
2014-09-02 16:38:54 +00:00
ac5671162c
Accepting request 208186 from devel:languages:python
Stephan Kulow
2013-11-25 15:03:31 +00:00
04a9491fb4
Accepting request 208186 from devel:languages:python
Stephan Kulow
2013-11-25 15:03:31 +00:00
8ea62ebe80
Accepting request 208185 from home:posophe:branches:devel:languages:python
Denisart Benjamin
2013-11-24 19:05:59 +00:00
616ba5a85b
Accepting request 208185 from home:posophe:branches:devel:languages:python
Denisart Benjamin
2013-11-24 19:05:59 +00:00
b927205009
Accepting request 186099 from devel:languages:python
Stephan Kulow
2013-08-07 18:53:11 +00:00
9388cbc65f
Accepting request 186099 from devel:languages:python
Stephan Kulow
2013-08-07 18:53:11 +00:00