April 3, 2024
Django 5.0.4 fixes several bugs in 5.0.3.
Model.full_clean()
on
fields with expressions in db_default
. As a consequence,
Model.full_clean()
no longer validates for empty values in fields with
db_default
(#35223).AdminFileWidget
could be
rendered with two id
attributes on the “Clear” checkbox
(#35273).UniqueConstraint
with nulls_distinct
(#35329).GeneratedField
of the aliased table (#35344).GeneratedField
relying on the __contains
or __icontains
lookups or using a Value
containing a "%"
(#35336).Jun 25, 2024