summaryrefslogtreecommitdiff
path: root/docs/releases/1.8.8.txt
diff options
context:
space:
mode:
authorvarunnaganathan <varunnaganathan912@gmail.com>2015-12-24 21:12:49 +0530
committerTim Graham <timograham@gmail.com>2016-01-02 08:19:41 -0500
commit5770c2382a4ebeebaaf3c2736e3934a191265a18 (patch)
treee1df2715ca70155a7fbad2d66ecf77b7b57056da /docs/releases/1.8.8.txt
parent2f4be218e1e6605ecbb84365d761c206c241e221 (diff)
[1.9.x] Fixed #25316 -- Fixed a crash with order_by() and values() after annotate().
Backport of 3eba9638ee69138c73efb1d1c1d1b806ddafc6cf from master
Diffstat (limited to 'docs/releases/1.8.8.txt')
-rw-r--r--docs/releases/1.8.8.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.8.txt b/docs/releases/1.8.8.txt
index a888925841..2a8dc5792d 100644
--- a/docs/releases/1.8.8.txt
+++ b/docs/releases/1.8.8.txt
@@ -54,3 +54,7 @@ Bugfixes
* Made ``loaddata`` skip disabling and enabling database constraints when it
doesn't load any fixtures (:ticket:`23372`).
+
+* Fixed a crash in ``QuerySet.values()/values_list()`` after an ``annotate()``
+ and ``order_by()`` when ``values()/values_list()`` includes a field not in
+ the ``order_by()`` (:ticket:`25316`).