summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2017-06-13 08:16:16 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2017-06-13 08:33:26 +0200
commit44e29ea1e906859e85bb2a46ae5ea9d82bd96f5f (patch)
treebc22ec611fad767850afc27d4dc8c6f7874d891e /docs
parent927d9b51fee2442280ae975b21b98b5a705c4b17 (diff)
[1.11.x] Fixed #28293 -- Fixed union(), intersection(), and difference() when combining with an EmptyQuerySet.
Thanks Jon Dufresne for the report and Tim Graham for the review. Backport of 82175ead723f8fa3f9271fbd4b24275097029aab from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.3.txt b/docs/releases/1.11.3.txt
index e742f3e770..33645d05b3 100644
--- a/docs/releases/1.11.3.txt
+++ b/docs/releases/1.11.3.txt
@@ -29,3 +29,6 @@ Bugfixes
* Fixed crash in admin's inlines when a model has an inherited non-editable
primary key (:ticket:`27967`).
+
+* Fixed ``QuerySet.union()``, ``intersection()``, and ``difference()`` when
+ combining with an ``EmptyQuerySet`` (:ticket:`28293`).