summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-01-25 20:28:34 -0800
committerTim Graham <timograham@gmail.com>2018-01-26 10:22:14 -0500
commit61c74ae74f6e23e5c6468c1bc2adb348c60cc289 (patch)
tree0de99b9989c39e2a54c6520fdc8cf806c104cfb5 /docs
parentd06381debcd175962f8c6395555f21c5f54a36fc (diff)
[2.0.x] Fixed #29067 -- Fixed regression in QuerySet.values_list(..., flat=True) followed by annotate().
Regression in 4dfd6b88d520b43b6363946e5ee58ba14cd1efe6. Backport of 3187c89d6f8c60ca7e78093d5b37e0709e71cea9 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.0.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.0.2.txt b/docs/releases/2.0.2.txt
index 92026be5f8..4a06ccb792 100644
--- a/docs/releases/2.0.2.txt
+++ b/docs/releases/2.0.2.txt
@@ -14,3 +14,6 @@ Bugfixes
* Fixed incorrect foreign key nullification if a model has two foreign keys to
the same model and a target model is deleted (:ticket:`29016`).
+
+* Fixed regression in the use of ``QuerySet.values_list(..., flat=True)``
+ followed by ``annotate()`` (:ticket:`29067`).