summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2018-03-30 11:55:33 +0200
committerTim Graham <timograham@gmail.com>2018-04-02 09:27:01 -0400
commitb25433a225d85c6dace5d5e97f4553c01f035fb1 (patch)
tree89e0a9f36c5db1c0a40a6b37cf57a304708c7d34 /docs
parenta73a9cf60a4ae4cbf0183a23bf815fd5be3a40ea (diff)
[1.11.x] Fixed #29273 -- Prevented initial selection of empty choice in multiple choice widgets.
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. Backport of f3b69f9757ec03057441ebbd52b7cdbfed31fb32 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.12.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.12.txt b/docs/releases/1.11.12.txt
index 64130c065e..186c18be58 100644
--- a/docs/releases/1.11.12.txt
+++ b/docs/releases/1.11.12.txt
@@ -12,3 +12,7 @@ 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`).
+
+* Fixed a regression in Django 1.11 where an empty choice could be initially
+ selected for the ``SelectMultiple`` and ``CheckboxSelectMultiple`` widgets
+ (:ticket:`29273`)