2015-01-17 07:00:45 +08:00
|
|
|
============================================
|
|
|
|
Django 1.9 release notes - UNDER DEVELOPMENT
|
|
|
|
============================================
|
|
|
|
|
|
|
|
Welcome to Django 1.9!
|
|
|
|
|
|
|
|
These release notes cover the `new features`_, as well as some `backwards
|
|
|
|
incompatible changes`_ you'll want to be aware of when upgrading from Django
|
|
|
|
1.8 or older versions. We've :ref:`dropped some features
|
|
|
|
<deprecation-removed-in-1.9>` that have reached the end of their deprecation
|
|
|
|
cycle, and we've `begun the deprecation process for some features`_.
|
|
|
|
|
|
|
|
.. _`new features`: `What's new in Django 1.9`_
|
|
|
|
.. _`backwards incompatible changes`: `Backwards incompatible changes in 1.9`_
|
|
|
|
.. _`dropped some features`: `Features removed in 1.9`_
|
|
|
|
.. _`begun the deprecation process for some features`: `Features deprecated in 1.9`_
|
|
|
|
|
|
|
|
Python compatibility
|
|
|
|
====================
|
|
|
|
|
|
|
|
Like Django 1.8, Django 1.9 requires Python 2.7 or above, though we
|
|
|
|
**highly recommend** the latest minor release. We've dropped support for
|
2015-06-15 21:43:35 +08:00
|
|
|
Python 3.2 and 3.3, and added support for Python 3.5.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
|
|
|
What's new in Django 1.9
|
|
|
|
========================
|
|
|
|
|
2015-03-08 22:07:57 +08:00
|
|
|
Password validation
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2015-06-09 01:27:47 +08:00
|
|
|
Django now offers password validation to help prevent the usage of weak
|
2015-03-08 22:07:57 +08:00
|
|
|
passwords by users. The validation is integrated in the included password
|
|
|
|
change and reset forms and is simple to integrate in any other code.
|
|
|
|
Validation is performed by one or more validators, configured in the new
|
|
|
|
:setting:`AUTH_PASSWORD_VALIDATORS` setting.
|
|
|
|
|
|
|
|
Four validators are included in Django, which can enforce a minimum length,
|
|
|
|
compare the password to the user's attributes like their name, ensure
|
2015-06-09 01:27:47 +08:00
|
|
|
passwords aren't entirely numeric, or check against an included list of common
|
2015-03-08 22:07:57 +08:00
|
|
|
passwords. You can combine multiple validators, and some validators have
|
|
|
|
custom configuration options. For example, you can choose to provide a custom
|
2015-06-09 01:27:47 +08:00
|
|
|
list of common passwords. Each validator provides a help text to explain its
|
2015-03-08 22:07:57 +08:00
|
|
|
requirements to the user.
|
|
|
|
|
|
|
|
By default, no validation is performed and all passwords are accepted, so if
|
|
|
|
you don't set :setting:`AUTH_PASSWORD_VALIDATORS`, you will not see any
|
|
|
|
change. In new projects created with the default :djadmin:`startproject`
|
|
|
|
template, a simple set of validators is enabled. To enable basic validation in
|
|
|
|
the included auth forms for your project, you could set, for example::
|
|
|
|
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
See :ref:`password-validation` for more details.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-06-12 00:08:48 +08:00
|
|
|
Permission mixins for class-based views
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Django now ships with the mixins
|
|
|
|
:class:`~django.contrib.auth.mixins.AccessMixin`,
|
|
|
|
:class:`~django.contrib.auth.mixins.LoginRequiredMixin`,
|
|
|
|
:class:`~django.contrib.auth.mixins.PermissionRequiredMixin`, and
|
|
|
|
:class:`~django.contrib.auth.mixins.UserPassesTestMixin` to provide the
|
|
|
|
functionality of the ``django.contrib.auth.decorators`` for class-based views.
|
|
|
|
These mixins have been taken from, or are at least inspired by, the
|
|
|
|
`django-braces`_ project.
|
|
|
|
|
|
|
|
There are a few differences between Django's and django-braces' implementation,
|
|
|
|
though:
|
|
|
|
|
|
|
|
* The :attr:`~django.contrib.auth.mixins.AccessMixin.raise_exception` attribute
|
|
|
|
can only be ``True`` or ``False``. Custom exceptions or callables are not
|
|
|
|
supported.
|
|
|
|
|
|
|
|
* The :meth:`~django.contrib.auth.mixins.AccessMixin.handle_no_permission`
|
|
|
|
method does not take a ``request`` argument. The current request is available
|
|
|
|
in ``self.request``.
|
|
|
|
|
|
|
|
* The custom ``test_func()`` of :class:`~django.contrib.auth.mixins.UserPassesTestMixin`
|
|
|
|
does not take a ``user`` argument. The current user is available in
|
|
|
|
``self.request.user``.
|
|
|
|
|
|
|
|
* The :attr:`permission_required <django.contrib.auth.mixins.PermissionRequiredMixin>`
|
|
|
|
attribute supports a string (defining one permission) or a list/tuple of
|
|
|
|
strings (defining multiple permissions) that need to be fulfilled to grant
|
|
|
|
access.
|
|
|
|
|
|
|
|
* The new :attr:`~django.contrib.auth.mixins.AccessMixin.permission_denied_message`
|
|
|
|
attribute allows passing a message to the ``PermissionDenied`` exception.
|
|
|
|
|
|
|
|
.. _django-braces: http://django-braces.readthedocs.org/en/latest/index.html
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Minor features
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
:mod:`django.contrib.admin`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2014-12-27 15:16:53 +08:00
|
|
|
* Admin views now have ``model_admin`` or ``admin_site`` attributes.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-02-08 00:55:47 +08:00
|
|
|
* The URL of the admin change view has been changed (was at
|
|
|
|
``/admin/<app>/<model>/<pk>/`` by default and is now at
|
|
|
|
``/admin/<app>/<model>/<pk>/change/``). This should not affect your
|
|
|
|
application unless you have hardcoded admin URLs. In that case, replace those
|
|
|
|
links by :ref:`reversing admin URLs <admin-reverse-urls>` instead. Note that
|
|
|
|
the old URL still redirects to the new one for backwards compatibility, but
|
|
|
|
it may be removed in a future version.
|
|
|
|
|
2015-03-16 18:00:16 +08:00
|
|
|
* :meth:`ModelAdmin.get_list_select_related()
|
|
|
|
<django.contrib.admin.ModelAdmin.get_list_select_related>` was added to allow
|
|
|
|
changing the ``select_related()`` values used in the admin's changelist query
|
|
|
|
based on the request.
|
|
|
|
|
2015-03-30 18:54:25 +08:00
|
|
|
* The ``available_apps`` context variable, which lists the available
|
|
|
|
applications for the current user, has been added to the
|
|
|
|
:meth:`AdminSite.each_context() <django.contrib.admin.AdminSite.each_context>`
|
|
|
|
method.
|
2015-06-21 07:47:15 +08:00
|
|
|
|
2015-03-13 18:08:03 +08:00
|
|
|
* :attr:`AdminSite.empty_value_display
|
|
|
|
<django.contrib.admin.AdminSite.empty_value_display>` and
|
|
|
|
:attr:`ModelAdmin.empty_value_display
|
|
|
|
<django.contrib.admin.ModelAdmin.empty_value_display>` were added to override
|
|
|
|
the display of empty values in admin change list. You can also customize the
|
|
|
|
value for each field.
|
2015-03-30 18:54:25 +08:00
|
|
|
|
2015-06-21 07:47:15 +08:00
|
|
|
* The time picker widget includes a '6 p.m' option for consistency of having
|
|
|
|
predefined options every 6 hours.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
:mod:`django.contrib.auth`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-01-17 08:27:10 +08:00
|
|
|
* The default iteration count for the PBKDF2 password hasher has been increased
|
|
|
|
by 20%. This backwards compatible change will not affect users who have
|
|
|
|
subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to change the
|
|
|
|
default value.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-02-27 03:04:24 +08:00
|
|
|
* The ``BCryptSHA256PasswordHasher`` will now update passwords if its
|
|
|
|
``rounds`` attribute is changed.
|
|
|
|
|
2015-04-03 00:52:45 +08:00
|
|
|
* ``AbstractBaseUser`` and ``BaseUserManager`` were moved to a new
|
|
|
|
``django.contrib.auth.base_user`` module so that they can be imported without
|
|
|
|
including ``django.contrib.auth`` in :setting:`INSTALLED_APPS` (this raised
|
|
|
|
a deprecation warning in older versions and is no longer supported in
|
|
|
|
Django 1.9).
|
|
|
|
|
2015-06-05 16:08:19 +08:00
|
|
|
* The permission argument of
|
|
|
|
:func:`~django.contrib.auth.decorators.permission_required()` accepts all
|
|
|
|
kinds of iterables, not only list and tuples.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
:mod:`django.contrib.gis`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-01-31 03:23:23 +08:00
|
|
|
* All ``GeoQuerySet`` methods have been deprecated and replaced by
|
|
|
|
:doc:`equivalent database functions </ref/contrib/gis/functions>`. As soon
|
|
|
|
as the legacy methods have been replaced in your code, you should even be
|
|
|
|
able to remove the special ``GeoManager`` from your GIS-enabled classes.
|
|
|
|
|
2015-03-14 02:49:02 +08:00
|
|
|
* The GDAL interface now supports instantiating file-based and in-memory
|
|
|
|
:ref:`GDALRaster objects <raster-data-source-objects>` from raw data.
|
|
|
|
Setters for raster properties such as projection or pixel values have
|
|
|
|
been added.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-06-19 23:46:03 +08:00
|
|
|
* For PostGIS users, the new :class:`~django.contrib.gis.db.models.RasterField`
|
|
|
|
allows :ref:`storing GDALRaster objects <creating-and-saving-raster-models>`.
|
|
|
|
It supports automatic spatial index creation and reprojection when saving a
|
|
|
|
model. It does not yet support spatial querying.
|
|
|
|
|
2015-06-19 20:56:50 +08:00
|
|
|
* The new :meth:`GDALRaster.warp() <django.contrib.gis.gdal.GDALRaster.warp>`
|
|
|
|
method allows warping a raster by specifying target raster properties such as
|
|
|
|
origin, width, height, or pixel size (amongst others).
|
|
|
|
|
|
|
|
* The new :meth:`GDALRaster.transform()
|
|
|
|
<django.contrib.gis.gdal.GDALRaster.transform>` method allows transforming a
|
|
|
|
raster into a different spatial reference system by specifying a target
|
|
|
|
``srid``.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
:mod:`django.contrib.messages`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
2015-02-08 23:21:48 +08:00
|
|
|
:mod:`django.contrib.postgres`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-05-21 19:25:50 +08:00
|
|
|
* Added support for the :lookup:`rangefield.contained_by` lookup for some built
|
|
|
|
in fields which correspond to the range fields.
|
2015-06-02 01:00:34 +08:00
|
|
|
|
2015-05-31 05:13:58 +08:00
|
|
|
* Added :class:`~django.contrib.postgres.fields.JSONField`.
|
2015-06-02 01:00:34 +08:00
|
|
|
|
2015-02-08 23:21:48 +08:00
|
|
|
* Added :doc:`/ref/contrib/postgres/aggregates`.
|
|
|
|
|
2015-06-06 04:56:00 +08:00
|
|
|
* Fixed serialization of
|
|
|
|
:class:`~django.contrib.postgres.fields.DateRangeField` and
|
|
|
|
:class:`~django.contrib.postgres.fields.DateTimeRangeField`.
|
|
|
|
|
2015-06-02 01:00:34 +08:00
|
|
|
* Added the :class:`~django.contrib.postgres.functions.TransactionNow` database
|
|
|
|
function.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
:mod:`django.contrib.redirects`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.sessions`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.sitemaps`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.sites`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-05-04 06:08:28 +08:00
|
|
|
* :func:`~django.contrib.sites.shortcuts.get_current_site` now handles the case
|
|
|
|
where ``request.get_host()`` returns ``domain:port``, e.g.
|
|
|
|
``example.com:80``. If the lookup fails because the host does not match a
|
|
|
|
record in the database and the host has a port, the port is stripped and the
|
|
|
|
lookup is retried with the domain part only.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
|
|
|
:mod:`django.contrib.staticfiles`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
:mod:`django.contrib.syndication`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Cache
|
|
|
|
^^^^^
|
|
|
|
|
2014-11-24 02:33:07 +08:00
|
|
|
* ``django.core.cache.backends.base.BaseCache`` now has a ``get_or_set()``
|
|
|
|
method.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-04-28 05:56:02 +08:00
|
|
|
* :func:`django.views.decorators.cache.never_cache` now sends more persuasive
|
|
|
|
headers (added ``no-cache, no-store, must-revalidate`` to ``Cache-Control``)
|
|
|
|
to better prevent caching.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Email
|
|
|
|
^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
File Storage
|
|
|
|
^^^^^^^^^^^^
|
|
|
|
|
2015-05-03 12:10:24 +08:00
|
|
|
* :meth:`Storage.get_valid_name()
|
|
|
|
<django.core.files.storage.Storage.get_valid_name>` is now called when
|
|
|
|
the :attr:`~django.db.models.FileField.upload_to` is a callable.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-06-10 22:43:49 +08:00
|
|
|
* :class:`~django.core.files.File` now has the ``seekable()`` method when using
|
|
|
|
Python 3.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
File Uploads
|
|
|
|
^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Forms
|
|
|
|
^^^^^
|
|
|
|
|
2015-02-07 05:19:23 +08:00
|
|
|
* :class:`~django.forms.ModelForm` accepts the new ``Meta`` option
|
|
|
|
``field_classes`` to customize the type of the fields. See
|
|
|
|
:ref:`modelforms-overriding-default-fields` for details.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-03-16 08:33:59 +08:00
|
|
|
* You can now specify the order in which form fields are rendered with the
|
|
|
|
:attr:`~django.forms.Form.field_order` attribute, the ``field_order``
|
|
|
|
constructor argument , or the :meth:`~django.forms.Form.order_fields` method.
|
|
|
|
|
2015-05-25 02:43:20 +08:00
|
|
|
* A form prefix can be specified inside a form class, not only when
|
|
|
|
instantiating a form. See :ref:`form-prefix` for details.
|
|
|
|
|
2015-06-05 18:42:58 +08:00
|
|
|
* You can now :ref:`specify keyword arguments <custom-formset-form-kwargs>`
|
|
|
|
that you want to pass to the constructor of forms in a formset.
|
|
|
|
|
2014-12-27 15:16:53 +08:00
|
|
|
Generic Views
|
|
|
|
^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* Class based views generated using ``as_view()`` now have ``view_class``
|
|
|
|
and ``view_initkwargs`` attributes.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Internationalization
|
|
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-03-12 16:32:29 +08:00
|
|
|
* The :func:`django.views.i18n.set_language` view now properly redirects to
|
|
|
|
:ref:`translated URLs <url-internationalization>`, when available.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2014-02-23 22:10:31 +08:00
|
|
|
* The :func:`django.views.i18n.javascript_catalog` view now works correctly
|
|
|
|
if used multiple times with different configurations on the same page.
|
|
|
|
|
2015-03-31 13:58:37 +08:00
|
|
|
* The :func:`django.utils.timezone.make_aware` function gained an ``is_dst``
|
|
|
|
argument to help resolve ambiguous times during DST transitions.
|
|
|
|
|
2014-12-30 22:41:31 +08:00
|
|
|
* You can now use locale variants supported by gettext. These are usually used
|
|
|
|
for languages which can be written in different scripts, for example Latin
|
|
|
|
and Cyrillic (e.g. ``be@latin``).
|
|
|
|
|
2015-05-31 22:20:19 +08:00
|
|
|
* Added the ``name_translated`` attribute to the object returned by the
|
|
|
|
:ttag:`get_language_info` template tag. Also added a corresponding template
|
|
|
|
filter: :tfilter:`language_name_translated`.
|
|
|
|
|
2015-04-16 19:55:37 +08:00
|
|
|
* You can now run :djadmin:`compilemessages` from the root directory of your
|
|
|
|
project and it will find all the app message files that were created by
|
|
|
|
:djadmin:`makemessages`.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Management Commands
|
|
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-03-07 20:55:59 +08:00
|
|
|
* The new :djadmin:`sendtestemail` command lets you send a test email to
|
|
|
|
easily confirm that email sending through Django is working.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-03-29 22:59:35 +08:00
|
|
|
* To increase the readability of the SQL code generated by
|
|
|
|
:djadmin:`sqlmigrate`, the SQL code generated for each migration operation is
|
|
|
|
preceded by the operation's description.
|
|
|
|
|
2015-04-02 03:42:09 +08:00
|
|
|
* The :djadmin:`dumpdata` command output is now deterministically ordered.
|
|
|
|
|
2015-04-02 05:33:27 +08:00
|
|
|
* The :djadmin:`createcachetable` command now has a ``--dry-run`` flag to
|
|
|
|
print out the SQL rather than execute it.
|
|
|
|
|
2015-06-13 21:41:56 +08:00
|
|
|
* The :djadmin:`startapp` command creates an ``apps.py`` file and adds
|
|
|
|
``default_app_config`` in ``__init__.py``.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Models
|
|
|
|
^^^^^^
|
|
|
|
|
2015-05-03 03:56:53 +08:00
|
|
|
* Database configuration gained a :setting:`TIME_ZONE <DATABASE-TIME_ZONE>`
|
|
|
|
option for interacting with databases that store datetimes in local time and
|
|
|
|
don't support time zones when :setting:`USE_TZ` is ``True``.
|
|
|
|
|
2015-01-30 02:15:27 +08:00
|
|
|
* Added the :meth:`RelatedManager.set()
|
|
|
|
<django.db.models.fields.related.RelatedManager.set()>` method to the related
|
|
|
|
managers created by ``ForeignKey``, ``GenericForeignKey``, and
|
|
|
|
``ManyToManyField``.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-02-07 07:16:26 +08:00
|
|
|
* Added the ``keep_parents`` parameter to :meth:`Model.delete()
|
|
|
|
<django.db.models.Model.delete>` to allow deleting only a child's data in a
|
|
|
|
model that uses multi-table inheritance.
|
|
|
|
|
2015-03-07 16:56:25 +08:00
|
|
|
* :meth:`Model.delete() <django.db.models.Model.delete>`
|
|
|
|
and :meth:`QuerySet.delete() <django.db.models.query.QuerySet.delete>` return
|
|
|
|
the number of objects deleted.
|
|
|
|
|
2015-03-17 22:42:53 +08:00
|
|
|
* Added a system check to prevent defining both ``Meta.ordering`` and
|
|
|
|
``order_with_respect_to`` on the same model.
|
|
|
|
|
2015-03-23 04:30:57 +08:00
|
|
|
* :lookup:`Date and time <year>` lookups can be chained with other lookups
|
|
|
|
(such as :lookup:`exact`, :lookup:`gt`, :lookup:`lt`, etc.). For example:
|
|
|
|
``Entry.objects.filter(pub_date__month__gt=6)``.
|
|
|
|
|
2015-05-23 03:16:26 +08:00
|
|
|
* Time lookups (hour, minute, second) are now supported by
|
|
|
|
:class:`~django.db.models.TimeField` for all database backends. Support for
|
|
|
|
backends other than SQLite was added but undocumented in Django 1.7.
|
|
|
|
|
2015-04-24 08:13:24 +08:00
|
|
|
* You can specify the ``output_field`` parameter of the
|
|
|
|
:class:`~django.db.models.Avg` aggregate in order to aggregate over
|
|
|
|
non-numeric columns, such as ``DurationField``.
|
|
|
|
|
2015-03-08 05:20:29 +08:00
|
|
|
* Added the :lookup:`date` lookup to :class:`~django.db.models.DateTimeField`
|
|
|
|
to allow querying the field by only the date portion.
|
|
|
|
|
2015-05-09 19:55:03 +08:00
|
|
|
* Added the :class:`~django.db.models.functions.Greatest` and
|
|
|
|
:class:`~django.db.models.functions.Least` database functions.
|
|
|
|
|
2015-05-29 22:54:10 +08:00
|
|
|
* Added the :class:`~django.db.models.functions.Now` database function, which
|
|
|
|
returns the current date and time.
|
|
|
|
|
2015-02-22 05:57:02 +08:00
|
|
|
CSRF
|
|
|
|
^^^^
|
|
|
|
|
|
|
|
* The request header's name used for CSRF authentication can be customized
|
|
|
|
with :setting:`CSRF_HEADER_NAME`.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Signals
|
|
|
|
^^^^^^^
|
|
|
|
|
|
|
|
* ...
|
|
|
|
|
|
|
|
Templates
|
|
|
|
^^^^^^^^^
|
|
|
|
|
2015-01-17 07:34:32 +08:00
|
|
|
* Template tags created with the :meth:`~django.template.Library.simple_tag`
|
|
|
|
helper can now store results in a template variable by using the ``as``
|
|
|
|
argument.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-03-12 00:00:17 +08:00
|
|
|
* Added a :meth:`Context.setdefault() <django.template.Context.setdefault>`
|
|
|
|
method.
|
|
|
|
|
2014-04-15 05:18:03 +08:00
|
|
|
* A warning will now be logged for missing context variables. These messages
|
|
|
|
will be logged to the :ref:`django.template <django-template-logger>` logger.
|
|
|
|
|
2015-04-13 23:27:30 +08:00
|
|
|
* The :ttag:`firstof` template tag supports storing the output in a variable
|
|
|
|
using 'as'.
|
|
|
|
|
2015-04-13 22:57:44 +08:00
|
|
|
* :meth:`Context.update() <django.template.Context.update>` can now be used as
|
|
|
|
a context manager.
|
|
|
|
|
2015-03-23 08:22:38 +08:00
|
|
|
* Django template loaders can now extend templates recursively.
|
|
|
|
|
|
|
|
* The debug page template postmortem now include output from each engine that
|
|
|
|
is installed.
|
|
|
|
|
2015-04-25 03:33:03 +08:00
|
|
|
* :ref:`Debug page integration <template-debug-integration>` for custom
|
|
|
|
template engines was added.
|
|
|
|
|
2015-05-09 04:10:36 +08:00
|
|
|
* The :class:`~django.template.backends.django.DjangoTemplates` backend gained
|
|
|
|
the ability to register libraries and builtins explicitly through the
|
|
|
|
template :setting:`OPTIONS <TEMPLATES-OPTIONS>`.
|
|
|
|
|
2015-06-05 06:46:52 +08:00
|
|
|
* The ``timesince`` and ``timeuntil`` filters were improved to deal with leap
|
|
|
|
years when given large time spans.
|
|
|
|
|
2015-06-04 19:50:07 +08:00
|
|
|
* The ``include`` tag now caches parsed templates objects during template
|
|
|
|
rendering, speeding up reuse in places such as for loops.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Requests and Responses
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2015-01-13 06:45:09 +08:00
|
|
|
* Unless :attr:`HttpResponse.reason_phrase
|
|
|
|
<django.http.HttpResponse.reason_phrase>` is explicitly set, it now is
|
|
|
|
determined by the current value of :attr:`HttpResponse.status_code
|
|
|
|
<django.http.HttpResponse.status_code>`. Modifying the value of
|
|
|
|
``status_code`` outside of the constructor will also modify the value of
|
|
|
|
``reason_phrase``.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2014-11-15 23:03:20 +08:00
|
|
|
* The debug view now shows details of chained exceptions on Python 3.
|
|
|
|
|
2015-04-22 03:54:00 +08:00
|
|
|
* The default 40x error views now accept a second positional parameter, the
|
|
|
|
exception that triggered the view.
|
|
|
|
|
2015-06-15 20:55:55 +08:00
|
|
|
* View error handlers now support
|
|
|
|
:class:`~django.template.response.TemplateResponse`, commonly used with
|
|
|
|
class-based views.
|
|
|
|
|
2015-06-20 19:05:35 +08:00
|
|
|
* Request middleware can now set :attr:`HttpRequest.urlconf
|
|
|
|
<django.http.HttpRequest.urlconf>` to ``None`` to revert any changes made
|
|
|
|
by previous middleware and return to using the :setting:`ROOT_URLCONF`.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Tests
|
|
|
|
^^^^^
|
|
|
|
|
2015-05-09 13:33:26 +08:00
|
|
|
* Added the :meth:`json() <django.test.Response.json>` method to test client
|
|
|
|
responses to give access to the response body as JSON.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-03-21 20:19:13 +08:00
|
|
|
URLs
|
|
|
|
^^^^
|
|
|
|
|
|
|
|
* Regular expression lookaround assertions are now allowed in URL patterns.
|
|
|
|
|
2015-05-28 23:25:52 +08:00
|
|
|
* The application namespace can now be set using an ``app_name`` attribute
|
|
|
|
on the included module or object. It can also be set by passing a 2-tuple
|
|
|
|
of (<list of patterns>, <application namespace>) as the first argument to
|
|
|
|
:func:`~django.conf.urls.include`.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Validators
|
|
|
|
^^^^^^^^^^
|
|
|
|
|
2015-02-14 22:20:43 +08:00
|
|
|
* Added :func:`django.core.validators.int_list_validator` to generate
|
|
|
|
validators of strings containing integers separated with a custom character.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-04-15 02:42:49 +08:00
|
|
|
* :class:`~django.core.validators.EmailValidator` now limits the length of
|
|
|
|
domain name labels to 63 characters per :rfc:`1034`.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Backwards incompatible changes in 1.9
|
|
|
|
=====================================
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
In addition to the changes outlined in this section, be sure to review the
|
|
|
|
:doc:`deprecation timeline </internals/deprecation>` for any features that
|
|
|
|
have been removed. If you haven't updated your code within the
|
|
|
|
deprecation timeline for a given feature, its removal may appear as a
|
|
|
|
backwards incompatible change.
|
|
|
|
|
2014-12-30 00:41:16 +08:00
|
|
|
Database backend API
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* A couple of new tests rely on the ability of the backend to introspect column
|
|
|
|
defaults (returning the result as ``Field.default``). You can set the
|
|
|
|
``can_introspect_default`` database feature to ``False`` if your backend
|
|
|
|
doesn't implement this. You may want to review the implementation on the
|
|
|
|
backends that Django includes for reference (:ticket:`24245`).
|
|
|
|
|
2015-05-02 21:54:17 +08:00
|
|
|
* Registering a global adapter or converter at the level of the DB-API module
|
|
|
|
to handle time zone information of :class:`~datetime.datetime` values passed
|
|
|
|
as query parameters or returned as query results on databases that don't
|
|
|
|
support time zones is discouraged. It can conflict with other libraries.
|
|
|
|
|
|
|
|
The recommended way to add a time zone to :class:`~datetime.datetime` values
|
|
|
|
fetched from the database is to register a converter for ``DateTimeField``
|
|
|
|
in ``DatabaseOperations.get_db_converters()``.
|
|
|
|
|
2015-05-03 04:26:27 +08:00
|
|
|
The ``needs_datetime_string_cast`` database feature was removed. Database
|
|
|
|
backends that set it must register a converter instead, as explained above.
|
2015-04-12 20:46:24 +08:00
|
|
|
|
2015-05-03 03:27:44 +08:00
|
|
|
* The ``DatabaseOperations.value_to_db_<type>()`` methods were renamed to
|
|
|
|
``adapt_<type>field_value()`` to mirror the ``convert_<type>field_value()``
|
|
|
|
methods.
|
|
|
|
|
2015-03-08 05:20:29 +08:00
|
|
|
* To use the new ``date`` lookup, third-party database backends may need to
|
|
|
|
implement the ``DatabaseOperations.datetime_cast_date_sql()`` method.
|
|
|
|
|
2015-05-23 03:16:26 +08:00
|
|
|
* The ``DatabaseOperations.time_extract_sql()`` method was added. It calls the
|
|
|
|
existing ``date_extract_sql()`` method. This method is overridden by the
|
|
|
|
SQLite backend to add time lookups (hour, minute, second) to
|
|
|
|
:class:`~django.db.models.TimeField`, and may be needed by third-party
|
|
|
|
database backends.
|
|
|
|
|
2015-01-22 00:55:57 +08:00
|
|
|
Default settings that were tuples are now lists
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The default settings in ``django.conf.global_settings`` were a combination of
|
|
|
|
lists and tuples. All settings that were formerly tuples are now lists.
|
|
|
|
|
2015-02-04 05:35:55 +08:00
|
|
|
``is_usable`` attribute on template loaders is removed
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Django template loaders previously required an ``is_usable`` attribute to be
|
|
|
|
defined. If a loader was configured in the template settings and this attribute
|
|
|
|
was ``False``, the loader would be silently ignored. In practice, this was only
|
|
|
|
used by the egg loader to detect if setuptools was installed. The ``is_usable``
|
|
|
|
attribute is now removed and the egg loader instead fails at runtime if
|
|
|
|
setuptools is not installed.
|
|
|
|
|
2015-01-30 02:15:27 +08:00
|
|
|
Related set direct assignment
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
:ref:`Direct assignment <direct-assignment>`) used to perform a ``clear()``
|
|
|
|
followed by a call to ``add()``. This caused needlessly large data changes
|
|
|
|
and prevented using the :data:`~django.db.models.signals.m2m_changed` signal
|
|
|
|
to track individual changes in many-to-many relations.
|
|
|
|
|
|
|
|
Direct assignment now relies on the the new
|
|
|
|
:meth:`django.db.models.fields.related.RelatedManager.set()` method on
|
|
|
|
related managers which by default only processes changes between the
|
|
|
|
existing related set and the one that's newly assigned. The previous behavior
|
|
|
|
can be restored by replacing direct assignment by a call to ``set()`` with
|
|
|
|
the keyword argument ``clear=True``.
|
|
|
|
|
|
|
|
``ModelForm``, and therefore ``ModelAdmin``, internally rely on direct
|
|
|
|
assignment for many-to-many relations and as a consequence now use the new
|
|
|
|
behavior.
|
|
|
|
|
2015-03-03 03:31:14 +08:00
|
|
|
Filesystem-based template loaders catch more specific exceptions
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
When using the :class:`filesystem.Loader <django.template.loaders.filesystem.Loader>`
|
|
|
|
or :class:`app_directories.Loader <django.template.loaders.app_directories.Loader>`
|
|
|
|
template loaders, earlier versions of Django raised a
|
|
|
|
:exc:`~django.template.TemplateDoesNotExist` error if a template source existed
|
|
|
|
but was unreadable. This could happen under many circumstances, such as if
|
|
|
|
Django didn't have permissions to open the file, or if the template source was
|
|
|
|
a directory. Now, Django only silences the exception if the template source
|
|
|
|
does not exist. All other situations result in the original ``IOError`` being
|
|
|
|
raised.
|
|
|
|
|
2015-03-14 06:40:14 +08:00
|
|
|
HTTP redirects no longer forced to absolute URIs
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Relative redirects are no longer converted to absolute URIs. :rfc:`2616`
|
|
|
|
required the ``Location`` header in redirect responses to be an absolute URI,
|
|
|
|
but it has been superseded by :rfc:`7231` which allows relative URIs in
|
|
|
|
``Location``, recognizing the actual practice of user agents, almost all of
|
|
|
|
which support them.
|
|
|
|
|
|
|
|
Consequently, the expected URLs passed to ``assertRedirects`` should generally
|
|
|
|
no longer include the scheme and domain part of the URLs. For example,
|
|
|
|
``self.assertRedirects(response, 'http://testserver/some-url/')`` should be
|
|
|
|
replaced by ``self.assertRedirects(response, '/some-url/')`` (unless the
|
|
|
|
redirection specifically contained an absolute URL, of course).
|
|
|
|
|
2015-03-27 19:53:45 +08:00
|
|
|
Dropped support for PostgreSQL 9.0
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Upstream support for PostgreSQL 9.0 ended in September 2015. As a consequence,
|
|
|
|
Django 1.9 sets 9.1 as the minimum PostgreSQL version it officially supports.
|
|
|
|
|
2015-03-23 08:22:38 +08:00
|
|
|
Template ``LoaderOrigin`` and ``StringOrigin`` are removed
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
In previous versions of Django, when a template engine was initialized with
|
|
|
|
debug as ``True``, an instance of ``django.template.loader.LoaderOrigin`` or
|
|
|
|
``django.template.base.StringOrigin`` was set as the origin attribute on the
|
|
|
|
template object. These classes have been combined into
|
|
|
|
:class:`~django.template.base.Origin` and is now always set regardless of the
|
|
|
|
engine debug setting.
|
|
|
|
|
2015-03-24 06:17:43 +08:00
|
|
|
.. _default-logging-changes-19:
|
|
|
|
|
|
|
|
Changes to the default logging configuration
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
To make it easier to write custom logging configurations, Django's default
|
|
|
|
logging configuration no longer defines 'django.request' and 'django.security'
|
|
|
|
loggers. Instead, it defines a single 'django' logger with two handlers:
|
|
|
|
|
|
|
|
* 'console': filtered at the ``INFO`` level and only active if ``DEBUG=True``.
|
|
|
|
* 'mail_admins': filtered at the ``ERROR`` level and only active if
|
|
|
|
``DEBUG=False``.
|
|
|
|
|
|
|
|
If you aren't overriding Django's default logging, you should see minimal
|
|
|
|
changes in behavior, but you might see some new logging to the ``runserver``
|
|
|
|
console, for example.
|
|
|
|
|
|
|
|
If you are overriding Django's default logging, you should check to see how
|
|
|
|
your configuration merges with the new defaults.
|
|
|
|
|
2015-05-02 21:54:17 +08:00
|
|
|
Removal of time zone aware global adapters and converters for datetimes
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2015-04-12 20:46:24 +08:00
|
|
|
|
2015-05-02 21:54:17 +08:00
|
|
|
Django no longer registers global adapters and converters for managing time
|
|
|
|
zone information on :class:`~datetime.datetime` values sent to the database as
|
|
|
|
query parameters or read from the database in query results. This change
|
|
|
|
affects projects that meet all the following conditions:
|
2015-04-12 20:46:24 +08:00
|
|
|
|
2015-05-02 21:54:17 +08:00
|
|
|
* The :setting:`USE_TZ` setting is ``True``.
|
|
|
|
* The database is SQLite, MySQL, Oracle, or a third-party database that
|
|
|
|
doesn't support time zones. In doubt, you can check the value of
|
|
|
|
``connection.features.supports_timezones``.
|
|
|
|
* The code queries the database outside of the ORM, typically with
|
|
|
|
``cursor.execute(sql, params)``.
|
|
|
|
|
|
|
|
If you're passing aware :class:`~datetime.datetime` parameters to such
|
|
|
|
queries, you should turn them into naive datetimes in UTC::
|
2015-04-12 20:46:24 +08:00
|
|
|
|
|
|
|
from django.utils import timezone
|
2015-05-02 21:54:17 +08:00
|
|
|
param = timezone.make_naive(param, timezone.utc)
|
|
|
|
|
|
|
|
If you fail to do so, Django 1.9 and 2.0 will perform the conversion like
|
2015-06-23 01:54:35 +08:00
|
|
|
earlier versions but emit a deprecation warning. Django 2.0 won't perform any
|
2015-05-02 21:54:17 +08:00
|
|
|
conversion, which may result in data corruption.
|
|
|
|
|
|
|
|
If you're reading :class:`~datetime.datetime` values from the results, they
|
|
|
|
will be naive instead of aware. You can compensate as follows::
|
|
|
|
|
|
|
|
from django.utils import timezone
|
|
|
|
value = timezone.make_aware(value, timezone.utc)
|
|
|
|
|
|
|
|
You don't need any of this if you're querying the database through the ORM,
|
|
|
|
even if you're using :meth:`raw() <django.db.models.query.QuerySet.raw>`
|
|
|
|
queries. The ORM takes care of managing time zone information.
|
2015-04-12 20:46:24 +08:00
|
|
|
|
2015-05-09 04:10:36 +08:00
|
|
|
Template tag modules are imported when templates are configured
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The :class:`~django.template.backends.django.DjangoTemplates` backend now
|
|
|
|
performs discovery on installed template tag modules when instantiated. This
|
|
|
|
update enables libraries to be provided explicitly via the ``'libraries'``
|
|
|
|
key of :setting:`OPTIONS <TEMPLATES-OPTIONS>` when defining a
|
|
|
|
:class:`~django.template.backends.django.DjangoTemplates` backend. Import
|
|
|
|
or syntax errors in template tag modules now fail early at instantiation time
|
|
|
|
rather than when a template with a :ttag:`{% load %}<load>` tag is first
|
|
|
|
compiled.
|
|
|
|
|
|
|
|
``django.template.base.add_to_builtins()`` is removed
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Although it was a private API, projects commonly used ``add_to_builtins()`` to
|
|
|
|
make template tags and filters available without using the
|
|
|
|
:ttag:`{% load %}<load>` tag. This API has been formalized. Projects should now
|
|
|
|
define built-in libraries via the ``'builtins'`` key of :setting:`OPTIONS
|
|
|
|
<TEMPLATES-OPTIONS>` when defining a
|
|
|
|
:class:`~django.template.backends.django.DjangoTemplates` backend.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
Miscellaneous
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
2015-01-27 12:02:53 +08:00
|
|
|
* CSS and images in ``contrib.admin`` to support Internet Explorer 6 & 7 have
|
|
|
|
been removed as these browsers have reached end-of-life.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-06-07 07:32:54 +08:00
|
|
|
* The jQuery static files in ``contrib.admin`` have been moved into a
|
|
|
|
``vendor/jquery`` subdirectory.
|
|
|
|
|
2015-03-12 21:40:03 +08:00
|
|
|
* The text displayed for null columns in the admin changelist ``list_display``
|
|
|
|
cells has changed from ``(None)`` (or its translated equivalent) to ``-``.
|
|
|
|
|
2015-01-14 03:29:07 +08:00
|
|
|
* ``django.http.responses.REASON_PHRASES`` and
|
|
|
|
``django.core.handlers.wsgi.STATUS_CODE_TEXT`` have been removed. Use
|
|
|
|
Python's stdlib instead: :data:`http.client.responses` for Python 3 and
|
|
|
|
`httplib.responses`_ for Python 2.
|
|
|
|
|
|
|
|
.. _`httplib.responses`: https://docs.python.org/2/library/httplib.html#httplib.responses
|
|
|
|
|
2015-01-30 15:26:13 +08:00
|
|
|
* ``ValuesQuerySet`` and ``ValuesListQuerySet`` have been removed.
|
|
|
|
|
2015-03-05 02:05:17 +08:00
|
|
|
* The ``admin/base.html`` template no longer sets
|
|
|
|
``window.__admin_media_prefix__``. Image references in JavaScript that used
|
|
|
|
that value to construct absolute URLs have been moved to CSS for easier
|
|
|
|
customization.
|
|
|
|
|
2015-02-14 22:20:43 +08:00
|
|
|
* ``CommaSeparatedIntegerField`` validation has been refined to forbid values
|
|
|
|
like ``','``, ``',1'``, and ``'1,,2'``.
|
|
|
|
|
2015-04-15 04:50:36 +08:00
|
|
|
* Form initialization was moved from the :meth:`ProcessFormView.get()
|
|
|
|
<django.views.generic.edit.ProcessFormView.get>` method to the new
|
|
|
|
:meth:`FormMixin.get_context_data()
|
|
|
|
<django.views.generic.edit.FormMixin.get_context_data>` method. This may be
|
|
|
|
backwards incompatible if you have overridden the ``get_context_data()``
|
|
|
|
method without calling ``super()``.
|
|
|
|
|
2015-03-17 23:16:50 +08:00
|
|
|
* Support for PostGIS 1.5 has been dropped.
|
|
|
|
|
2015-05-15 01:59:36 +08:00
|
|
|
* The ``django.contrib.sites.models.Site.domain`` field was changed to be
|
|
|
|
:attr:`~django.db.models.Field.unique`.
|
|
|
|
|
2015-04-17 04:19:30 +08:00
|
|
|
* In order to enforce test isolation, database queries are not allowed
|
|
|
|
by default in :class:`~django.test.SimpleTestCase` tests anymore. You
|
|
|
|
can disable this behavior by setting the
|
|
|
|
:attr:`~django.test.SimpleTestCase.allow_database_queries` class attribute
|
|
|
|
to ``True`` on your test class.
|
|
|
|
|
2015-06-04 01:12:27 +08:00
|
|
|
* :attr:`ResolverMatch.app_name
|
|
|
|
<django.core.urlresolvers.ResolverMatch.app_name>` was changed to contain
|
|
|
|
the full namespace path in the case of nested namespaces. For consistency
|
|
|
|
with :attr:`ResolverMatch.namespace
|
|
|
|
<django.core.urlresolvers.ResolverMatch.namespace>`, the empty value is now
|
|
|
|
an empty string instead of ``None``.
|
|
|
|
|
2015-06-05 20:48:41 +08:00
|
|
|
* For security hardening, session keys must be at least 8 characters.
|
|
|
|
|
2015-06-15 22:10:40 +08:00
|
|
|
* Private function ``django.utils.functional.total_ordering()`` has been
|
|
|
|
removed. It contained a workaround for a ``functools.total_ordering()`` bug
|
|
|
|
in Python versions older than 2.7.3.
|
2015-06-19 14:42:48 +08:00
|
|
|
* XML serialization (either through :djadmin:`dumpdata` or the syndication
|
|
|
|
framework) used to output any characters it received. Now if the content to
|
|
|
|
be serialized contains any control characters not allowed in the XML 1.0
|
|
|
|
standard, the serialization will fail with a :exc:`ValueError`.
|
2015-06-15 22:10:40 +08:00
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
.. _deprecated-features-1.9:
|
|
|
|
|
|
|
|
Features deprecated in 1.9
|
|
|
|
==========================
|
|
|
|
|
2015-01-17 07:34:32 +08:00
|
|
|
``assignment_tag()``
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Django 1.4 added the ``assignment_tag`` helper to ease the creation of
|
|
|
|
template tags that store results in a template variable. The
|
|
|
|
:meth:`~django.template.Library.simple_tag` helper has gained this same
|
|
|
|
ability, making the ``assignment_tag`` obsolete. Tags that use
|
|
|
|
``assignment_tag`` should be updated to use ``simple_tag``.
|
|
|
|
|
2015-03-06 01:38:42 +08:00
|
|
|
``{% cycle %}`` syntax with comma-separated arguments
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The :ttag:`cycle` tag supports an inferior old syntax from previous Django
|
|
|
|
versions:
|
|
|
|
|
|
|
|
.. code-block:: html+django
|
|
|
|
|
|
|
|
{% cycle row1,row2,row3 %}
|
|
|
|
|
|
|
|
Its parsing caused bugs with the current syntax, so support for the old syntax
|
|
|
|
will be removed in Django 2.0 following an accelerated deprecation.
|
|
|
|
|
2015-02-26 22:19:17 +08:00
|
|
|
``Field.rel`` changes
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
``Field.rel`` and its methods and attributes have changed to match the related
|
|
|
|
fields API. The ``Field.rel`` attribute is renamed to ``remote_field`` and many
|
|
|
|
of its methods and attributes are either changed or renamed.
|
|
|
|
|
|
|
|
The aim of these changes is to provide a documented API for relation fields.
|
|
|
|
|
2015-01-30 03:12:08 +08:00
|
|
|
``GeoManager`` and ``GeoQuerySet`` custom methods
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
All custom ``GeoQuerySet`` methods (``area()``, ``distance()``, ``gml()``, ...)
|
|
|
|
have been replaced by equivalent geographic expressions in annotations (see in
|
|
|
|
new features). Hence the need to set a custom ``GeoManager`` to GIS-enabled
|
|
|
|
models is now obsolete. As soon as your code doesn't call any of the deprecated
|
|
|
|
methods, you can simply remove the ``objects = GeoManager()`` lines from your
|
|
|
|
models.
|
|
|
|
|
2015-03-23 08:22:38 +08:00
|
|
|
Template loader APIs have changed
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Django template loaders have been updated to allow recursive template
|
|
|
|
extending. This change necessitated a new template loader API. The old
|
|
|
|
``load_template()`` and ``load_template_sources()`` methods are now deprecated.
|
|
|
|
Details about the new API can be found :ref:`in the template loader
|
|
|
|
documentation <custom-template-loaders>`.
|
|
|
|
|
2015-05-28 23:25:52 +08:00
|
|
|
Passing a 3-tuple or an ``app_name`` to :func:`~django.conf.urls.include()`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The instance namespace part of passing a tuple as the first argument has been
|
|
|
|
replaced by passing the ``namespace`` argument to ``include()``. The
|
|
|
|
``app_name`` argument to ``include()`` has been replaced by passing a 2-tuple,
|
|
|
|
or passing an object or module with an ``app_name`` attribute.
|
|
|
|
|
|
|
|
If the ``app_name`` is set in this new way, the ``namespace`` argument is no
|
|
|
|
longer required. It will default to the value of ``app_name``.
|
|
|
|
|
|
|
|
This change also means that the old way of including an ``AdminSite`` instance
|
|
|
|
is deprecated. Instead, pass ``admin.site.urls`` directly to
|
|
|
|
:func:`~django.conf.urls.url()`:
|
|
|
|
|
|
|
|
.. snippet::
|
|
|
|
:filename: urls.py
|
|
|
|
|
|
|
|
from django.conf.urls import url
|
|
|
|
from django.contrib import admin
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
url(r'^admin/', admin.site.urls),
|
|
|
|
]
|
|
|
|
|
|
|
|
URL application namespace required if setting an instance namespace
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
In the past, an instance namespace without an application namespace
|
|
|
|
would serve the same purpose as the application namespace, but it was
|
|
|
|
impossible to reverse the patterns if there was an application namespace
|
|
|
|
with the same name. Includes that specify an instance namespace require that
|
|
|
|
the included URLconf sets an application namespace.
|
|
|
|
|
2015-01-22 02:26:51 +08:00
|
|
|
Miscellaneous
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
* The ``weak`` argument to ``django.dispatch.signals.Signal.disconnect()`` has
|
|
|
|
been deprecated as it has no effect.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
2015-01-27 12:29:06 +08:00
|
|
|
* The ``check_aggregate_support()`` method of
|
|
|
|
``django.db.backends.base.BaseDatabaseOperations`` has been deprecated and
|
2015-06-23 01:54:35 +08:00
|
|
|
will be removed in Django 2.0. The more general ``check_expression_support()``
|
2015-01-27 12:29:06 +08:00
|
|
|
should be used instead.
|
|
|
|
|
2015-01-28 02:50:00 +08:00
|
|
|
* ``django.forms.extras`` is deprecated. You can find
|
2015-01-26 11:28:57 +08:00
|
|
|
:class:`~django.forms.SelectDateWidget` in ``django.forms.widgets``
|
|
|
|
(or simply ``django.forms``) instead.
|
|
|
|
|
2015-03-03 16:43:56 +08:00
|
|
|
* Private API ``django.db.models.fields.add_lazy_relation()`` is deprecated.
|
|
|
|
|
2015-04-07 03:02:34 +08:00
|
|
|
* The ``django.contrib.auth.tests.utils.skipIfCustomUser()`` decorator is
|
|
|
|
deprecated. With the test discovery changes in Django 1.6, the tests for
|
|
|
|
``django.contrib`` apps are no longer run as part of the user's project.
|
|
|
|
Therefore, the ``@skipIfCustomUser`` decorator is no longer needed to
|
|
|
|
decorate tests in ``django.contrib.auth``.
|
|
|
|
|
2015-04-22 03:54:00 +08:00
|
|
|
* If you customized some :ref:`error handlers <error-views>`, the view
|
|
|
|
signatures with only one request parameter are deprecated. The views should
|
|
|
|
now also accept a second ``exception`` positional parameter.
|
|
|
|
|
2015-06-04 22:00:39 +08:00
|
|
|
* The ``django.utils.feedgenerator.Atom1Feed.mime_type`` and
|
|
|
|
``django.utils.feedgenerator.RssFeed.mime_type`` attributes are deprecated in
|
|
|
|
favor of ``content_type``.
|
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
.. removed-features-1.9:
|
|
|
|
|
|
|
|
Features removed in 1.9
|
|
|
|
=======================
|
|
|
|
|
|
|
|
These features have reached the end of their deprecation cycle and so have been
|
|
|
|
removed in Django 1.9 (please see the :ref:`deprecation timeline
|
|
|
|
<deprecation-removed-in-1.9>` for more details):
|
|
|
|
|
|
|
|
* ``django.utils.dictconfig`` is removed.
|
|
|
|
|
|
|
|
* ``django.utils.importlib`` is removed.
|
|
|
|
|
|
|
|
* ``django.utils.tzinfo`` is removed.
|
|
|
|
|
|
|
|
* ``django.utils.unittest`` is removed.
|
|
|
|
|
|
|
|
* The ``syncdb`` command is removed.
|
|
|
|
|
|
|
|
* ``django.db.models.signals.pre_syncdb`` and
|
|
|
|
``django.db.models.signals.post_syncdb`` is removed.
|
|
|
|
|
|
|
|
* Support for ``allow_syncdb`` on database routers is removed.
|
|
|
|
|
|
|
|
* The legacy method of syncing apps without migrations is removed,
|
|
|
|
and migrations are compulsory for all apps. This includes automatic
|
|
|
|
loading of ``initial_data`` fixtures and support for initial SQL data.
|
|
|
|
|
|
|
|
* All models need to be defined inside an installed application or declare an
|
|
|
|
explicit :attr:`~django.db.models.Options.app_label`. Furthermore, it isn't
|
|
|
|
possible to import them before their application is loaded. In particular, it
|
|
|
|
isn't possible to import models inside the root package of an application.
|
|
|
|
|
|
|
|
* The model and form ``IPAddressField`` is removed. A stub field remains for
|
|
|
|
compatibility with historical migrations.
|
|
|
|
|
|
|
|
* ``AppCommand.handle_app()`` is no longer be supported.
|
|
|
|
|
2015-01-19 10:57:38 +08:00
|
|
|
* ``RequestSite`` and ``get_current_site()`` are no longer importable from
|
|
|
|
``django.contrib.sites.models``.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
|
|
|
* FastCGI support via the ``runfcgi`` management command is removed.
|
|
|
|
|
|
|
|
* ``django.utils.datastructures.SortedDict`` is removed.
|
|
|
|
|
|
|
|
* ``ModelAdmin.declared_fieldsets`` is removed.
|
|
|
|
|
2015-01-19 10:57:38 +08:00
|
|
|
* The ``util`` modules that provided backwards compatibility are removed:
|
2015-01-17 07:00:45 +08:00
|
|
|
|
|
|
|
* ``django.contrib.admin.util``
|
|
|
|
* ``django.contrib.gis.db.backends.util``
|
|
|
|
* ``django.db.backends.util``
|
|
|
|
* ``django.forms.util``
|
|
|
|
|
|
|
|
* ``ModelAdmin.get_formsets`` is removed.
|
|
|
|
|
|
|
|
* The backward compatible shims introduced to rename the
|
|
|
|
``BaseMemcachedCache._get_memcache_timeout()`` method to
|
|
|
|
``get_backend_timeout()`` is removed.
|
|
|
|
|
|
|
|
* The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` are removed.
|
|
|
|
|
|
|
|
* The ``use_natural_keys`` argument for ``serializers.serialize()`` is removed.
|
|
|
|
|
2015-01-19 10:57:38 +08:00
|
|
|
* Private API ``django.forms.forms.get_declared_fields()`` is removed.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
|
|
|
* The ability to use a ``SplitDateTimeWidget`` with ``DateTimeField`` is
|
|
|
|
removed.
|
|
|
|
|
|
|
|
* The ``WSGIRequest.REQUEST`` property is removed.
|
|
|
|
|
|
|
|
* The class ``django.utils.datastructures.MergeDict`` is removed.
|
|
|
|
|
|
|
|
* The ``zh-cn`` and ``zh-tw`` language codes are removed.
|
|
|
|
|
|
|
|
* The internal ``django.utils.functional.memoize()`` is removed.
|
|
|
|
|
|
|
|
* ``django.core.cache.get_cache`` is removed.
|
|
|
|
|
|
|
|
* ``django.db.models.loading`` is removed.
|
|
|
|
|
|
|
|
* Passing callable arguments to querysets is no longer possible.
|
|
|
|
|
|
|
|
* ``BaseCommand.requires_model_validation`` is removed in favor of
|
|
|
|
``requires_system_checks``. Admin validators is replaced by admin checks.
|
|
|
|
|
2015-01-19 10:57:38 +08:00
|
|
|
* The ``ModelAdmin.validator_class`` and ``default_validator_class`` attributes
|
|
|
|
are removed.
|
|
|
|
|
|
|
|
* ``ModelAdmin.validate()`` is removed.
|
2015-01-17 07:00:45 +08:00
|
|
|
|
|
|
|
* ``django.db.backends.DatabaseValidation.validate_field`` is removed in
|
|
|
|
favor of the ``check_field`` method.
|
|
|
|
|
2015-04-02 04:42:44 +08:00
|
|
|
* The ``validate`` management command is removed.
|
2015-01-18 08:14:44 +08:00
|
|
|
|
2015-01-17 07:00:45 +08:00
|
|
|
* ``django.utils.module_loading.import_by_path`` is removed in favor of
|
|
|
|
``django.utils.module_loading.import_string``.
|
|
|
|
|
|
|
|
* ``ssi`` and ``url`` template tags are removed from the ``future`` template
|
|
|
|
tag library.
|
|
|
|
|
|
|
|
* ``django.utils.text.javascript_quote()`` is removed.
|
|
|
|
|
|
|
|
* Database test settings as independent entries in the database settings,
|
|
|
|
prefixed by ``TEST_``, are no longer supported.
|
|
|
|
|
|
|
|
* The `cache_choices` option to :class:`~django.forms.ModelChoiceField` and
|
|
|
|
:class:`~django.forms.ModelMultipleChoiceField` is removed.
|
|
|
|
|
|
|
|
* The default value of the
|
|
|
|
:attr:`RedirectView.permanent <django.views.generic.base.RedirectView.permanent>`
|
|
|
|
attribute has changed from ``True`` to ``False``.
|
|
|
|
|
|
|
|
* ``django.contrib.sitemaps.FlatPageSitemap`` is removed in favor of
|
|
|
|
``django.contrib.flatpages.sitemaps.FlatPageSitemap``.
|
2015-01-19 10:57:38 +08:00
|
|
|
|
|
|
|
* Private API ``django.test.utils.TestTemplateLoader`` is removed.
|
|
|
|
|
|
|
|
* The ``django.contrib.contenttypes.generic`` module is removed.
|