2020-09-01 16:45:06 +08:00
|
|
|
==========================
|
|
|
|
Django 3.1.2 release notes
|
|
|
|
==========================
|
|
|
|
|
2020-09-02 10:11:41 +08:00
|
|
|
*Expected October 1, 2020*
|
2020-09-01 16:45:06 +08:00
|
|
|
|
|
|
|
Django 3.1.2 fixes several bugs in 3.1.1.
|
2020-09-02 10:11:41 +08:00
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2020-08-25 03:27:22 +08:00
|
|
|
* Fixed a bug in Django 3.1 where ``FileField`` instances with a callable
|
|
|
|
storage were not correctly deconstructed (:ticket:`31941`).
|
2020-09-15 02:07:44 +08:00
|
|
|
|
|
|
|
* Fixed a regression in Django 3.1 where the :attr:`.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 (:ticket:`31990`).
|
2020-09-15 17:40:59 +08:00
|
|
|
|
|
|
|
* Fixed a regression in Django 3.1 where a queryset would crash if it contained
|
|
|
|
an aggregation and a ``Q`` object annotation (:ticket:`32007`).
|