summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-08-02 17:27:45 +0200
committerClaude Paroz <claude@2xlibre.net>2016-08-04 16:05:21 +0200
commit272eccf7ff0ced609e5a5e3bb6b4a40e773e0e66 (patch)
tree59689e5a6fd7e68401097ecbfb3f214f7c2ad315 /docs
parent7bc5274f6faf9e5296688d4708de0272a758e3f0 (diff)
Fixed #26983 -- Fixed isnull filtering on ForeignKey with to_field
Thanks weidwonder for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.10.1.txt b/docs/releases/1.10.1.txt
index d5bfcac2bd..8f0756bb9e 100644
--- a/docs/releases/1.10.1.txt
+++ b/docs/releases/1.10.1.txt
@@ -26,3 +26,6 @@ Bugfixes
* Fixed a crash if ``request.META['CONTENT_LENGTH']`` is an empty string
(:ticket:`27005`).
+
+* Fixed the ``isnull`` lookup on a ``ForeignKey`` with its ``to_field``
+ pointing to a ``CharField`` (:ticket:`26983`).