summaryrefslogtreecommitdiff
path: root/docs/releases/3.2.1.txt
diff options
context:
space:
mode:
authorIuri de Silvio <iurisilvio@gmail.com>2021-04-08 16:31:45 -0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-12 21:11:40 +0200
commit9760e262f85ae57df39abe2799eff48a82b14474 (patch)
treef460abf7708b37a6bfc91357dea702138beeea26 /docs/releases/3.2.1.txt
parent823a9e6bac38d38f7b0347497b833eec732bd384 (diff)
Fixed #32627 -- Fixed QuerySet.values()/values_list() crash on combined querysets ordered by unannotated columns.
Diffstat (limited to 'docs/releases/3.2.1.txt')
-rw-r--r--docs/releases/3.2.1.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/3.2.1.txt b/docs/releases/3.2.1.txt
index e8361e7370..2a7dda13ab 100644
--- a/docs/releases/3.2.1.txt
+++ b/docs/releases/3.2.1.txt
@@ -14,3 +14,8 @@ Bugfixes
* Fixed a bug in Django 3.2 where subclasses of ``BigAutoField`` and
``SmallAutoField`` were not allowed for the :setting:`DEFAULT_AUTO_FIELD`
setting (:ticket:`32620`).
+
+* Fixed a regression in Django 3.2 that caused a crash of
+ ``QuerySet.values()/values_list()`` after ``QuerySet.union()``,
+ ``intersection()``, and ``difference()`` when it was ordered by an
+ unannotated field (:ticket:`32627`).