2020-10-01 05:52:45 +00:00
|
|
|
==========================
|
|
|
|
Django 3.1.3 release notes
|
|
|
|
==========================
|
|
|
|
|
|
|
|
*Expected November 2, 2020*
|
|
|
|
|
2020-10-13 06:35:01 +00:00
|
|
|
Django 3.1.3 fixes several bugs in 3.1.2 and adds compatibility with Python
|
|
|
|
3.9.
|
2020-10-01 05:52:45 +00:00
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2020-10-05 08:10:40 +00:00
|
|
|
* Fixed a regression in Django 3.1.2 that caused the incorrect height of the
|
|
|
|
admin changelist search bar (:ticket:`32072`).
|
2020-10-08 13:51:14 +00:00
|
|
|
|
2020-10-08 19:44:34 +00:00
|
|
|
* Fixed a regression in Django 3.1.2 that caused the incorrect width of the
|
|
|
|
admin changelist search bar on a filtered page (:ticket:`32091`).
|
|
|
|
|
2020-10-08 13:51:14 +00:00
|
|
|
* Fixed displaying Unicode characters in
|
|
|
|
:class:`forms.JSONField <django.forms.JSONField>` and read-only
|
|
|
|
:class:`models.JSONField <django.db.models.JSONField>` values in the admin
|
|
|
|
(:ticket:`32080`).
|
2020-10-12 11:02:12 +00:00
|
|
|
|
|
|
|
* Fixed a regression in Django 3.1 that caused a crash of
|
2020-10-15 05:11:11 +00:00
|
|
|
:class:`~django.contrib.postgres.aggregates.ArrayAgg` and
|
2020-10-12 11:02:12 +00:00
|
|
|
:class:`~django.contrib.postgres.aggregates.StringAgg` with ``ordering``
|
|
|
|
on key transforms for :class:`~django.db.models.JSONField` (:ticket:`32096`).
|
2020-10-13 09:35:55 +00:00
|
|
|
|
|
|
|
* Fixed a regression in Django 3.1 that caused a crash of ``__in`` lookup when
|
|
|
|
using key transforms for :class:`~django.db.models.JSONField` in the lookup
|
|
|
|
value (:ticket:`32096`).
|
2020-10-14 09:09:49 +00:00
|
|
|
|
|
|
|
* Fixed a regression in Django 3.1 that caused a crash of
|
|
|
|
:class:`~django.db.models.ExpressionWrapper` with key transforms for
|
|
|
|
:class:`~django.db.models.JSONField` (:ticket:`32096`).
|
2020-10-14 11:09:24 +00:00
|
|
|
|
|
|
|
* Fixed a regression in Django 3.1 that caused a migrations crash on PostgreSQL
|
|
|
|
when adding an
|
|
|
|
:class:`~django.contrib.postgres.constraints.ExclusionConstraint` with key
|
|
|
|
transforms for :class:`~django.db.models.JSONField` in ``expressions``
|
|
|
|
(:ticket:`32096`).
|
2020-10-18 21:01:56 +00:00
|
|
|
|
|
|
|
* Fixed a regression in Django 3.1 where
|
|
|
|
:exc:`ProtectedError.protected_objects <django.db.models.ProtectedError>` and
|
|
|
|
:exc:`RestrictedError.restricted_objects <django.db.models.RestrictedError>`
|
|
|
|
attributes returned iterators instead of :py:class:`set` of objects
|
|
|
|
(:ticket:`32107`).
|
2020-10-20 07:52:04 +00:00
|
|
|
|
|
|
|
* Fixed a regression in Django 3.1.2 that caused incorrect form input layout on
|
|
|
|
small screens in the admin change form view (:ticket:`32069`).
|