1
0
mirror of https://github.com/django/django.git synced 2025-03-26 17:20:49 +00:00
django/docs/releases/3.0.3.txt
Mariusz Felisiak 0f843fdd5b
Fixed #31136 -- Disabled grouping by aliases on QuerySet.values()/values_list().
Regression in fb3f034f1c63160c0ff13c609acd01c18be12f80.

Thanks Sigurd Ljødal for the report.
2020-01-04 20:49:11 +01:00

19 lines
536 B
Plaintext

==========================
Django 3.0.3 release notes
==========================
*Expected February 3, 2020*
Django 3.0.3 fixes several bugs in 3.0.2.
Bugfixes
========
* Fixed a regression in Django 3.0 that caused a crash when subtracting
``DateField``, ``DateTimeField``, or ``TimeField`` from a ``Subquery()``
annotation (:ticket:`31133`).
* Fixed a regression in Django 3.0 where ``QuerySet.values()`` and
``values_list()`` crashed if a queryset contained an aggregation and
``Exists()`` annotation (:ticket:`31136`).