mirror of
https://github.com/django/django.git
synced 2025-07-23 05:05:17 +00:00
Fixed #26286 -- Prevented content type managers from sharing their cache.
This should prevent managers methods from returning content type instances registered to foreign apps now that these managers are also attached to models created during migration phases. Thanks Tim for the review. Refs #23822.
This commit is contained in:
parent
b9519b2730
commit
3938b3ccaa
4 changed files with 30 additions and 10 deletions
|
@ -26,3 +26,6 @@ Bugfixes
|
|||
``URLValidator`` to fix a regression in Django 1.8 (:ticket:`26204`).
|
||||
|
||||
* Fixed ``BoundField`` to reallow slices of subwidgets (:ticket:`26267`).
|
||||
|
||||
* Prevented ``ContentTypeManager`` instances from sharing their cache
|
||||
(:ticket:`26286`).
|
||||
|
|
|
@ -49,3 +49,6 @@ Bugfixes
|
|||
|
||||
* Fixed a crash when passing a nonexistent template name to the cached template
|
||||
loader's ``load_template()`` method (:ticket:`26280`).
|
||||
|
||||
* Prevented ``ContentTypeManager`` instances from sharing their cache
|
||||
(:ticket:`26286`).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue