summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJason Parrott <jason.parrott@gree.net>2016-03-17 22:45:00 +0900
committerTim Graham <timograham@gmail.com>2016-03-19 17:54:29 -0400
commit4c1c93032f4a015cbb4b33958603d18ac43515b4 (patch)
tree3a265506b60a8b2538ca084fbaeb205fc7d657cf /docs
parent8b5a4fa941ba6e308b5ebd831b7953440fc0ee9b (diff)
Fixed #26373 -- Fixed reverse lookup crash with a ForeignKey to_field in a subquery.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.9.5.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.9.5.txt b/docs/releases/1.9.5.txt
index 98dd1799a8..37157b3e56 100644
--- a/docs/releases/1.9.5.txt
+++ b/docs/releases/1.9.5.txt
@@ -30,3 +30,7 @@ Bugfixes
* Fixed a regression that caused ``collectstatic --clear`` to fail if the
storage doesn't implement ``path()`` (:ticket:`26297`).
+
+* Fixed a crash when using a reverse lookup with a subquery when a
+ ``ForeignKey`` has a ``to_field`` set to something other than the primary key
+ (:ticket:`26373`).