mirror of
https://github.com/django/django.git
synced 2025-01-26 10:09:42 +00:00
7991111af1
Thanks Tilman Koschnick for the report and initial patch. Thanks Carlton Gibson the review. Regression in 6b048b364ca1e0e56a0d3815bf2be33ac9998355.
21 lines
693 B
Plaintext
21 lines
693 B
Plaintext
==========================
|
|
Django 2.2.4 release notes
|
|
==========================
|
|
|
|
*Expected August 1, 2019*
|
|
|
|
Django 2.2.4 fixes several bugs in 2.2.3.
|
|
|
|
Bugfixes
|
|
========
|
|
|
|
* Fixed a regression in Django 2.2 when ordering a ``QuerySet.union()``,
|
|
``intersection()``, or ``difference()`` by a field type present more than
|
|
once results in the wrong ordering being used (:ticket:`30628`).
|
|
|
|
* Fixed a migration crash on PostgreSQL when adding a check constraint
|
|
with a ``contains`` lookup on
|
|
:class:`~django.contrib.postgres.fields.DateRangeField` or
|
|
:class:`~django.contrib.postgres.fields.DateTimeRangeField`, if the right
|
|
hand side of an expression is the same type (:ticket:`30621`).
|