summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2018-08-08 22:25:18 -0300
committerTim Graham <timograham@gmail.com>2018-08-10 12:43:27 -0400
commitf72a7d8f441a8e5d9705a0a7c8e9c8830aa10950 (patch)
tree1eddc01f2c7c38f3fe366efc4e8255e97a95a70e /docs
parentd7615674d98a067ed06bdf1924dc76223262938a (diff)
[2.1.x] Fixed #29653 -- Fixed missing related_query_name reverse accessor if GenericRelation is declared on an abstract base model.
Regression in 4ab027b94409e6415b774797bf9d3593da9d9ea8. Thanks Lauri Kainulainen for the report. Backport of b5c7cb4d3306a7b4e8f87bcf365ff30ae53018ed from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.1.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/2.1.1.txt b/docs/releases/2.1.1.txt
index a6ed58a7bb..ca424f40df 100644
--- a/docs/releases/2.1.1.txt
+++ b/docs/releases/2.1.1.txt
@@ -28,3 +28,7 @@ Bugfixes
* Fixed a regression where the admin change form crashed if the user doesn't
have the 'add' permission to a model that uses ``TabularInline``
(:ticket:`29637`).
+
+* Fixed a regression where a ``related_query_name`` reverse accessor wasn't set
+ up when a ``GenericRelation`` is declared on an abstract base model
+ (:ticket:`29653`).