2019-09-05 20:46:01 +08:00
|
|
|
============================================
|
|
|
|
Django 3.1 release notes - UNDER DEVELOPMENT
|
|
|
|
============================================
|
|
|
|
|
|
|
|
*Expected August 2020*
|
|
|
|
|
|
|
|
Welcome to Django 3.1!
|
|
|
|
|
|
|
|
These release notes cover the :ref:`new features <whats-new-3.1>`, as well as
|
|
|
|
some :ref:`backwards incompatible changes <backwards-incompatible-3.1>` you'll
|
|
|
|
want to be aware of when upgrading from Django 3.0 or earlier. We've
|
|
|
|
:ref:`dropped some features<removed-features-3.1>` that have reached the end of
|
|
|
|
their deprecation cycle, and we've :ref:`begun the deprecation process for
|
|
|
|
some features <deprecated-features-3.1>`.
|
|
|
|
|
|
|
|
See the :doc:`/howto/upgrade-version` guide if you're updating an existing
|
|
|
|
project.
|
|
|
|
|
|
|
|
Python compatibility
|
|
|
|
====================
|
|
|
|
|
|
|
|
Django 3.1 supports Python 3.6, 3.7, and 3.8. We **highly recommend** and only
|
|
|
|
officially support the latest release of each series.
|
|
|
|
|
|
|
|
.. _whats-new-3.1:
|
|
|
|
|
|
|
|
What's new in Django 3.1
|
|
|
|
========================
|
|
|
|
|
|
|
|
Minor features
|
|
|
|
--------------
|
|
|
|
|
|
|
|
:mod:`django.contrib.admin`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.admindocs`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.auth`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2019-09-12 17:46:37 +08:00
|
|
|
* The default iteration count for the PBKDF2 password hasher is increased from
|
|
|
|
180,000 to 216,000.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-08-23 23:14:07 +08:00
|
|
|
* Added the :setting:`PASSWORD_RESET_TIMEOUT` setting to define the minimum
|
|
|
|
number of seconds a password reset link is valid for. This is encouraged
|
|
|
|
instead of deprecated ``PASSWORD_RESET_TIMEOUT_DAYS``, which will be removed
|
|
|
|
in Django 4.0.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
:mod:`django.contrib.contenttypes`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.gis`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2019-10-17 20:02:37 +08:00
|
|
|
* :lookup:`relate` lookup is now supported on MariaDB.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-10-17 16:17:42 +08:00
|
|
|
* Added the :attr:`.LinearRing.is_counterclockwise` property.
|
|
|
|
|
2019-11-16 23:22:01 +08:00
|
|
|
* :class:`~django.contrib.gis.db.models.functions.AsGeoJSON` is now supported
|
|
|
|
on Oracle.
|
|
|
|
|
2019-11-16 02:37:43 +08:00
|
|
|
* Added the :class:`~django.contrib.gis.db.models.functions.AsWKB` and
|
|
|
|
:class:`~django.contrib.gis.db.models.functions.AsWKT` functions.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
:mod:`django.contrib.messages`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.postgres`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2019-10-18 17:08:50 +08:00
|
|
|
* The new :class:`~django.contrib.postgres.indexes.BloomIndex` class allows
|
|
|
|
creating ``bloom`` indexes in the database. The new
|
|
|
|
:class:`~django.contrib.postgres.operations.BloomExtension` migration
|
|
|
|
operation installs the ``bloom`` extension to add support for this index.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-11-07 22:35:33 +08:00
|
|
|
* :meth:`~django.db.models.Model.get_FOO_display` now supports
|
|
|
|
:class:`~django.contrib.postgres.fields.ArrayField` and
|
|
|
|
:class:`~django.contrib.postgres.fields.RangeField`.
|
|
|
|
|
2019-11-06 18:22:15 +08:00
|
|
|
* The new :lookup:`rangefield.lower_inc`, :lookup:`rangefield.lower_inf`,
|
|
|
|
:lookup:`rangefield.upper_inc`, and :lookup:`rangefield.upper_inf` allows
|
|
|
|
querying :class:`~django.contrib.postgres.fields.RangeField` by a bound type.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
:mod:`django.contrib.redirects`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.sessions`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.sitemaps`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.sites`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.staticfiles`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2019-11-07 17:26:22 +08:00
|
|
|
* The :setting:`STATICFILES_DIRS` setting now supports :class:`pathlib.Path`.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
|
|
|
:mod:`django.contrib.syndication`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Cache
|
|
|
|
~~~~~
|
|
|
|
|
2019-09-27 04:58:14 +08:00
|
|
|
* The :func:`~django.views.decorators.cache.cache_control` decorator and
|
|
|
|
:func:`~django.utils.cache.patch_cache_control` method now support multiple
|
|
|
|
field names in the ``no-cache`` directive for the ``Cache-Control`` header,
|
|
|
|
according to :rfc:`7234#section-5.2.2.2`.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-10-08 17:02:40 +08:00
|
|
|
* :meth:`~django.core.caches.cache.delete` now returns ``True`` if the key was
|
|
|
|
successfully deleted, ``False`` otherwise.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
CSRF
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Email
|
|
|
|
~~~~~
|
|
|
|
|
2019-11-06 16:33:07 +08:00
|
|
|
* The :setting:`EMAIL_FILE_PATH` setting, used by the :ref:`file email backend
|
|
|
|
<topic-email-file-backend>`, now supports :class:`pathlib.Path`.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
|
|
|
File Storage
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
2019-10-22 00:03:48 +08:00
|
|
|
* ``FileSystemStorage.save()`` method now supports :class:`pathlib.Path`.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
|
|
|
File Uploads
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
|
|
Forms
|
|
|
|
~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Generic Views
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Internationalization
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Logging
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Management Commands
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Migrations
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
2019-03-29 04:47:05 +08:00
|
|
|
* Migrations are now loaded also from directories without ``__init__.py``
|
|
|
|
files.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
|
|
|
Models
|
|
|
|
~~~~~~
|
|
|
|
|
2019-10-01 06:12:19 +08:00
|
|
|
* The new :class:`~django.db.models.functions.ExtractIsoWeekDay` function
|
|
|
|
extracts ISO-8601 week days from :class:`~django.db.models.DateField` and
|
|
|
|
:class:`~django.db.models.DateTimeField`, and the new :lookup:`iso_week_day`
|
|
|
|
lookup allows querying by an ISO-8601 day of week.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-10-22 00:34:19 +08:00
|
|
|
* :meth:`.QuerySet.explain` now supports:
|
|
|
|
|
|
|
|
* ``TREE`` format on MySQL 8.0.16+,
|
|
|
|
* ``analyze`` option on MySQL 8.0.18+ and MariaDB.
|
2019-10-22 00:32:56 +08:00
|
|
|
|
2019-10-16 20:32:12 +08:00
|
|
|
* Added :class:`~django.db.models.PositiveBigIntegerField` which acts much like
|
|
|
|
a :class:`~django.db.models.PositiveIntegerField` except that it only allows
|
|
|
|
values under a certain (database-dependent) limit. Values from ``0`` to
|
|
|
|
``9223372036854775807`` are safe in all databases supported by Django.
|
|
|
|
|
2016-10-10 15:23:35 +08:00
|
|
|
* The new :class:`~django.db.models.RESTRICT` option for
|
|
|
|
:attr:`~django.db.models.ForeignKey.on_delete` argument of ``ForeignKey`` and
|
|
|
|
``OneToOneField`` emulates the behavior of the SQL constraint ``ON DELETE
|
|
|
|
RESTRICT``.
|
|
|
|
|
2019-11-15 13:08:36 +08:00
|
|
|
* :attr:`.CheckConstraint.check` now supports boolean expressions.
|
|
|
|
|
2019-11-30 00:54:03 +08:00
|
|
|
* The :meth:`.RelatedManager.add`, :meth:`~.RelatedManager.create`, and
|
|
|
|
:meth:`~.RelatedManager.set` methods now accept callables as values in the
|
|
|
|
``through_defaults`` argument.
|
|
|
|
|
2019-09-21 05:04:34 +08:00
|
|
|
Pagination
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
2019-10-03 16:14:06 +08:00
|
|
|
* :class:`~django.core.paginator.Paginator` can now be iterated over to yield
|
|
|
|
its pages.
|
2019-09-21 05:04:34 +08:00
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
Requests and Responses
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2019-11-24 10:17:31 +08:00
|
|
|
* If :setting:`ALLOWED_HOSTS` is empty and ``DEBUG=True``, subdomains of
|
|
|
|
localhost are now allowed in the ``Host`` header, e.g. ``static.localhost``.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
|
|
|
Serialization
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Signals
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Templates
|
|
|
|
~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Tests
|
|
|
|
~~~~~
|
|
|
|
|
2016-10-27 05:10:17 +08:00
|
|
|
* :class:`~django.test.SimpleTestCase` now implements the ``debug()`` method to
|
|
|
|
allow running a test without collecting the result and catching exceptions.
|
|
|
|
This can be used to support running tests under a debugger.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-11-13 11:49:09 +08:00
|
|
|
* The new :setting:`MIGRATE <TEST_MIGRATE>` test database setting allows
|
|
|
|
disabling of migrations during a test database creation.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
URLs
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
2019-10-30 04:15:18 +08:00
|
|
|
Utilities
|
|
|
|
~~~~~~~~~
|
|
|
|
|
|
|
|
* :func:`~django.utils.encoding.filepath_to_uri` now supports
|
|
|
|
:class:`pathlib.Path`.
|
|
|
|
|
2019-11-27 15:14:00 +08:00
|
|
|
* :func:`~django.utils.dateparse.parse_duration` now supports comma separators
|
|
|
|
for decimal fractions in the ISO 8601 format.
|
|
|
|
|
2019-09-26 04:17:22 +08:00
|
|
|
* :func:`~django.utils.dateparse.parse_datetime`,
|
|
|
|
:func:`~django.utils.dateparse.parse_duration`, and
|
|
|
|
:func:`~django.utils.dateparse.parse_time` now support comma separators for
|
|
|
|
milliseconds.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
Validators
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
2019-11-07 17:26:22 +08:00
|
|
|
Miscellaneous
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* The SQLite backend now supports :class:`pathlib.Path` for the ``NAME``
|
|
|
|
setting.
|
|
|
|
|
2019-11-07 18:11:27 +08:00
|
|
|
* The ``settings.py`` generated by the :djadmin:`startproject` command now uses
|
|
|
|
:class:`pathlib.Path` instead of :mod:`os.path` for building filesystem
|
|
|
|
paths.
|
|
|
|
|
2019-07-20 21:38:43 +08:00
|
|
|
* The :setting:`TIME_ZONE <DATABASE-TIME_ZONE>` setting is now allowed on
|
|
|
|
databases that support time zones.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
.. _backwards-incompatible-3.1:
|
|
|
|
|
|
|
|
Backwards incompatible changes in 3.1
|
|
|
|
=====================================
|
|
|
|
|
|
|
|
Database backend API
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
This section describes changes that may be needed in third-party database
|
|
|
|
backends.
|
|
|
|
|
2019-09-15 05:50:14 +08:00
|
|
|
* ``DatabaseOperations.fetch_returned_insert_columns()`` now requires an
|
|
|
|
additional ``returning_params`` argument.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-07-21 00:31:47 +08:00
|
|
|
* ``connection.timezone`` property is now ``'UTC'`` by default, or the
|
|
|
|
:setting:`TIME_ZONE <DATABASE-TIME_ZONE>` when :setting:`USE_TZ` is ``True``
|
|
|
|
on databases that support time zones. Previously, it was ``None`` on
|
|
|
|
databases that support time zones.
|
|
|
|
|
2019-10-16 18:58:05 +08:00
|
|
|
Dropped support for MariaDB 10.1
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
Upstream support for MariaDB 10.1 ends in October 2020. Django 3.1 supports
|
|
|
|
MariaDB 10.2 and higher.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
Miscellaneous
|
|
|
|
-------------
|
|
|
|
|
2019-09-12 05:12:35 +08:00
|
|
|
* The cache keys used by :ttag:`cache` and generated by
|
|
|
|
:func:`~django.core.cache.utils.make_template_fragment_key` are different
|
|
|
|
from the keys generated by older versions of Django. After upgrading to
|
|
|
|
Django 3.1, the first request to any previously cached template fragment will
|
|
|
|
be a cache miss.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-07-18 14:13:01 +08:00
|
|
|
* The compatibility imports of ``django.core.exceptions.EmptyResultSet`` in
|
|
|
|
``django.db.models.query``, ``django.db.models.sql``, and
|
|
|
|
``django.db.models.sql.datastructures`` are removed.
|
|
|
|
|
|
|
|
* The compatibility import of ``django.core.exceptions.FieldDoesNotExist`` in
|
|
|
|
``django.db.models.fields`` is removed.
|
|
|
|
|
|
|
|
* The compatibility imports of ``django.forms.utils.pretty_name()`` and
|
|
|
|
``django.forms.boundfield.BoundField`` in ``django.forms.forms`` are removed.
|
|
|
|
|
|
|
|
* The compatibility imports of ``Context``, ``ContextPopException``, and
|
|
|
|
``RequestContext`` in ``django.template.base`` are removed.
|
|
|
|
|
2019-11-06 19:41:07 +08:00
|
|
|
* The compatibility import of
|
|
|
|
``django.contrib.admin.helpers.ACTION_CHECKBOX_NAME`` in
|
|
|
|
``django.contrib.admin`` is removed.
|
|
|
|
|
2018-12-06 08:15:33 +08:00
|
|
|
* The :setting:`STATIC_URL` and :setting:`MEDIA_URL` settings set to relative
|
|
|
|
paths are now prefixed by the server-provided value of ``SCRIPT_NAME`` (or
|
|
|
|
``/`` if not set). This change should not affect settings set to valid URLs
|
|
|
|
or absolute paths.
|
|
|
|
|
2019-10-09 17:20:17 +08:00
|
|
|
* :class:`~django.middleware.http.ConditionalGetMiddleware` no longer adds the
|
|
|
|
``ETag`` header to responses with an empty
|
|
|
|
:attr:`~django.http.HttpResponse.content`.
|
|
|
|
|
2019-10-19 03:00:34 +08:00
|
|
|
* ``django.utils.decorators.classproperty()`` decorator is moved to
|
|
|
|
``django.utils.functional.classproperty()``.
|
|
|
|
|
2019-10-31 10:05:26 +08:00
|
|
|
* :tfilter:`floatformat` template filter now outputs (positive) ``0`` for
|
|
|
|
negative numbers which round to zero.
|
|
|
|
|
2019-04-24 18:44:13 +08:00
|
|
|
* :attr:`Meta.ordering <django.db.models.Options.ordering>` and
|
|
|
|
:attr:`Meta.unique_together <django.db.models.Options.unique_together>`
|
|
|
|
options on models in ``django.contrib`` modules that were formerly tuples are
|
|
|
|
now lists.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
.. _deprecated-features-3.1:
|
|
|
|
|
|
|
|
Features deprecated in 3.1
|
|
|
|
==========================
|
|
|
|
|
|
|
|
Miscellaneous
|
|
|
|
-------------
|
|
|
|
|
2019-08-23 23:14:07 +08:00
|
|
|
* ``PASSWORD_RESET_TIMEOUT_DAYS`` setting is deprecated in favor of
|
|
|
|
:setting:`PASSWORD_RESET_TIMEOUT`.
|
2019-09-05 20:46:01 +08:00
|
|
|
|
2019-10-12 02:10:31 +08:00
|
|
|
* The undocumented usage of the :lookup:`isnull` lookup with non-boolean values
|
|
|
|
as the right-hand side is deprecated, use ``True`` or ``False`` instead.
|
|
|
|
|
2019-11-16 05:20:07 +08:00
|
|
|
* The barely documented ``django.db.models.query_utils.InvalidQuery`` exception
|
|
|
|
class is deprecated in favor of
|
|
|
|
:class:`~django.core.exceptions.FieldDoesNotExist` and
|
|
|
|
:class:`~django.core.exceptions.FieldError`.
|
|
|
|
|
2019-09-05 20:46:01 +08:00
|
|
|
.. _removed-features-3.1:
|
|
|
|
|
|
|
|
Features removed in 3.1
|
|
|
|
=======================
|
|
|
|
|
|
|
|
These features have reached the end of their deprecation cycle and are removed
|
|
|
|
in Django 3.1.
|
|
|
|
|
|
|
|
See :ref:`deprecated-features-2.2` for details on these changes, including how
|
|
|
|
to remove usage of these features.
|
|
|
|
|
2019-09-06 13:59:06 +08:00
|
|
|
* ``django.utils.timezone.FixedOffset`` is removed.
|
|
|
|
|
2019-09-06 14:07:20 +08:00
|
|
|
* ``django.core.paginator.QuerySetPaginator`` is removed.
|
|
|
|
|
2019-09-08 01:28:19 +08:00
|
|
|
* A model's ``Meta.ordering`` doesn't affect ``GROUP BY`` queries.
|
|
|
|
|
2019-09-05 22:10:21 +08:00
|
|
|
* ``django.contrib.postgres.fields.FloatRangeField`` and
|
|
|
|
``django.contrib.postgres.forms.FloatRangeField`` are removed.
|
2019-09-05 22:25:30 +08:00
|
|
|
|
|
|
|
* The ``FILE_CHARSET`` setting is removed.
|
2019-09-06 19:40:59 +08:00
|
|
|
|
|
|
|
* ``django.contrib.staticfiles.storage.CachedStaticFilesStorage`` is removed.
|
2019-09-07 17:57:46 +08:00
|
|
|
|
2019-09-07 21:58:49 +08:00
|
|
|
* The ``RemoteUserBackend.configure_user()`` method requires ``request`` as the
|
|
|
|
first positional argument.
|
|
|
|
|
2019-09-07 17:57:46 +08:00
|
|
|
* Support for ``SimpleTestCase.allow_database_queries`` and
|
|
|
|
``TransactionTestCase.multi_db`` is removed.
|