summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBen Kraft <benjaminjkraft@gmail.com>2016-01-23 18:02:15 -0800
committerTim Graham <timograham@gmail.com>2016-01-26 06:56:21 -0500
commit13023ba86746980aace2341ba32a9419e7567751 (patch)
tree77ee5f8c4583904508bdabbdcaf638756d800e0f /docs
parentcfda1fa3f8d95f0f4a369da9021dbd770e5fa44a (diff)
Fixed #26122 -- Fixed copying a LazyObject
Shallow copying of `django.utils.functional.LazyObject` or its subclasses has been broken in a couple of different ways in the past, most recently due to 35355a4.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.9.txt3
-rw-r--r--docs/releases/1.9.2.txt3
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.8.9.txt b/docs/releases/1.8.9.txt
index 752dc409c4..0009de0bdb 100644
--- a/docs/releases/1.8.9.txt
+++ b/docs/releases/1.8.9.txt
@@ -31,3 +31,6 @@ Bugfixes
* Fixed a crash when using a reverse ``OneToOneField`` in
``ModelAdmin.readonly_fields`` (:ticket:`26060`).
+
+* Fixed a regression in Django 1.8.5 that broke copying a ``SimpleLazyObject``
+ with ``copy.copy()`` (:ticket:`26122`).
diff --git a/docs/releases/1.9.2.txt b/docs/releases/1.9.2.txt
index 30527c146a..6d0288a337 100644
--- a/docs/releases/1.9.2.txt
+++ b/docs/releases/1.9.2.txt
@@ -82,3 +82,6 @@ Bugfixes
origin from the node via ``Node.token.source[0]``. This was an undocumented,
private API. The origin is now available directly on each node using the
``Node.origin`` attribute (:ticket:`25848`).
+
+* Fixed a regression in Django 1.8.5 that broke copying a ``SimpleLazyObject``
+ with ``copy.copy()`` (:ticket:`26122`).