summaryrefslogtreecommitdiff
path: root/docs/releases/1.8.5.txt
diff options
context:
space:
mode:
authorBen Kraft <benjaminjkraft@gmail.com>2015-09-11 23:06:25 -0700
committerTim Graham <timograham@gmail.com>2015-10-03 13:00:37 -0400
commit35355a4ffedb2aeed52d5fe3034380ffc6a438db (patch)
treefe5e0987ef7e5cedca3a8aa36496b544f8bf868b /docs/releases/1.8.5.txt
parentc055224763e11b29cce0a7c10751354c40dac63e (diff)
Fixed #25389 -- Fixed pickling a SimpleLazyObject wrapping a model.
Pickling a `SimpleLazyObject` wrapping a model did not work correctly; in particular it did not add the `_django_version` attribute added in 42736ac8. Now it will handle this and other custom `__reduce__` methods correctly.
Diffstat (limited to 'docs/releases/1.8.5.txt')
-rw-r--r--docs/releases/1.8.5.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/releases/1.8.5.txt b/docs/releases/1.8.5.txt
index b951ff98d8..93a5ec2ec0 100644
--- a/docs/releases/1.8.5.txt
+++ b/docs/releases/1.8.5.txt
@@ -56,3 +56,5 @@ Bugfixes
* Fixed incorrect queries with multiple many-to-many fields on a model with the
same 'to' model and with ``related_name`` set to '+' (:ticket:`24505`,
:ticket:`25486`).
+
+* Fixed pickling a ``SimpleLazyObject`` wrapping a model (:ticket:`25389`).