diff options
author | andy <andy@whiskeymedia.com> | 2012-10-07 20:24:02 -0700 |
---|---|---|
committer | andy <andy@whiskeymedia.com> | 2012-10-07 20:24:02 -0700 |
commit | f6a6f2cf74cca1325c0976666ec9cd0dab79bdf3 (patch) | |
tree | 51030aa8007f98de80315fbbe95e0c935d3713a5 /CHANGES | |
parent | 5a23ec23bfbb70bf6d946062ff05ce2e6389dfa8 (diff) | |
download | redis-py-f6a6f2cf74cca1325c0976666ec9cd0dab79bdf3.tar.gz |
pipelines now raise errors by default.
pass `raise_on_error=False` to `pipeline.execute()` if you prefer the old
behavior.
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,6 +1,15 @@ -* 2.6.3 (in development) +* 2.7.0 (in development) * Added BITOP and BITCOUNT commands. Thanks Mark Tozzi. * Added the TIME command. Thanks Jason Knight. + * Added support for LUA scripting. Thanks to Angus Peart, Drew Smathers, + Issac Kelly, Louis-Philippe Perron, Sean Bleier, Jeffrey Kaditz, and + Dvir Volk for various patches and contributions to this feature. + * Changed the default error handling in pipelines. By default, the first + error in a pipeline will now be raised. A new parameter to the + pipeline's execute, `raise_on_error`, can be set to False to keep the + old behavior of embeedding the exception instances in the result. + * Fixed a bug with pipelines where parse errors won't corrupt the + socket. * 2.6.2 * `from_url` is now available as a classmethod on client classes. Thanks Jon Parise for the patch. |