summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndriy Sokolovskiy <me@asokolovskiy.com>2015-05-09 13:57:13 +0300
committerTim Graham <timograham@gmail.com>2015-10-13 04:17:50 -0700
commiteb85e6672aeb00c67a3666785965edeceed976af (patch)
treeebcf5ce3b942a69ce535b152a6fdcab9e521da99 /docs
parent15359f1fe9b032311fbb0e9bb2d1bb7c86ea855c (diff)
[1.8.x] Fixed #24156 -- Fixed inherited related name of ManyToManyField.
Fixed situation when parent abstract model declares related_name='+' and child models had an invalid queryset. Backport of f7b297815819153b53dc1125d3f42869fb1b7ebc from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.6.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.6.txt b/docs/releases/1.8.6.txt
index b972ee0148..acc8a8a93b 100644
--- a/docs/releases/1.8.6.txt
+++ b/docs/releases/1.8.6.txt
@@ -17,3 +17,7 @@ Bugfixes
* Fixed system check crash on ``ForeignKey`` to abstract model
(:ticket:`25503`).
+
+* Fixed incorrect queries when you have multiple ``ManyToManyField``\s on
+ different models that have the same field name, point to the same model, and
+ have their reverse relations disabled (:ticket:`25545`).