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:47:08 -0500
commit3144785ebf9fdc19639ef3d35267283f5c2f321a (patch)
tree7939b9faf0d1b46e110a28d9016bdba3122cbd99 /docs
parenta42c5376e764712d8ff4a1f9dd3c2d5537722288 (diff)
[1.8.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`).