diff options
| author | Simon Charette <charette.s@gmail.com> | 2015-12-18 14:49:23 -0500 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2016-02-26 16:18:16 -0500 |
| commit | 3938b3ccaa85f1c366909a4839696007726a09da (patch) | |
| tree | 77bb489477f60168b61add15522aa7479f30fbae /docs | |
| parent | b9519b273030a12f382ea0c1b72729fc0c3248da (diff) | |
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.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.8.10.txt | 3 | ||||
| -rw-r--r-- | docs/releases/1.9.3.txt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.8.10.txt b/docs/releases/1.8.10.txt index c9fbd0470d..b1319ff802 100644 --- a/docs/releases/1.8.10.txt +++ b/docs/releases/1.8.10.txt @@ -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`). diff --git a/docs/releases/1.9.3.txt b/docs/releases/1.9.3.txt index 625899daa0..e0447d2afe 100644 --- a/docs/releases/1.9.3.txt +++ b/docs/releases/1.9.3.txt @@ -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`). |
