summaryrefslogtreecommitdiff
path: root/docs
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-13 06:16:19 +0200
commitb245845575154905701a71d34a4d0c4d21f2f6b3 (patch)
tree1e3eeea399a3fce4ed4247008b95dbc341932e52 /docs
parent98db3c76fcdac76e2c6d770aaac5c711a91209f4 (diff)
[3.2.x] Fixed #32627 -- Fixed QuerySet.values()/values_list() crash on combined querysets ordered by unannotated columns.
Backport of 9760e262f85ae57df39abe2799eff48a82b14474 from main
Diffstat (limited to 'docs')
-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`).