summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-12-18 14:49:23 -0500
committerSimon Charette <charette.s@gmail.com>2016-02-26 16:22:17 -0500
commitba6f83ec95dbd265ae3d493c8d6375f36052d12e (patch)
tree1912ca6010e8e771719d42c0527b391c3d304d07 /docs
parentcd46947ddb6719c819e75464d6aa0a10a6c10fad (diff)
[1.9.x] 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. Backport of 3938b3ccaa85f1c366909a4839696007726a09da from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.10.txt3
-rw-r--r--docs/releases/1.9.3.txt3
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`).