diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2015-05-31 10:47:28 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2015-05-31 10:47:28 +0100 |
commit | 0b5270eab393fad20faa7a6a9720af18c97b1773 (patch) | |
tree | de32d3300256be1bfc8626361970efa32b133ce5 /docs | |
parent | e9851a7d51afffea2a5679934ad6284c0835cfa2 (diff) | |
download | factory-boy-0b5270eab393fad20faa7a6a9720af18c97b1773.tar factory-boy-0b5270eab393fad20faa7a6a9720af18c97b1773.tar.gz |
Properly handle custom Django managers (Closes #201).
The actual behavior of Django with custom managers and inherited
abstract models is rather complex, so this had to be adapted to the
actual Django source code.
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 0cbd4af..c871ce8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -15,6 +15,10 @@ ChangeLog thus allowing to pass in a lazy iterator such as a Django queryset (i.e ``factory.Iterator(models.MyThingy.objects.all())``). +*Bugfix:* + + - :issue:`201`: Properly handle custom Django managers when dealing with abstract Django models. + .. _v2.5.2: 2.5.2 (2015-04-21) |