mirror of
https://github.com/django/django.git
synced 2025-01-01 05:56:09 +00:00
eaf9764d3b
Thanks Gordon Wrigley for the report.
Regression in 8a6df55f2d
.
22 lines
739 B
Plaintext
22 lines
739 B
Plaintext
==========================
|
|
Django 3.1.2 release notes
|
|
==========================
|
|
|
|
*Expected October 1, 2020*
|
|
|
|
Django 3.1.2 fixes several bugs in 3.1.1.
|
|
|
|
Bugfixes
|
|
========
|
|
|
|
* Fixed a bug in Django 3.1 where ``FileField`` instances with a callable
|
|
storage were not correctly deconstructed (:ticket:`31941`).
|
|
|
|
* 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`).
|
|
|
|
* Fixed a regression in Django 3.1 where a queryset would crash if it contained
|
|
an aggregation and a ``Q`` object annotation (:ticket:`32007`).
|