summaryrefslogtreecommitdiff
path: root/docs/releases/2.0.3.txt
diff options
context:
space:
mode:
authorSimon Charette <charettes@users.noreply.github.com>2018-02-08 09:59:25 -0500
committerTim Graham <timograham@gmail.com>2018-02-08 09:59:25 -0500
commitd61fe246015aa4fdc6dcb837ffb1442fa71ae586 (patch)
tree1e9a51bc460cde84f6bd8975569fe40cf94ec830 /docs/releases/2.0.3.txt
parent01bfa9219b921267a8b94ed77e5984f9ce15497a (diff)
Fixed #29108 -- Fixed crash in aggregation of distinct+ordered+sliced querysets.
Regression in 4acae21846f6212aa992763e587c7e201828d7b0. Thanks Stephen Brooks for the report.
Diffstat (limited to 'docs/releases/2.0.3.txt')
-rw-r--r--docs/releases/2.0.3.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/releases/2.0.3.txt b/docs/releases/2.0.3.txt
index 50b39653ea..4fbca2e247 100644
--- a/docs/releases/2.0.3.txt
+++ b/docs/releases/2.0.3.txt
@@ -9,4 +9,5 @@ Django 2.0.3 fixes several bugs in 2.0.2.
Bugfixes
========
-* ...
+* Fixed a regression that caused sliced ``QuerySet.distinct().order_by()``
+ followed by ``count()`` to crash (:ticket:`29108`).