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:57:47 -0500
commit79c3950562a3f9c9d6d5e37990dfa9eb84052de7 (patch)
tree6a07b7c3b06edd5b13f09c42f3d30bb09973b854 /docs
parentd162438c651664065816d4a16189a533df4f3fb1 (diff)
[1.8.x] 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
1 files changed, 3 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`).