summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2017-06-13 08:16:16 +0200
committerGitHub <noreply@github.com>2017-06-13 08:16:16 +0200
commit82175ead723f8fa3f9271fbd4b24275097029aab (patch)
tree25bd89dba8e2c53929b03fd6d6475da614be093f /docs
parent9dc83c356d363c090f3351c908cad6f823aeb7bf (diff)
Fixed #28293 -- Fixed union(), intersection(), and difference() when combining with an EmptyQuerySet.
Thanks Jon Dufresne for the report and Tim Graham for the review.
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`).