summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorShafiya Adzhani <adz.arsym@gmail.com>2024-02-19 23:12:21 +0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2024-02-29 10:01:18 +0100
commita738281265bba5d00711ab62d4d37923764a27eb (patch)
treeac07d0c5532025cc4a5c65835b82c7da4de7c447 /docs
parent3cb1ba50ccde5b33d6bc5b7cc1ea22c8af3c2aa3 (diff)
Fixed #35198 -- Fixed facet filters crash on querysets with no primary key.
Thanks Simon Alef for the report. Regression in 868e2fcddae6720d5713924a785339d1665f1bb9.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/5.0.3.txt b/docs/releases/5.0.3.txt
index b6e32b4590..9db83d0135 100644
--- a/docs/releases/5.0.3.txt
+++ b/docs/releases/5.0.3.txt
@@ -29,3 +29,6 @@ Bugfixes
* Fixed a regression in Django 5.0 that caused a crash when reloading a test
database and a base queryset for a base manager used ``prefetch_related()``
(:ticket:`35238`).
+
+* Fixed a bug in Django 5.0 where facet filters in the admin would crash on a
+ ``SimpleListFilter`` using a queryset without primary keys (:ticket:`35198`).