summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarti Raudsepp <marti@voicecom.ee>2015-11-05 19:02:18 +0200
committerTim Graham <timograham@gmail.com>2015-11-09 12:44:34 -0500
commit8db5122d6937bfcaf9a5894ba8f329d2a4424ca5 (patch)
tree058ab8897ee68f1ce8b87fb17645299ded4fee9f /docs
parent6858bf758ccf1cd6ce46f3fc0b547f52cd7339db (diff)
[1.9.x] Fixed #25683 -- Allowed ModelChoiceField(queryset=...) to accept Managers.
This fixes a regression from refs #25496. Backport of 1155843a41af589a856efe8e671a796866430049 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.7.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.7.txt b/docs/releases/1.8.7.txt
index f3cfc8e046..9e8f37f120 100644
--- a/docs/releases/1.8.7.txt
+++ b/docs/releases/1.8.7.txt
@@ -14,3 +14,7 @@ Bugfixes
* Fixed a regression in 1.8.6 that caused database routers without an
``allow_migrate()`` method to crash (:ticket:`25686`).
+
+* Fixed a regression in 1.8.6 by restoring the ability to use ``Manager``
+ objects for the ``queryset`` argument of ``ModelChoiceField``
+ (:ticket:`25683`).