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:37:26 +0100
commit80761c3b01fbbbe2da1761937edd20251a86fbee (patch)
tree7a4e0d7bb41e635079188b414cf13cf75b2c6671 /docs
parent24de8113a829bc137610cee35faf18483a337b86 (diff)
[5.0.x] Fixed #35198 -- Fixed facet filters crash on querysets with no primary key.
Thanks Simon Alef for the report. Regression in 868e2fcddae6720d5713924a785339d1665f1bb9. Backport of a738281265bba5d00711ab62d4d37923764a27eb from main
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`).