summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndriy Sokolovskiy <me@asokolovskiy.com>2015-05-29 14:45:36 +0300
committerTim Graham <timograham@gmail.com>2015-06-02 09:54:53 -0400
commit2913d6b77d8b2082dc79df5503b7dd3ddd05fcc1 (patch)
treed398a8d601c48e8b1891fb8542f9a6b5999f596e /docs
parente1e6399c2ce39a3656155c4d704340eac83926a7 (diff)
Fixed #24831 -- Fixed pickling queryset with prefetch_related() after deleting objects.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.3.txt b/docs/releases/1.8.3.txt
index c2a4f6af3d..78e6766872 100644
--- a/docs/releases/1.8.3.txt
+++ b/docs/releases/1.8.3.txt
@@ -37,3 +37,6 @@ Bugfixes
* Fixed lack of unique constraint when changing a field from
``primary_key=True`` to ``unique=True`` (:ticket:`24893`).
+
+* Fixed queryset pickling when using ``prefetch_related()`` after deleting
+ objects (:ticket:`24831`).