summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorandy <andy@whiskeymedia.com>2012-10-07 20:24:02 -0700
committerandy <andy@whiskeymedia.com>2012-10-07 20:24:02 -0700
commitf6a6f2cf74cca1325c0976666ec9cd0dab79bdf3 (patch)
tree51030aa8007f98de80315fbbe95e0c935d3713a5 /CHANGES
parent5a23ec23bfbb70bf6d946062ff05ce2e6389dfa8 (diff)
downloadredis-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--CHANGES11
1 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 0315540..a63e924 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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.