summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2023-12-06 19:03:41 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-12-07 06:16:35 +0100
commitf80669d2f5a5f1db9e9b73ca893fefba34f955e7 (patch)
tree24b070a845073a362377dfa06c8ec4ee9febe2aa /docs
parent00ef74376e382cf33d6a9529bb9fc1b412e0bc7d (diff)
Fixed #35020 -- Fixed ModelAdmin.lookup_allowed() for non-autofield primary keys.
Thanks Joshua Goodwin for the report. Regression in 45ecd9acca9b36093e274f47b6877a5f79108d9e.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.1.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/5.0.1.txt b/docs/releases/5.0.1.txt
index f1b6e0f8bb..871f55ec6d 100644
--- a/docs/releases/5.0.1.txt
+++ b/docs/releases/5.0.1.txt
@@ -9,4 +9,6 @@ Django 5.0.1 fixes several bugs in 5.0.
Bugfixes
========
-* ...
+* Reallowed, following a regression in Django 5.0, using a foreign key to a
+ model with a primary key that is not ``AutoField`` in
+ :attr:`.ModelAdmin.list_filter` (:ticket:`35020`).