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:27:20 +0200
commit7f8d839722b72aeb3ec5a4278ae57c18283acacd (patch)
tree688596406caa8fa66da115a31e0150fb118ffa9e /docs
parent90adba85b29230acfe354bffd82bc0d3a4d63c9d (diff)
Fixed #35628 -- Allowed compatible GeneratedFields for ModelAdmin.date_hierarchy.
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`).