October 1, 2020
Django 3.1.2 fixes several bugs in 3.1.1.
FileField
instances with a callable
storage were not correctly deconstructed (#31941).QuerySet.ordered
attribute returned incorrectly True
for GROUP BY
queries (e.g.
.annotate().values()
) on models with Meta.ordering
. A model’s
Meta.ordering
doesn’t affect such queries (#31990).Q
object annotation (#32007).MIGRATE
test database
setting (#32012).django.contrib.admin.EmptyFieldListFilter
crash when using on a
GenericRelation
(#32038).Jul 27, 2022