summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-12-27 20:36:22 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-12-27 20:37:23 +0100
commit9a182f3d959d16354e24f34713df602f1bef6556 (patch)
tree86352be1fed09f17043600a2cea57eb384637f6e /docs
parent9aad44150fa7632b894c8b1d1cb9c6dde131b577 (diff)
[5.0.x] Fixed #35056 -- Fixed system check crash on reverse m2m relations with related_name in ModelAdmin.filter_horizontal/vertical.
Thanks Thomas Feldmann for the report. Regression in 107865780aa44914e21d27fdf4ca269bc61c7f01. Backport of 751d732a3815a68bdb5b7aceda0e7d5981362c4a from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.0.1.txt b/docs/releases/5.0.1.txt
index 15b735b42e..4344b0d181 100644
--- a/docs/releases/5.0.1.txt
+++ b/docs/releases/5.0.1.txt
@@ -32,3 +32,7 @@ Bugfixes
* Fixed a regression in Django 5.0 where querysets referenced incorrect field
names from ``FilteredRelation()`` (:ticket:`35050`).
+
+* Fixed a regression in Django 5.0 that caused a system check crash when
+ ``ModelAdmin.filter_horizontal`` or ``filter_vertical`` contained a reverse
+ many-to-many relation with ``related_name`` (:ticket:`35056`).