summaryrefslogtreecommitdiff
path: root/docs/releases/2.1.1.txt
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:17:26 -0400
commitb5c7cb4d3306a7b4e8f87bcf365ff30ae53018ed (patch)
tree2c58f65b31b02ebb5d3d3402404e3ba7d6202600 /docs/releases/2.1.1.txt
parent64e1a271f50d921a54388539b6ff7102a31c3d29 (diff)
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.
Diffstat (limited to 'docs/releases/2.1.1.txt')
-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`).