Update changelog for #1070

This commit is contained in:
Emmanuel Leblond 2015-07-19 10:33:54 +02:00
parent 3ffaf2c0e1
commit 0752c6b24f
2 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@ Changes in 0.10.1 - DEV
- Fix infinite recursion with CASCADE delete rules under specific conditions. #1046
- Fix CachedReferenceField bug when loading cached docs as DBRef but failing to save them. #1047
- Fix ignored chained options #842
- Document save's save_condition error raises `SaveConditionError` exception #1070
Changes in 0.10.0
=================

View File

@ -295,6 +295,8 @@ class Document(BaseDocument):
if the condition is satisfied in the current db record.
.. versionchanged:: 0.10
:class:`OperationError` exception raised if save_condition fails.
.. versionchanged:: 0.10.1
:class: save_condition failure now raises a `SaveConditionError`
"""
signals.pre_save.send(self.__class__, document=self)