2016-05-20 10:28:24 +08:00
|
|
|
|
=============================================
|
|
|
|
|
Django 1.11 release notes - UNDER DEVELOPMENT
|
|
|
|
|
=============================================
|
|
|
|
|
|
|
|
|
|
Welcome to Django 1.11!
|
|
|
|
|
|
2016-06-02 23:41:49 +08:00
|
|
|
|
These release notes cover the :ref:`new features <whats-new-1.11>`, as well as
|
|
|
|
|
some :ref:`backwards incompatible changes <backwards-incompatible-1.11>` you'll
|
|
|
|
|
want to be aware of when upgrading from Django 1.10 or older versions. We've
|
|
|
|
|
:ref:`begun the deprecation process for some features
|
|
|
|
|
<deprecated-features-1.11>`.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-06-06 18:46:20 +08:00
|
|
|
|
See the :doc:`/howto/upgrade-version` guide if you're updating an existing
|
|
|
|
|
project.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
Django 1.11 is designated as a :term:`long-term support release`. It will
|
|
|
|
|
receive security updates for at least three years after its release. Support
|
2016-08-09 22:24:35 +08:00
|
|
|
|
for the previous LTS, Django 1.8, will end in April 2018.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
Python compatibility
|
|
|
|
|
====================
|
|
|
|
|
|
|
|
|
|
Like Django 1.10, Django 1.11 requires Python 2.7, 3.4, or 3.5. We **highly
|
|
|
|
|
recommend** and only officially support the latest release of each series.
|
|
|
|
|
|
|
|
|
|
The Django 1.11.x series is the last to support Python 2. The next major
|
|
|
|
|
release, Django 2.0, will only support Python 3.5+.
|
|
|
|
|
|
2016-06-02 03:17:25 +08:00
|
|
|
|
Deprecating warnings are no longer loud by default
|
|
|
|
|
==================================================
|
|
|
|
|
|
|
|
|
|
Unlike older versions of Django, Django's own deprecation warnings are no
|
|
|
|
|
longer displayed by default. This is consistent with Python's default behavior.
|
|
|
|
|
|
|
|
|
|
This change allows third-party apps to support both Django 1.11 LTS and Django
|
|
|
|
|
1.8 LTS without having to add code to avoid deprecation warnings.
|
|
|
|
|
|
|
|
|
|
Following the release of Django 2.0, we suggest that third-party app authors
|
|
|
|
|
drop support for all versions of Django prior to 1.11. At that time, you should
|
|
|
|
|
be able run your package's tests using ``python -Wd`` so that deprecation
|
|
|
|
|
warnings do appear. After making the deprecation warning fixes, your app should
|
|
|
|
|
be compatible with Django 2.0.
|
|
|
|
|
|
2016-06-02 23:41:49 +08:00
|
|
|
|
.. _whats-new-1.11:
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
What's new in Django 1.11
|
|
|
|
|
=========================
|
|
|
|
|
|
|
|
|
|
Minor features
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.admin`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-05-06 01:52:54 +08:00
|
|
|
|
* :attr:`.ModelAdmin.date_hierarchy` can now reference fields across relations.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.admindocs`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.auth`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-05-20 21:18:55 +08:00
|
|
|
|
* The default iteration count for the PBKDF2 password hasher is increased by
|
|
|
|
|
20%.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-05-15 23:28:00 +08:00
|
|
|
|
* The :class:`~django.contrib.auth.views.LoginView` and
|
|
|
|
|
:class:`~django.contrib.auth.views.LogoutView` class-based views supersede the
|
|
|
|
|
deprecated ``login()`` and ``logout()`` function-based views.
|
|
|
|
|
|
2013-04-10 05:31:58 +08:00
|
|
|
|
* The :class:`~django.contrib.auth.views.PasswordChangeView`,
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordChangeDoneView`,
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetView`,
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetDoneView`,
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetConfirmView`, and
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetCompleteView` class-based
|
|
|
|
|
views supersede the deprecated ``password_change()``,
|
|
|
|
|
``password_change_done()``, ``password_reset()``, ``password_reset_done()``,
|
|
|
|
|
``password_reset_confirm()``, and ``password_reset_complete()`` function-based
|
|
|
|
|
views.
|
|
|
|
|
|
2016-07-28 06:33:07 +08:00
|
|
|
|
* The new ``post_reset_login`` attribute for
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetConfirmView` allows
|
|
|
|
|
automatically logging in a user after a successful password reset.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
:mod:`django.contrib.contenttypes`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-07-15 23:07:43 +08:00
|
|
|
|
* When stale content types are detected after the ``migrate`` command, there's
|
|
|
|
|
now a list of related objects such as ``auth.Permission``\s that will also be
|
|
|
|
|
deleted. Previously, only the content types were listed.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.gis`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-06-10 14:50:07 +08:00
|
|
|
|
* The new :meth:`.GEOSGeometry.from_gml` and :meth:`.OGRGeometry.from_gml`
|
|
|
|
|
methods allow creating geometries from GML.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.messages`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.postgres`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-05-15 17:53:16 +08:00
|
|
|
|
* The new ``distinct`` argument for
|
|
|
|
|
:class:`~django.contrib.postgres.aggregates.StringAgg` determines if
|
|
|
|
|
concatenated values will be distinct.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.redirects`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.sessions`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.sitemaps`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.sites`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.staticfiles`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
:mod:`django.contrib.syndication`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
Cache
|
|
|
|
|
~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
CSRF
|
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
Database backends
|
|
|
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-06-23 23:52:14 +08:00
|
|
|
|
* Added the ``skip_locked`` argument to :meth:`.QuerySet.select_for_update()`
|
|
|
|
|
on PostgreSQL 9.5+ and Oracle to execute queries with
|
|
|
|
|
``FOR UPDATE SKIP LOCKED``.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
Email
|
|
|
|
|
~~~~~
|
|
|
|
|
|
2016-06-03 07:41:13 +08:00
|
|
|
|
* Added the :setting:`EMAIL_USE_LOCALTIME` setting to allow sending SMTP date
|
|
|
|
|
headers in the local time zone rather than in UTC.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-08-03 21:53:06 +08:00
|
|
|
|
* ``EmailMessage.attach()`` and ``attach_file()`` now fall back to MIME type
|
|
|
|
|
``application/octet-stream`` when binary content that can't be decoded as
|
|
|
|
|
UTF-8 is specified for a ``text/*`` attachment.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
File Storage
|
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
2016-05-23 00:43:56 +08:00
|
|
|
|
* To make it wrappable by :class:`io.TextIOWrapper`,
|
|
|
|
|
:class:`~django.core.files.File` now has the ``readable()``, ``writable()``,
|
|
|
|
|
and ``seekable()`` methods.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
File Uploads
|
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
Forms
|
|
|
|
|
~~~~~
|
|
|
|
|
|
2016-05-18 22:30:42 +08:00
|
|
|
|
* The new :attr:`CharField.empty_value <django.forms.CharField.empty_value>`
|
|
|
|
|
attribute allows specifying the Python value to use to represent "empty".
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
Generic Views
|
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
Internationalization
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-06-03 03:13:47 +08:00
|
|
|
|
* Number formatting and the :setting:`NUMBER_GROUPING` setting support
|
|
|
|
|
non-uniform digit grouping.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
Management Commands
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-05-17 14:52:01 +08:00
|
|
|
|
* The new :option:`loaddata --exclude` option allows excluding models and apps
|
|
|
|
|
while loading data from fixtures.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
|
|
|
|
Migrations
|
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
Models
|
|
|
|
|
~~~~~~
|
|
|
|
|
|
2016-05-26 04:33:35 +08:00
|
|
|
|
* Added support for callable values in the ``defaults`` argument of
|
|
|
|
|
:meth:`QuerySet.update_or_create()
|
|
|
|
|
<django.db.models.query.QuerySet.update_or_create>` and
|
|
|
|
|
:meth:`~django.db.models.query.QuerySet.get_or_create`.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-03-27 04:09:08 +08:00
|
|
|
|
* :class:`~django.db.models.ImageField` now has a default
|
|
|
|
|
:data:`~django.core.validators.validate_image_file_extension` validator.
|
|
|
|
|
|
2016-06-19 11:38:24 +08:00
|
|
|
|
* Added support for time truncation to
|
|
|
|
|
:class:`~django.db.models.functions.datetime.Trunc` functions.
|
|
|
|
|
|
2016-06-19 11:39:26 +08:00
|
|
|
|
* Added the :class:`~django.db.models.functions.datetime.TruncTime` function
|
|
|
|
|
to truncate :class:`~django.db.models.DateTimeField` to its time component
|
|
|
|
|
and exposed it through the :lookup:`time` lookup.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
Requests and Responses
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-06-04 06:50:38 +08:00
|
|
|
|
* Added :meth:`QueryDict.fromkeys() <django.http.QueryDict.fromkeys>`.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-06-18 16:51:38 +08:00
|
|
|
|
* :class:`~django.middleware.common.CommonMiddleware` now sets the
|
|
|
|
|
``Content-Length`` response header for non-streaming responses.
|
|
|
|
|
|
2016-07-29 00:48:07 +08:00
|
|
|
|
* Added the :setting:`SECURE_HSTS_PRELOAD` setting to allow appending the
|
|
|
|
|
``preload`` directive to the ``Strict-Transport-Security`` header.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
Serialization
|
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
2016-06-08 09:22:30 +08:00
|
|
|
|
* The new ``django.core.serializers.base.Serializer.stream_class`` attribute
|
|
|
|
|
allows subclasses to customize the default stream.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-06-28 19:48:19 +08:00
|
|
|
|
* The encoder used by the :ref:`JSON serializer <serialization-formats-json>`
|
|
|
|
|
can now be customized by passing a ``cls`` keyword argument to the
|
|
|
|
|
``serializers.serialize()`` function.
|
|
|
|
|
|
2016-05-26 20:48:36 +08:00
|
|
|
|
* :class:`~django.core.serializers.json.DjangoJSONEncoder` now serializes
|
|
|
|
|
:class:`~datetime.timedelta` objects (used by
|
|
|
|
|
:class:`~django.db.models.DurationField`).
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
Signals
|
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
Templates
|
|
|
|
|
~~~~~~~~~
|
|
|
|
|
|
2016-06-03 05:11:43 +08:00
|
|
|
|
* :meth:`~django.utils.safestring.mark_safe` can now be used as a decorator.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-06-27 21:56:21 +08:00
|
|
|
|
* The :class:`~django.template.backends.jinja2.Jinja2` template backend now
|
|
|
|
|
supports context processors by setting the ``'context_processors'`` option in
|
|
|
|
|
:setting:`OPTIONS <TEMPLATES-OPTIONS>`.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
Tests
|
|
|
|
|
~~~~~
|
|
|
|
|
|
2016-08-05 01:26:21 +08:00
|
|
|
|
* Added :meth:`.DiscoverRunner.get_test_runner_kwargs` to allow customizing the
|
|
|
|
|
keyword arguments passed to the test runner.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-08-11 01:46:54 +08:00
|
|
|
|
* Added the :option:`test --debug-mode` option to help troubleshoot test
|
|
|
|
|
test failures by setting the :setting:`DEBUG` setting to ``True``.
|
2016-08-09 16:40:40 +08:00
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
URLs
|
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
|
|
Validators
|
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
|
2016-03-27 04:09:08 +08:00
|
|
|
|
* Added :class:`~django.core.validators.FileExtensionValidator` to validate
|
|
|
|
|
file extensions and
|
|
|
|
|
:data:`~django.core.validators.validate_image_file_extension` to validate
|
|
|
|
|
image files.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-06-02 23:41:49 +08:00
|
|
|
|
.. _backwards-incompatible-1.11:
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
Backwards incompatible changes in 1.11
|
|
|
|
|
======================================
|
|
|
|
|
|
2016-06-14 22:18:33 +08:00
|
|
|
|
:mod:`django.contrib.gis`
|
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
|
|
* To simplify the codebase and because it's easier to install than when
|
|
|
|
|
``contrib.gis`` was first released, :ref:`gdalbuild` is now a required
|
|
|
|
|
dependency for GeoDjango. In older versions, it's only required for SQLite.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
Database backend API
|
|
|
|
|
--------------------
|
|
|
|
|
|
2016-06-19 11:38:24 +08:00
|
|
|
|
* The ``DatabaseOperations.time_trunc_sql()`` method is added to support
|
|
|
|
|
``TimeField`` truncation. It accepts a ``lookup_type`` and ``field_name``
|
|
|
|
|
arguments and returns the appropriate SQL to truncate the given time field
|
|
|
|
|
``field_name`` to a time object with only the given specificity. The
|
|
|
|
|
``lookup_type`` argument can be either ``'hour'``, ``'minute'``, or
|
|
|
|
|
``'second'``.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-06-19 11:39:26 +08:00
|
|
|
|
* The ``DatabaseOperations.datetime_cast_time_sql()`` method is added to
|
|
|
|
|
support the :lookup:`time` lookup. It accepts a ``field_name`` and ``tzname``
|
|
|
|
|
arguments and returns the SQL necessary to cast a datetime value to time value.
|
|
|
|
|
|
2016-06-23 23:52:14 +08:00
|
|
|
|
* To enable ``FOR UPDATE SKIP LOCKED`` support, set
|
|
|
|
|
``DatabaseFeatures.has_select_for_update_skip_locked = True``.
|
|
|
|
|
|
2016-07-26 09:04:28 +08:00
|
|
|
|
* The new ``DatabaseFeatures.supports_index_column_ordering`` attribute
|
|
|
|
|
specifies if a database allows defining ordering for columns in indexes. The
|
|
|
|
|
default value is ``True`` and the ``DatabaseIntrospection.get_constraints()``
|
|
|
|
|
method should include an ``'orders'`` key in each of the returned
|
|
|
|
|
dictionaries with a list of ``'ASC'`` and/or ``'DESC'`` values corresponding
|
|
|
|
|
to the the ordering of each column in the index.
|
|
|
|
|
|
2016-05-29 08:11:42 +08:00
|
|
|
|
Dropped support for PostgreSQL 9.2 and PostGIS 2.0
|
2016-06-22 23:16:18 +08:00
|
|
|
|
--------------------------------------------------
|
2016-05-29 08:11:42 +08:00
|
|
|
|
|
|
|
|
|
Upstream support for PostgreSQL 9.2 ends in September 2017. As a consequence,
|
|
|
|
|
Django 1.11 sets PostgreSQL 9.3 as the minimum version it officially supports.
|
|
|
|
|
|
|
|
|
|
Support for PostGIS 2.0 is also removed as PostgreSQL 9.2 is the last version
|
|
|
|
|
to support it.
|
|
|
|
|
|
2016-06-24 00:04:05 +08:00
|
|
|
|
``LiveServerTestCase`` binds to port zero
|
|
|
|
|
-----------------------------------------
|
|
|
|
|
|
|
|
|
|
Rather than taking a port range and iterating to find a free port,
|
|
|
|
|
``LiveServerTestCase`` binds to port zero and relies on the operating system
|
|
|
|
|
to assign a free port. The ``DJANGO_LIVE_TEST_SERVER_ADDRESS`` environment
|
|
|
|
|
variable is no longer used, and as it's also no longer used, the
|
|
|
|
|
``manage.py test --liveserver`` option is removed.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
Miscellaneous
|
|
|
|
|
-------------
|
|
|
|
|
|
2016-05-25 00:50:20 +08:00
|
|
|
|
* If no items in the feed have a ``pubdate`` or ``updateddate`` attribute,
|
|
|
|
|
:meth:`SyndicationFeed.latest_post_date()
|
|
|
|
|
<django.utils.feedgenerator.SyndicationFeed.latest_post_date>` now returns
|
|
|
|
|
the current UTC date/time, instead of a datetime without any timezone
|
|
|
|
|
information.
|
2016-05-20 10:28:24 +08:00
|
|
|
|
|
2016-05-31 23:31:51 +08:00
|
|
|
|
* Support for SpatiaLite < 4.0 is dropped.
|
|
|
|
|
|
2016-06-23 00:10:42 +08:00
|
|
|
|
* CSRF failures are logged to the ``django.security.csrf`` logger instead of
|
2016-06-03 08:24:48 +08:00
|
|
|
|
``django.request``.
|
|
|
|
|
|
2016-06-04 06:02:38 +08:00
|
|
|
|
* :setting:`ALLOWED_HOSTS` validation is no longer disabled when running tests.
|
|
|
|
|
If your application includes tests with custom host names, you must include
|
|
|
|
|
those host names in :setting:`ALLOWED_HOSTS`. See
|
|
|
|
|
:ref:`topics-testing-advanced-multiple-hosts`.
|
|
|
|
|
|
2016-04-24 01:35:18 +08:00
|
|
|
|
* Using a foreign key's id (e.g. ``'field_id'``) in ``ModelAdmin.list_display``
|
2016-06-10 03:05:59 +08:00
|
|
|
|
displays the related object's ID. Remove the ``_id`` suffix if you want the
|
|
|
|
|
old behavior of the string representation of the object.
|
2016-04-24 01:35:18 +08:00
|
|
|
|
|
2016-05-18 22:30:42 +08:00
|
|
|
|
* In model forms, :class:`~django.db.models.CharField` with ``null=True`` now
|
|
|
|
|
saves ``NULL`` for blank values instead of empty strings.
|
|
|
|
|
|
|
|
|
|
* On Oracle, :meth:`Model.validate_unique()
|
|
|
|
|
<django.db.models.Model.validate_unique>` no longer checks empty strings for
|
|
|
|
|
uniqueness as the database interprets the value as ``NULL``.
|
|
|
|
|
|
2016-06-16 18:06:59 +08:00
|
|
|
|
* If you subclass :class:`.AbstractUser` and override ``clean()``, be sure it
|
|
|
|
|
calls ``super()``. :meth:`.BaseUserManager.normalize_email` is called in a
|
|
|
|
|
new :meth:`.AbstractUser.clean` method so that normalization is applied in
|
|
|
|
|
cases like model form validation.
|
|
|
|
|
|
2016-07-03 22:41:59 +08:00
|
|
|
|
* ``EmailField`` and ``URLField`` no longer accept the ``strip`` keyword
|
|
|
|
|
argument. Remove it because it doesn't have an effect in older versions of
|
|
|
|
|
Django as these fields alway strip whitespace.
|
|
|
|
|
|
2016-07-22 13:05:17 +08:00
|
|
|
|
* The ``checked`` attribute rendered by form widgets now uses HTML5 boolean
|
|
|
|
|
syntax rather than XHTML's ``checked='checked'``.
|
|
|
|
|
|
2016-06-05 20:15:00 +08:00
|
|
|
|
* :meth:`RelatedManager.add()
|
|
|
|
|
<django.db.models.fields.related.RelatedManager.add>`,
|
|
|
|
|
:meth:`~django.db.models.fields.related.RelatedManager.remove`,
|
|
|
|
|
:meth:`~django.db.models.fields.related.RelatedManager.clear`, and
|
|
|
|
|
:meth:`~django.db.models.fields.related.RelatedManager.set` now
|
|
|
|
|
clear the ``prefetch_related()`` cache.
|
|
|
|
|
|
2016-08-08 17:38:10 +08:00
|
|
|
|
* To prevent possible loss of saved settings,
|
|
|
|
|
:func:`~django.test.utils.setup_test_environment` now raises an exception if
|
|
|
|
|
called a second time before calling
|
|
|
|
|
:func:`~django.test.utils.teardown_test_environment`.
|
|
|
|
|
|
2016-08-08 02:05:07 +08:00
|
|
|
|
* The :djadmin:`makemessages` command now requires configured settings, like
|
|
|
|
|
most other commands.
|
|
|
|
|
|
2016-05-20 10:28:24 +08:00
|
|
|
|
.. _deprecated-features-1.11:
|
|
|
|
|
|
|
|
|
|
Features deprecated in 1.11
|
|
|
|
|
===========================
|
|
|
|
|
|
|
|
|
|
Miscellaneous
|
|
|
|
|
-------------
|
|
|
|
|
|
2016-05-15 23:28:00 +08:00
|
|
|
|
* ``contrib.auth``’s ``login()`` and ``logout()`` function-based views are
|
|
|
|
|
deprecated in favor of new class-based views
|
|
|
|
|
:class:`~django.contrib.auth.views.LoginView` and
|
|
|
|
|
:class:`~django.contrib.auth.views.LogoutView`.
|
2013-04-10 05:31:58 +08:00
|
|
|
|
|
2016-07-22 22:43:54 +08:00
|
|
|
|
* The unused ``extra_context`` parameter of
|
|
|
|
|
``contrib.auth.views.logout_then_login()`` is deprecated.
|
|
|
|
|
|
2013-04-10 05:31:58 +08:00
|
|
|
|
* ``contrib.auth``’s ``password_change()``, ``password_change_done()``,
|
|
|
|
|
``password_reset()``, ``password_reset_done()``, ``password_reset_confirm()``,
|
|
|
|
|
and ``password_reset_complete()`` function-based views are deprecated in favor
|
|
|
|
|
of new class-based views
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordChangeView`,
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordChangeDoneView`,
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetView`,
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetDoneView`,
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetConfirmView`, and
|
|
|
|
|
:class:`~django.contrib.auth.views.PasswordResetCompleteView`.
|