diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2015-03-26 22:37:54 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2015-03-26 22:37:54 +0100 |
commit | 72fd943513b0e516f06c53b13ff35ca814b0a4a0 (patch) | |
tree | 2d0bb5f265860afe363ed95d31191ce5ee40a638 /docs | |
parent | 69befae5fde1897cf68c4d44a146db5ba642c814 (diff) | |
download | factory-boy-72fd943513b0e516f06c53b13ff35ca814b0a4a0.tar factory-boy-72fd943513b0e516f06c53b13ff35ca814b0a4a0.tar.gz |
Fix issues between mute_signals() and factory inheritance (Closes #183).
Previously, if a factory was decorated with ``@mute_signals`` and one of
its descendant called another one of its descendant, signals weren't
unmuted properly.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/changelog.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst index 13fdd68..0cf8368 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -12,6 +12,10 @@ ChangeLog - Add support for getting/setting :mod:`factory.fuzzy`'s random state (see :issue:`175`, :issue:`185`). - Support lazy evaluation of iterables in :class:`factory.fuzzy.FuzzyChoice` (see :issue:`184`). +*Bugfix:* + + - Avoid issues when using :meth:`factory.django.mute_signals` on a base factory class (see :issue:`183`). + *Deprecation:* - Remove deprecated features from :ref:`v2.4.0` |