summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJohn Parton <john.parton.iv@gmail.com>2024-07-24 13:53:06 -0500
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-08-05 15:28:40 +0200
commit88ebcb1856deef5ab777601a735c9954ac723325 (patch)
treed3ee3c3eb9e337ec9961363bd39b92e980bf831a /docs
parent06fb6434b3b5750c678292bbf52944508c40566c (diff)
[5.1.x] Fixed #35628 -- Allowed compatible GeneratedFields for ModelAdmin.date_hierarchy.
Backport of 7f8d839722b72aeb3ec5a4278ae57c18283acacd from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.8.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.0.8.txt b/docs/releases/5.0.8.txt
index df3bc9ae2a..31de9985c4 100644
--- a/docs/releases/5.0.8.txt
+++ b/docs/releases/5.0.8.txt
@@ -24,3 +24,7 @@ Bugfixes
* Fixed a regression in Django 5.0.7 that caused a crash in
``LocaleMiddleware`` when processing a language code over 500 characters
(:ticket:`35627`).
+
+* Fixed a bug in Django 5.0 that caused a system check crash when
+ ``ModelAdmin.date_hierarchy`` was a ``GeneratedField`` with an
+ ``output_field`` of ``DateField`` or ``DateTimeField`` (:ticket:`35628`).