summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAmr Anwar <amranwar945@gmail.com>2018-03-19 09:58:50 -0400
committerTim Graham <timograham@gmail.com>2018-03-19 21:06:40 -0400
commitc5bb472095f02df364f9a0ce64f0b97bfd4a8c63 (patch)
tree6194618c94e702c9e244a046a02a62fa73a9dbe9 /docs
parentcd4275f8d70a9bab43c4b9f5a2c8007b86765373 (diff)
[1.11.x] Fixed #29229 -- Fixed column mismatch crash when combining two annotated values_list() querysets with union(), difference(), or intersection().
Regression in 7316720603821ebb64dfe8fa592ba6edcef5f3e. Backport of a0c03c62a8ac586e5be5b21393c925afa581efaf from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.12.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/1.11.12.txt b/docs/releases/1.11.12.txt
index aa0035a3c3..64130c065e 100644
--- a/docs/releases/1.11.12.txt
+++ b/docs/releases/1.11.12.txt
@@ -9,4 +9,6 @@ Django 1.11.12 fixes a bug in 1.11.11.
Bugfixes
========
-* ...
+* Fixed a regression in Django 1.11.8 where combining two annotated
+ ``values_list()`` querysets with ``union()``, ``difference()``, or
+ ``intersection()`` crashed due to mismatching columns (:ticket:`29229`).