2013-11-07 15:17:17 +08:00
|
|
|
|
=========================
|
|
|
|
|
Django 1.6 release notes
|
|
|
|
|
=========================
|
2012-10-30 21:02:54 +08:00
|
|
|
|
|
2013-03-26 08:11:23 +08:00
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
|
|
Dedicated to Malcolm Tredinnick
|
|
|
|
|
|
|
|
|
|
On March 17, 2013, the Django project and the free software community lost
|
|
|
|
|
a very dear friend and developer.
|
|
|
|
|
|
|
|
|
|
Malcolm was a long-time contributor to Django, a model community member, a
|
|
|
|
|
brilliant mind, and a friend. His contributions to Django — and to many other
|
|
|
|
|
open source projects — are nearly impossible to enumerate. Many on the core
|
|
|
|
|
Django team had their first patches reviewed by him; his mentorship enriched
|
|
|
|
|
us. His consideration, patience, and dedication will always be an inspiration
|
|
|
|
|
to us.
|
|
|
|
|
|
|
|
|
|
This release of Django is for Malcolm.
|
|
|
|
|
|
|
|
|
|
-- The Django Developers
|
|
|
|
|
|
2013-11-07 15:17:17 +08:00
|
|
|
|
*November 6, 2013*
|
|
|
|
|
|
2012-10-30 21:02:54 +08:00
|
|
|
|
Welcome to Django 1.6!
|
|
|
|
|
|
|
|
|
|
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.5 or older versions. We've also dropped some features, which are detailed in
|
2014-02-03 21:09:27 +08:00
|
|
|
|
:ref:`our deprecation plan <deprecation-removed-in-1.6>`, and we've `begun the
|
2012-10-30 21:02:54 +08:00
|
|
|
|
deprecation process for some features`_.
|
|
|
|
|
|
|
|
|
|
.. _`new features`: `What's new in Django 1.6`_
|
|
|
|
|
.. _`backwards incompatible changes`: `Backwards incompatible changes in 1.6`_
|
|
|
|
|
.. _`begun the deprecation process for some features`: `Features deprecated in 1.6`_
|
|
|
|
|
|
2013-07-26 01:03:15 +08:00
|
|
|
|
Python compatibility
|
|
|
|
|
====================
|
|
|
|
|
|
|
|
|
|
Django 1.6, like Django 1.5, requires Python 2.6.5 or above. Python 3 is also
|
|
|
|
|
officially supported. We **highly recommend** the latest minor release for each
|
|
|
|
|
supported Python series (2.6.X, 2.7.X, 3.2.X, and 3.3.X).
|
|
|
|
|
|
|
|
|
|
Django 1.6 will be the final release series to support Python 2.6; beginning
|
|
|
|
|
with Django 1.7, the minimum supported Python version will be 2.7.
|
|
|
|
|
|
2014-03-26 22:55:59 +08:00
|
|
|
|
Python 3.4 is not supported, but support will be added in Django 1.7.
|
|
|
|
|
|
2012-10-30 21:02:54 +08:00
|
|
|
|
What's new in Django 1.6
|
|
|
|
|
========================
|
|
|
|
|
|
Simplified default project template.
Squashed commit of:
commit 508ec9144b35c50794708225b496bde1eb5e60aa
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 22:50:55 2013 +0100
Tweaked default settings file.
* Explained why BASE_DIR exists.
* Added a link to the database configuration options, and put it in its
own section.
* Moved sensitive settings that must be changed for production at the
top.
commit 6515fd2f1aa73a86dc8dbd2ccf512ddb6b140d57
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 14:35:21 2013 +0100
Documented the simplified app & project templates in the changelog.
commit 2c5b576c2ea91d84273a019b3d0b3b8b4da72f23
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 13:59:27 2013 +0100
Minor fixes in tutorials 5 and 6.
commit 55a51531be8104f21b3cca3f6bf70b0a7139a041
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 13:51:11 2013 +0100
Updated tutorial 2 for the new project template.
commit 29ddae87bdaecff12dd31b16b000c01efbde9e20
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 11:58:54 2013 +0100
Updated tutorial 1 for the new project template.
commit 0ecb9f6e2514cfd26a678a280d471433375101a3
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 11:29:13 2013 +0100
Adjusted the default URLconf detection to account for the admin.
It's now enabled by default.
commit 5fb4da0d3d09dac28dd94e3fde92b9d4335c0565
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 10:36:55 2013 +0100
Added security warnings for the most sensitive settings.
commit 718d84bd8ac4a42fb4b28ec93965de32680f091e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 23:24:06 2013 +0100
Used an absolute path for the SQLite database.
This ensures the settings file works regardless of which directory
django-admin.py / manage.py is invoked from.
BASE_DIR got a +1 from a BDFL and another core dev. It doesn't involve
the concept of a "Django project"; it's just a convenient way to express
relative paths within the source code repository for non-Python files.
Thanks Jacob Kaplan-Moss for the suggestion.
commit 1b559b4bcda622e10909b68fe5cab90db6727dd9
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 23:22:40 2013 +0100
Removed STATIC_ROOT from the default settings template.
It isn't necessary in development, and it confuses beginners to no end.
Thanks Carl Meyer for the suggestion.
commit a55f141a500bb7c9a1bc259bbe1954c13b199671
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 23:21:43 2013 +0100
Removed MEDIA_ROOT/URL from default settings template.
Many sites will never deal with user-uploaded files, and MEDIA_ROOT is
complicated to explain.
Thanks Carl Meyer for the suggestion.
commit 44bf2f2441420fd9429ee9fe1f7207f92dd87e70
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 22:22:09 2013 +0100
Removed logging config.
This configuration is applied regardless of the value of LOGGING;
duplicating it in LOGGING is confusing.
commit eac747e848eaed65fd5f6f254f0a7559d856f88f
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 22:05:31 2013 +0100
Enabled the locale middleware by default.
USE_I18N is True by default, and doesn't work well without
LocaleMiddleware.
commit d806c62b2d00826dc2688c84b092627b8d571cab
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 22:03:16 2013 +0100
Enabled clickjacking protection by default.
commit 99152c30e6a15003f0b6737dc78e87adf462aacb
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 22:01:48 2013 +0100
Reorganized settings in logical sections, and trimmed comments.
commit d37ffdfcb24b7e0ec7cc113d07190f65fb12fb8a
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:54:11 2013 +0100
Avoided misleading TEMPLATE_DEBUG = DEBUG.
According to the docs TEMPLATE_DEBUG works only when DEBUG = True.
commit 15d9478d3a9850e85841e7cf09cf83050371c6bf
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:46:25 2013 +0100
Removed STATICFILES_FINDERS/TEMPLATE_LOADERS from default settings file.
Only developers with special needs ever need to change these settings.
commit 574da0eb5bfb4570883756914b4dbd7e20e1f61e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:45:01 2013 +0100
Removed STATICFILES/TEMPLATES_DIRS from default settings file.
The current best practice is to put static files and templates in
applications, for easier testing and deployment.
commit 8cb18dbe56629aa1be74718a07e7cc66b4f9c9f0
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:24:16 2013 +0100
Removed settings related to email reporting from default settings file.
While handy for small scale projects, it isn't exactly a best practice.
commit 8ecbfcb3638058f0c49922540f874a7d802d864f
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 18:54:43 2013 +0100
Documented how to enable the sites framework.
commit 23fc91a6fa67d91ddd9d71b1c3e0dc26bdad9841
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:28:59 2013 +0100
Disabled the sites framework by default.
RequestSite does the job for single-domain websites.
commit c4d82eb8afc0eb8568bf9c4d12644272415e3960
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 00:08:33 2013 +0100
Added a default admin.py to the application template.
Thanks Ryan D Hiebert for the suggestion.
commit 4071dc771e5c44b1c5ebb9beecefb164ae465e22
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 10:59:49 2013 +0100
Enabled the admin by default.
Everyone uses the admin.
commit c807a31f8d89e7e7fd97380e3023f7983a8b6fcb
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 10:57:05 2013 +0100
Removed admindocs from default project template.
commit 09e4ce0e652a97da1a9e285046a91c8ad7a9189c
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:32:52 2013 +0100
Added links to the settings documentation.
commit 5b8f5eaef364eb790fcde6f9e86f7d266074cca8
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 11:06:54 2013 +0100
Used a significant example for URLconf includes.
commit 908e91d6fcee2a3cb51ca26ecdf12a6a24e69ef8
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:22:31 2013 +0100
Moved code comments about WSGI to docs, and rewrote said docs.
commit 50417e51996146f891d08ca8b74dcc736a581932
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 15:51:50 2013 +0100
Normalized the default application template.
Removed the default test that 1 + 1 = 2, because it's been committed
way too many times, in too many projects.
Added an import of `render` for views, because the first view will
often be:
def home(request):
return render(request, "mysite/home.html")
2013-01-28 22:51:50 +08:00
|
|
|
|
Simplified default project and app templates
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The default templates used by :djadmin:`startproject` and :djadmin:`startapp`
|
|
|
|
|
have been simplified and modernized. The :doc:`admin
|
|
|
|
|
</ref/contrib/admin/index>` is now enabled by default in new projects; the
|
2013-06-29 16:50:04 +08:00
|
|
|
|
:doc:`sites </ref/contrib/sites>` framework no longer is. :ref:`clickjacking
|
|
|
|
|
prevention <clickjacking-prevention>` is now on and the database defaults to
|
|
|
|
|
SQLite.
|
Simplified default project template.
Squashed commit of:
commit 508ec9144b35c50794708225b496bde1eb5e60aa
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 22:50:55 2013 +0100
Tweaked default settings file.
* Explained why BASE_DIR exists.
* Added a link to the database configuration options, and put it in its
own section.
* Moved sensitive settings that must be changed for production at the
top.
commit 6515fd2f1aa73a86dc8dbd2ccf512ddb6b140d57
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 14:35:21 2013 +0100
Documented the simplified app & project templates in the changelog.
commit 2c5b576c2ea91d84273a019b3d0b3b8b4da72f23
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 13:59:27 2013 +0100
Minor fixes in tutorials 5 and 6.
commit 55a51531be8104f21b3cca3f6bf70b0a7139a041
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 13:51:11 2013 +0100
Updated tutorial 2 for the new project template.
commit 29ddae87bdaecff12dd31b16b000c01efbde9e20
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 11:58:54 2013 +0100
Updated tutorial 1 for the new project template.
commit 0ecb9f6e2514cfd26a678a280d471433375101a3
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 11:29:13 2013 +0100
Adjusted the default URLconf detection to account for the admin.
It's now enabled by default.
commit 5fb4da0d3d09dac28dd94e3fde92b9d4335c0565
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 10:36:55 2013 +0100
Added security warnings for the most sensitive settings.
commit 718d84bd8ac4a42fb4b28ec93965de32680f091e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 23:24:06 2013 +0100
Used an absolute path for the SQLite database.
This ensures the settings file works regardless of which directory
django-admin.py / manage.py is invoked from.
BASE_DIR got a +1 from a BDFL and another core dev. It doesn't involve
the concept of a "Django project"; it's just a convenient way to express
relative paths within the source code repository for non-Python files.
Thanks Jacob Kaplan-Moss for the suggestion.
commit 1b559b4bcda622e10909b68fe5cab90db6727dd9
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 23:22:40 2013 +0100
Removed STATIC_ROOT from the default settings template.
It isn't necessary in development, and it confuses beginners to no end.
Thanks Carl Meyer for the suggestion.
commit a55f141a500bb7c9a1bc259bbe1954c13b199671
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 23:21:43 2013 +0100
Removed MEDIA_ROOT/URL from default settings template.
Many sites will never deal with user-uploaded files, and MEDIA_ROOT is
complicated to explain.
Thanks Carl Meyer for the suggestion.
commit 44bf2f2441420fd9429ee9fe1f7207f92dd87e70
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 22:22:09 2013 +0100
Removed logging config.
This configuration is applied regardless of the value of LOGGING;
duplicating it in LOGGING is confusing.
commit eac747e848eaed65fd5f6f254f0a7559d856f88f
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 22:05:31 2013 +0100
Enabled the locale middleware by default.
USE_I18N is True by default, and doesn't work well without
LocaleMiddleware.
commit d806c62b2d00826dc2688c84b092627b8d571cab
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 22:03:16 2013 +0100
Enabled clickjacking protection by default.
commit 99152c30e6a15003f0b6737dc78e87adf462aacb
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 22:01:48 2013 +0100
Reorganized settings in logical sections, and trimmed comments.
commit d37ffdfcb24b7e0ec7cc113d07190f65fb12fb8a
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:54:11 2013 +0100
Avoided misleading TEMPLATE_DEBUG = DEBUG.
According to the docs TEMPLATE_DEBUG works only when DEBUG = True.
commit 15d9478d3a9850e85841e7cf09cf83050371c6bf
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:46:25 2013 +0100
Removed STATICFILES_FINDERS/TEMPLATE_LOADERS from default settings file.
Only developers with special needs ever need to change these settings.
commit 574da0eb5bfb4570883756914b4dbd7e20e1f61e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:45:01 2013 +0100
Removed STATICFILES/TEMPLATES_DIRS from default settings file.
The current best practice is to put static files and templates in
applications, for easier testing and deployment.
commit 8cb18dbe56629aa1be74718a07e7cc66b4f9c9f0
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:24:16 2013 +0100
Removed settings related to email reporting from default settings file.
While handy for small scale projects, it isn't exactly a best practice.
commit 8ecbfcb3638058f0c49922540f874a7d802d864f
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 18:54:43 2013 +0100
Documented how to enable the sites framework.
commit 23fc91a6fa67d91ddd9d71b1c3e0dc26bdad9841
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:28:59 2013 +0100
Disabled the sites framework by default.
RequestSite does the job for single-domain websites.
commit c4d82eb8afc0eb8568bf9c4d12644272415e3960
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Jan 29 00:08:33 2013 +0100
Added a default admin.py to the application template.
Thanks Ryan D Hiebert for the suggestion.
commit 4071dc771e5c44b1c5ebb9beecefb164ae465e22
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 10:59:49 2013 +0100
Enabled the admin by default.
Everyone uses the admin.
commit c807a31f8d89e7e7fd97380e3023f7983a8b6fcb
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 10:57:05 2013 +0100
Removed admindocs from default project template.
commit 09e4ce0e652a97da1a9e285046a91c8ad7a9189c
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:32:52 2013 +0100
Added links to the settings documentation.
commit 5b8f5eaef364eb790fcde6f9e86f7d266074cca8
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 11:06:54 2013 +0100
Used a significant example for URLconf includes.
commit 908e91d6fcee2a3cb51ca26ecdf12a6a24e69ef8
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 16:22:31 2013 +0100
Moved code comments about WSGI to docs, and rewrote said docs.
commit 50417e51996146f891d08ca8b74dcc736a581932
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Mon Jan 28 15:51:50 2013 +0100
Normalized the default application template.
Removed the default test that 1 + 1 = 2, because it's been committed
way too many times, in too many projects.
Added an import of `render` for views, because the first view will
often be:
def home(request):
return render(request, "mysite/home.html")
2013-01-28 22:51:50 +08:00
|
|
|
|
|
|
|
|
|
If the default templates don't suit your tastes, you can use :ref:`custom
|
|
|
|
|
project and app templates <custom-app-and-project-templates>`.
|
|
|
|
|
|
2013-03-03 22:55:11 +08:00
|
|
|
|
Improved transaction management
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Django's transaction management was overhauled. Database-level autocommit is
|
|
|
|
|
now turned on by default. This makes transaction handling more explicit and
|
|
|
|
|
should improve performance. The existing APIs were deprecated, and new APIs
|
2013-03-13 21:47:48 +08:00
|
|
|
|
were introduced, as described in the :doc:`transaction management docs
|
|
|
|
|
</topics/db/transactions>`.
|
2013-03-03 22:55:11 +08:00
|
|
|
|
|
|
|
|
|
Please review carefully the list of :ref:`known backwards-incompatibilities
|
2013-03-05 06:26:31 +08:00
|
|
|
|
<transactions-upgrading-from-1.5>` to determine if you need to make changes in
|
2013-03-03 22:55:11 +08:00
|
|
|
|
your code.
|
|
|
|
|
|
2013-02-18 18:37:26 +08:00
|
|
|
|
Persistent database connections
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Django now supports reusing the same database connection for several requests.
|
|
|
|
|
This avoids the overhead of re-establishing a connection at the beginning of
|
2013-05-09 21:42:14 +08:00
|
|
|
|
each request. For backwards compatibility, this feature is disabled by
|
|
|
|
|
default. See :ref:`persistent-database-connections` for details.
|
2013-02-18 18:37:26 +08:00
|
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
|
Discovery of tests in any test module
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Django 1.6 ships with a new test runner that allows more flexibility in the
|
|
|
|
|
location of tests. The previous runner
|
|
|
|
|
(``django.test.simple.DjangoTestSuiteRunner``) found tests only in the
|
|
|
|
|
``models.py`` and ``tests.py`` modules of a Python package in
|
|
|
|
|
:setting:`INSTALLED_APPS`.
|
|
|
|
|
|
2013-06-03 15:59:20 +08:00
|
|
|
|
The new runner (``django.test.runner.DiscoverRunner``) uses the test discovery
|
2013-06-06 00:55:50 +08:00
|
|
|
|
features built into ``unittest2`` (the version of ``unittest`` in the
|
|
|
|
|
Python 2.7+ standard library, and bundled with Django). With test discovery,
|
|
|
|
|
tests can be located in any module whose name matches the pattern ``test*.py``.
|
2013-05-11 11:08:45 +08:00
|
|
|
|
|
|
|
|
|
In addition, the test labels provided to ``./manage.py test`` to nominate
|
|
|
|
|
specific tests to run must now be full Python dotted paths (or directory
|
|
|
|
|
paths), rather than ``applabel.TestCase.test_method_name`` pseudo-paths. This
|
|
|
|
|
allows running tests located anywhere in your codebase, rather than only in
|
|
|
|
|
:setting:`INSTALLED_APPS`. For more details, see :doc:`/topics/testing/index`.
|
|
|
|
|
|
|
|
|
|
This change is backwards-incompatible; see the :ref:`backwards-incompatibility
|
|
|
|
|
notes<new-test-runner>`.
|
|
|
|
|
|
2013-02-10 23:15:49 +08:00
|
|
|
|
Time zone aware aggregation
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The support for :doc:`time zones </topics/i18n/timezones>` introduced in
|
|
|
|
|
Django 1.4 didn't work well with :meth:`QuerySet.dates()
|
|
|
|
|
<django.db.models.query.QuerySet.dates>`: aggregation was always performed in
|
|
|
|
|
UTC. This limitation was lifted in Django 1.6. Use :meth:`QuerySet.datetimes()
|
|
|
|
|
<django.db.models.query.QuerySet.datetimes>` to perform time zone aware
|
|
|
|
|
aggregation on a :class:`~django.db.models.DateTimeField`.
|
|
|
|
|
|
2013-03-24 20:08:29 +08:00
|
|
|
|
Support for savepoints in SQLite
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Django 1.6 adds support for savepoints in SQLite, with some :ref:`limitations
|
|
|
|
|
<savepoints-in-sqlite>`.
|
|
|
|
|
|
2012-12-14 05:11:06 +08:00
|
|
|
|
``BinaryField`` model field
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
A new :class:`django.db.models.BinaryField` model field allows storage of raw
|
2012-12-14 05:11:06 +08:00
|
|
|
|
binary data in the database.
|
|
|
|
|
|
2013-03-16 18:39:18 +08:00
|
|
|
|
GeoDjango form widgets
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
GeoDjango now provides :ref:`form fields and widgets <ref-gis-forms-api>` for
|
|
|
|
|
its geo-specialized fields. They are OpenLayers-based by default, but they can
|
|
|
|
|
be customized to use any other JS framework.
|
|
|
|
|
|
2013-06-25 09:37:54 +08:00
|
|
|
|
``check`` management command added for verifying compatibility
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2013-06-14 09:39:02 +08:00
|
|
|
|
|
2013-07-13 00:48:49 +08:00
|
|
|
|
A :djadmin:`check` management command was added, enabling you to verify if your
|
2013-06-14 09:39:02 +08:00
|
|
|
|
current configuration (currently oriented at settings) is compatible with the
|
|
|
|
|
current version of Django.
|
|
|
|
|
|
2013-08-30 14:41:07 +08:00
|
|
|
|
:meth:`Model.save() <django.db.models.Model.save()>` algorithm changed
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The :meth:`Model.save() <django.db.models.Model.save()>` method now
|
|
|
|
|
tries to directly ``UPDATE`` the database if the instance has a primary
|
|
|
|
|
key value. Previously ``SELECT`` was performed to determine if ``UPDATE``
|
|
|
|
|
or ``INSERT`` were needed. The new algorithm needs only one query for
|
|
|
|
|
updating an existing row while the old algorithm needed two. See
|
|
|
|
|
:meth:`Model.save() <django.db.models.Model.save()>` for more details.
|
|
|
|
|
|
|
|
|
|
In some rare cases the database doesn't report that a matching row was
|
|
|
|
|
found when doing an ``UPDATE``. An example is the PostgreSQL ``ON UPDATE``
|
|
|
|
|
trigger which returns ``NULL``. In such cases it is possible to set
|
|
|
|
|
:attr:`django.db.models.Options.select_on_save` flag to force saving to
|
|
|
|
|
use the old algorithm.
|
|
|
|
|
|
2012-11-18 03:24:54 +08:00
|
|
|
|
Minor features
|
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* Authentication backends can raise ``PermissionDenied`` to immediately fail
|
|
|
|
|
the authentication chain.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* The ``HttpOnly`` flag can be set on the CSRF cookie with
|
2013-02-07 16:48:08 +08:00
|
|
|
|
:setting:`CSRF_COOKIE_HTTPONLY`.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* The :meth:`~django.test.TransactionTestCase.assertQuerysetEqual` now checks
|
2014-04-26 22:00:15 +08:00
|
|
|
|
for undefined order and raises :exc:`ValueError` if undefined
|
2013-06-06 00:55:50 +08:00
|
|
|
|
order is spotted. The order is seen as undefined if the given ``QuerySet``
|
|
|
|
|
isn't ordered and there are more than one ordered values to compare against.
|
2012-12-13 19:33:11 +08:00
|
|
|
|
|
2013-01-12 16:37:19 +08:00
|
|
|
|
* Added :meth:`~django.db.models.query.QuerySet.earliest` for symmetry with
|
|
|
|
|
:meth:`~django.db.models.query.QuerySet.latest`.
|
|
|
|
|
|
2013-02-10 23:15:49 +08:00
|
|
|
|
* In addition to :lookup:`year`, :lookup:`month` and :lookup:`day`, the ORM
|
|
|
|
|
now supports :lookup:`hour`, :lookup:`minute` and :lookup:`second` lookups.
|
|
|
|
|
|
Refactored database exceptions wrapping.
Squashed commit of the following:
commit 2181d833ed1a2e422494738dcef311164c4e097e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Wed Feb 27 14:28:39 2013 +0100
Fixed #15901 -- Wrapped all PEP-249 exceptions.
commit 5476a5d93c19aa2f928c497d39ce6e33f52694e2
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 17:26:52 2013 +0100
Added PEP 3134 exception chaining.
Thanks Jacob Kaplan-Moss for the suggestion.
commit 9365fad0a650328002fb424457d675a273c95802
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 17:13:49 2013 +0100
Improved API for wrapping database errors.
Thanks Alex Gaynor for the proposal.
commit 1b463b765f2826f73a8d9266795cd5da4f8d5e9e
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 15:00:39 2013 +0100
Removed redundant exception wrapping.
This is now taken care of by the cursor wrapper.
commit 524bc7345a724bf526bdd2dd1bcf5ede67d6bb5c
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 14:55:10 2013 +0100
Wrapped database exceptions in the base backend.
This covers the most common PEP-249 APIs:
- Connection APIs: close(), commit(), rollback(), cursor()
- Cursor APIs: callproc(), close(), execute(), executemany(),
fetchone(), fetchmany(), fetchall(), nextset().
Fixed #19920.
commit a66746bb5f0839f35543222787fce3b6a0d0a3ea
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Feb 26 14:53:34 2013 +0100
Added a wrap_database_exception context manager and decorator.
It re-throws backend-specific exceptions using Django's common wrappers.
2013-02-26 21:53:34 +08:00
|
|
|
|
* Django now wraps all PEP-249 exceptions.
|
|
|
|
|
|
2013-02-23 16:45:56 +08:00
|
|
|
|
* The default widgets for :class:`~django.forms.EmailField`,
|
|
|
|
|
:class:`~django.forms.URLField`, :class:`~django.forms.IntegerField`,
|
|
|
|
|
:class:`~django.forms.FloatField` and :class:`~django.forms.DecimalField` use
|
2013-06-06 00:55:50 +08:00
|
|
|
|
the new type attributes available in HTML5 (``type='email'``, ``type='url'``,
|
|
|
|
|
``type='number'``). Note that due to erratic support of the ``number``
|
|
|
|
|
input type with localized numbers in current browsers, Django only uses it
|
|
|
|
|
when numeric fields are not localized.
|
2013-01-28 21:12:56 +08:00
|
|
|
|
|
2013-01-31 03:28:16 +08:00
|
|
|
|
* The ``number`` argument for :ref:`lazy plural translations
|
|
|
|
|
<lazy-plural-translations>` can be provided at translation time rather than
|
|
|
|
|
at definition time.
|
|
|
|
|
|
2013-02-04 19:55:45 +08:00
|
|
|
|
* For custom management commands: Verification of the presence of valid
|
|
|
|
|
settings in commands that ask for it by using the
|
2013-02-04 07:53:48 +08:00
|
|
|
|
:attr:`~django.core.management.BaseCommand.can_import_settings` internal
|
2013-02-04 19:55:45 +08:00
|
|
|
|
option is now performed independently from handling of the locale that
|
|
|
|
|
should be active during the execution of the command. The latter can now be
|
|
|
|
|
influenced by the new
|
|
|
|
|
:attr:`~django.core.management.BaseCommand.leave_locale_alone` internal
|
|
|
|
|
option. See :ref:`management-commands-and-locales` for more details.
|
2013-02-04 07:53:48 +08:00
|
|
|
|
|
2013-02-11 15:39:14 +08:00
|
|
|
|
* The :attr:`~django.views.generic.edit.DeletionMixin.success_url` of
|
|
|
|
|
:class:`~django.views.generic.edit.DeletionMixin` is now interpolated with
|
2013-08-06 00:23:26 +08:00
|
|
|
|
its ``object``’s ``__dict__``.
|
2013-02-11 15:39:14 +08:00
|
|
|
|
|
2013-02-13 16:55:43 +08:00
|
|
|
|
* :class:`~django.http.HttpResponseRedirect` and
|
|
|
|
|
:class:`~django.http.HttpResponsePermanentRedirect` now provide an ``url``
|
|
|
|
|
attribute (equivalent to the URL the response will redirect to).
|
|
|
|
|
|
2013-02-24 20:36:04 +08:00
|
|
|
|
* The ``MemcachedCache`` cache backend now uses the latest :mod:`pickle`
|
|
|
|
|
protocol available.
|
|
|
|
|
|
2013-03-19 06:48:47 +08:00
|
|
|
|
* Added :class:`~django.contrib.messages.views.SuccessMessageMixin` which
|
|
|
|
|
provides a ``success_message`` attribute for
|
2013-03-25 01:49:31 +08:00
|
|
|
|
:class:`~django.views.generic.edit.FormView` based classes.
|
2013-03-19 06:48:47 +08:00
|
|
|
|
|
2013-03-08 03:24:51 +08:00
|
|
|
|
* Added the :attr:`django.db.models.ForeignKey.db_constraint` and
|
|
|
|
|
:attr:`django.db.models.ManyToManyField.db_constraint` options.
|
2013-02-21 03:27:32 +08:00
|
|
|
|
|
2013-02-23 04:52:20 +08:00
|
|
|
|
* The jQuery library embedded in the admin has been upgraded to version 1.9.1.
|
|
|
|
|
|
2013-02-25 00:02:10 +08:00
|
|
|
|
* Syndication feeds (:mod:`django.contrib.syndication`) can now pass extra
|
2013-06-06 00:55:50 +08:00
|
|
|
|
context through to feed templates using a new
|
|
|
|
|
:meth:`Feed.get_context_data()
|
|
|
|
|
<django.contrib.syndication.Feed.get_context_data>` callback.
|
2013-02-24 22:32:52 +08:00
|
|
|
|
|
2013-02-25 00:31:26 +08:00
|
|
|
|
* The admin list columns have a ``column-<field_name>`` class in the HTML
|
|
|
|
|
so the columns header can be styled with CSS, e.g. to set a column width.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* The :ref:`isolation level<database-isolation-level>` can be customized under
|
|
|
|
|
PostgreSQL.
|
2013-03-02 22:00:28 +08:00
|
|
|
|
|
2013-03-04 03:44:44 +08:00
|
|
|
|
* The :ttag:`blocktrans` template tag now respects
|
|
|
|
|
:setting:`TEMPLATE_STRING_IF_INVALID` for variables not present in the
|
|
|
|
|
context, just like other template constructs.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* ``SimpleLazyObject``\s will now present more helpful representations in shell
|
2013-03-07 08:00:05 +08:00
|
|
|
|
debugging situations.
|
|
|
|
|
|
2013-03-09 23:01:33 +08:00
|
|
|
|
* Generic :class:`~django.contrib.gis.db.models.GeometryField` is now editable
|
|
|
|
|
with the OpenLayers widget in the admin.
|
|
|
|
|
|
2013-03-18 01:21:05 +08:00
|
|
|
|
* The documentation contains a :doc:`deployment checklist
|
|
|
|
|
</howto/deployment/checklist>`.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* The :djadmin:`diffsettings` command gained a ``--all`` option.
|
2013-03-18 03:48:30 +08:00
|
|
|
|
|
2013-03-25 01:49:31 +08:00
|
|
|
|
* ``django.forms.fields.Field.__init__`` now calls ``super()``, allowing
|
2013-03-19 05:22:26 +08:00
|
|
|
|
field mixins to implement ``__init__()`` methods that will reliably be
|
|
|
|
|
called.
|
|
|
|
|
|
Fixed #20084 -- Provided option to validate formset max_num on server.
This is provided as a new "validate_max" formset_factory option defaulting to
False, since the non-validating behavior of max_num is longstanding, and there
is certainly code relying on it. (In fact, even the Django admin relies on it
for the case where there are more existing inlines than the given max_num). It
may be that at some point we want to deprecate validate_max=False and
eventually remove the option, but this commit takes no steps in that direction.
This also fixes the DoS-prevention absolute_max enforcement so that it causes a
form validation error rather than an IndexError, and ensures that absolute_max
is always 1000 more than max_num, to prevent surprising changes in behavior
with max_num close to absolute_max.
Lastly, this commit fixes the previous inconsistency between a regular formset
and a model formset in the precedence of max_num and initial data. Previously
in a regular formset, if the provided initial data was longer than max_num, it
was truncated; in a model formset, all initial forms would be displayed
regardless of max_num. Now regular formsets are the same as model formsets; all
initial forms are displayed, even if more than max_num. (But if validate_max is
True, submitting these forms will result in a "too many forms" validation
error!) This combination of behaviors was chosen to keep the max_num validation
simple and consistent, and avoid silent data loss due to truncation of initial
data.
Thanks to Preston for discussion of the design choices.
2013-03-21 14:27:06 +08:00
|
|
|
|
* The ``validate_max`` parameter was added to ``BaseFormSet`` and
|
|
|
|
|
:func:`~django.forms.formsets.formset_factory`, and ``ModelForm`` and inline
|
|
|
|
|
versions of the same. The behavior of validation for formsets with
|
|
|
|
|
``max_num`` was clarified. The previously undocumented behavior that
|
|
|
|
|
hardened formsets against memory exhaustion attacks was documented,
|
|
|
|
|
and the undocumented limit of the higher of 1000 or ``max_num`` forms
|
|
|
|
|
was changed so it is always 1000 more than ``max_num``.
|
|
|
|
|
|
2013-03-26 23:44:26 +08:00
|
|
|
|
* Added ``BCryptSHA256PasswordHasher`` to resolve the password truncation issue
|
|
|
|
|
with bcrypt.
|
|
|
|
|
|
2013-05-15 10:31:16 +08:00
|
|
|
|
* `Pillow`_ is now the preferred image manipulation library to use with Django.
|
|
|
|
|
`PIL`_ is pending deprecation (support to be removed in Django 1.8).
|
|
|
|
|
To upgrade, you should **first** uninstall PIL, **then** install Pillow.
|
|
|
|
|
|
|
|
|
|
.. _`Pillow`: https://pypi.python.org/pypi/Pillow
|
|
|
|
|
.. _`PIL`: https://pypi.python.org/pypi/PIL
|
|
|
|
|
|
2013-04-04 03:51:37 +08:00
|
|
|
|
* :class:`~django.forms.ModelForm` accepts several new ``Meta``
|
|
|
|
|
options.
|
|
|
|
|
|
|
|
|
|
* Fields included in the ``localized_fields`` list will be localized
|
|
|
|
|
(by setting ``localize`` on the form field).
|
|
|
|
|
* The ``labels``, ``help_texts`` and ``error_messages`` options may be used
|
|
|
|
|
to customize the default fields, see
|
|
|
|
|
:ref:`modelforms-overriding-default-fields` for details.
|
2013-05-18 20:13:00 +08:00
|
|
|
|
|
2013-05-18 03:31:41 +08:00
|
|
|
|
* The ``choices`` argument to model fields now accepts an iterable of iterables
|
|
|
|
|
instead of requiring an iterable of lists or tuples.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* The reason phrase can be customized in HTTP responses using
|
|
|
|
|
:attr:`~django.http.HttpResponse.reason_phrase`.
|
2013-05-19 18:58:13 +08:00
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* When giving the URL of the next page for
|
|
|
|
|
:func:`~django.contrib.auth.views.logout`,
|
2013-05-19 18:57:06 +08:00
|
|
|
|
:func:`~django.contrib.auth.views.password_reset`,
|
|
|
|
|
:func:`~django.contrib.auth.views.password_reset_confirm`,
|
|
|
|
|
and :func:`~django.contrib.auth.views.password_change`, you can now pass
|
|
|
|
|
URL names and they will be resolved.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* The :djadmin:`dumpdata` ``manage.py`` command now has a :djadminopt:`--pks`
|
|
|
|
|
option which will allow users to specify the primary keys of objects they
|
|
|
|
|
want to dump. This option can only be used with one model.
|
2013-05-19 18:39:14 +08:00
|
|
|
|
|
2013-05-21 23:35:12 +08:00
|
|
|
|
* Added ``QuerySet`` methods :meth:`~django.db.models.query.QuerySet.first`
|
|
|
|
|
and :meth:`~django.db.models.query.QuerySet.last` which are convenience
|
|
|
|
|
methods returning the first or last object matching the filters. Returns
|
|
|
|
|
``None`` if there are no objects matching.
|
|
|
|
|
|
2013-05-22 00:01:29 +08:00
|
|
|
|
* :class:`~django.views.generic.base.View` and
|
2013-06-06 00:55:50 +08:00
|
|
|
|
:class:`~django.views.generic.base.RedirectView` now support HTTP ``PATCH``
|
|
|
|
|
method.
|
2013-05-22 00:01:29 +08:00
|
|
|
|
|
2014-01-22 14:43:33 +08:00
|
|
|
|
* ``GenericForeignKey`` now takes an optional ``for_concrete_model`` argument,
|
|
|
|
|
which when set to ``False`` allows the field to reference proxy models. The
|
|
|
|
|
default is ``True`` to retain the old behavior.
|
2013-05-21 01:51:05 +08:00
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* The :class:`~django.middleware.locale.LocaleMiddleware` now stores the active
|
|
|
|
|
language in session if it is not present there. This prevents loss of
|
|
|
|
|
language settings after session flush, e.g. logout.
|
2013-03-25 22:45:24 +08:00
|
|
|
|
|
2013-05-16 07:14:28 +08:00
|
|
|
|
* :exc:`~django.core.exceptions.SuspiciousOperation` has been differentiated
|
|
|
|
|
into a number of subclasses, and each will log to a matching named logger
|
|
|
|
|
under the ``django.security`` logging hierarchy. Along with this change,
|
|
|
|
|
a ``handler400`` mechanism and default view are used whenever
|
|
|
|
|
a ``SuspiciousOperation`` reaches the WSGI handler to return an
|
|
|
|
|
``HttpResponseBadRequest``.
|
|
|
|
|
|
2013-05-25 01:30:37 +08:00
|
|
|
|
* The :exc:`~django.core.exceptions.DoesNotExist` exception now includes a
|
|
|
|
|
message indicating the name of the attribute used for the lookup.
|
|
|
|
|
|
2013-05-25 04:36:09 +08:00
|
|
|
|
* The :meth:`~django.db.models.query.QuerySet.get_or_create` method no longer
|
|
|
|
|
requires at least one keyword argument.
|
|
|
|
|
|
2013-02-09 07:45:26 +08:00
|
|
|
|
* The :class:`~django.test.SimpleTestCase` class includes a new assertion
|
|
|
|
|
helper for testing formset errors:
|
|
|
|
|
:meth:`~django.test.SimpleTestCase.assertFormsetError`.
|
|
|
|
|
|
2013-05-30 23:05:42 +08:00
|
|
|
|
* The list of related fields added to a
|
|
|
|
|
:class:`~django.db.models.query.QuerySet` by
|
|
|
|
|
:meth:`~django.db.models.query.QuerySet.select_related` can be cleared using
|
|
|
|
|
``select_related(None)``.
|
|
|
|
|
|
2013-06-02 06:16:57 +08:00
|
|
|
|
* The :meth:`~django.contrib.admin.InlineModelAdmin.get_extra` and
|
|
|
|
|
:meth:`~django.contrib.admin.InlineModelAdmin.get_max_num` methods on
|
2013-05-31 01:48:10 +08:00
|
|
|
|
:class:`~django.contrib.admin.InlineModelAdmin` may be overridden to
|
2013-06-02 06:16:57 +08:00
|
|
|
|
customize the extra and maximum number of inline forms.
|
2013-05-31 01:48:10 +08:00
|
|
|
|
|
2013-06-16 04:34:25 +08:00
|
|
|
|
* Formsets now have a
|
|
|
|
|
:meth:`~django.forms.formsets.BaseFormSet.total_error_count` method.
|
|
|
|
|
|
2013-06-06 02:55:05 +08:00
|
|
|
|
* :class:`~django.forms.ModelForm` fields can now override error messages
|
|
|
|
|
defined in model fields by using the
|
2013-08-06 00:23:26 +08:00
|
|
|
|
:attr:`~django.forms.Field.error_messages` argument of a ``Field``’s
|
2013-06-06 02:55:05 +08:00
|
|
|
|
constructor. To take advantage of this new feature with your custom fields,
|
|
|
|
|
:ref:`see the updated recommendation <raising-validation-error>` for raising
|
|
|
|
|
a ``ValidationError``.
|
|
|
|
|
|
2013-06-19 03:41:36 +08:00
|
|
|
|
* :class:`~django.contrib.admin.ModelAdmin` now preserves filters on the list view
|
|
|
|
|
after creating, editing or deleting an object. It's possible to restore the previous
|
|
|
|
|
behavior of clearing filters by setting the
|
|
|
|
|
:attr:`~django.contrib.admin.ModelAdmin.preserve_filters` attribute to ``False``.
|
|
|
|
|
|
2013-06-25 19:50:43 +08:00
|
|
|
|
* Added
|
|
|
|
|
:meth:`FormMixin.get_prefix<django.views.generic.edit.FormMixin.get_prefix>`
|
|
|
|
|
(which returns
|
|
|
|
|
:attr:`FormMixin.prefix<django.views.generic.edit.FormMixin.prefix>` by
|
|
|
|
|
default) to allow customizing the :attr:`~django.forms.Form.prefix` of the
|
|
|
|
|
form.
|
|
|
|
|
|
2013-07-03 02:14:56 +08:00
|
|
|
|
* Raw queries (``Manager.raw()`` or ``cursor.execute()``) can now use the
|
|
|
|
|
"pyformat" parameter style, where placeholders in the query are given as
|
2013-06-28 11:15:03 +08:00
|
|
|
|
``'%(name)s'`` and the parameters are passed as a dictionary rather than
|
|
|
|
|
a list (except on SQLite). This has long been possible (but not officially
|
|
|
|
|
supported) on MySQL and PostgreSQL, and is now also available on Oracle.
|
|
|
|
|
|
2013-09-20 00:39:43 +08:00
|
|
|
|
* The default iteration count for the PBKDF2 password hasher has been
|
|
|
|
|
increased by 20%. This backwards compatible change will not affect
|
|
|
|
|
existing passwords or users who have subclassed
|
2013-10-18 20:47:28 +08:00
|
|
|
|
``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to change the
|
2013-10-18 21:09:56 +08:00
|
|
|
|
default value. Passwords :ref:`will be upgraded <password-upgrades>` to use
|
|
|
|
|
the new iteration count as necessary.
|
2013-09-20 00:39:43 +08:00
|
|
|
|
|
2012-10-30 21:02:54 +08:00
|
|
|
|
Backwards incompatible changes in 1.6
|
|
|
|
|
=====================================
|
|
|
|
|
|
2013-03-11 19:04:29 +08:00
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
|
|
In addition to the changes outlined in this section, be sure to review the
|
2014-05-30 06:58:12 +08:00
|
|
|
|
:ref:`deprecation plan <deprecation-removed-in-1.6>` for any features that
|
2013-03-11 19:04:29 +08:00
|
|
|
|
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.
|
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
New transaction management model
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2013-03-24 20:08:29 +08:00
|
|
|
|
Behavior changes
|
|
|
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
Database-level autocommit is enabled by default in Django 1.6. While this
|
|
|
|
|
doesn't change the general spirit of Django's transaction management, there
|
2013-06-06 00:55:50 +08:00
|
|
|
|
are a few known backwards-incompatibilities, described in the :ref:`transaction
|
2013-03-17 18:05:41 +08:00
|
|
|
|
management docs <transactions-upgrading-from-1.5>`. You should review your
|
|
|
|
|
code to determine if you're affected.
|
|
|
|
|
|
2013-03-24 20:08:29 +08:00
|
|
|
|
Savepoints and ``assertNumQueries``
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
The changes in transaction management may result in additional statements to
|
|
|
|
|
create, release or rollback savepoints. This is more likely to happen with
|
|
|
|
|
SQLite, since it didn't support savepoints until this release.
|
|
|
|
|
|
2013-05-19 06:04:34 +08:00
|
|
|
|
If tests using :meth:`~django.test.TransactionTestCase.assertNumQueries` fail
|
|
|
|
|
because of a higher number of queries than expected, check that the extra
|
|
|
|
|
queries are related to savepoints, and adjust the expected number of queries
|
|
|
|
|
accordingly.
|
2013-03-24 20:08:29 +08:00
|
|
|
|
|
|
|
|
|
Autocommit option for PostgreSQL
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
In previous versions, database-level autocommit was only an option for
|
2014-03-24 23:42:56 +08:00
|
|
|
|
PostgreSQL, and it was disabled by default. This option is now ignored and can
|
|
|
|
|
be removed.
|
2013-03-17 18:05:41 +08:00
|
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
|
.. _new-test-runner:
|
|
|
|
|
|
|
|
|
|
New test runner
|
|
|
|
|
~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
In order to maintain greater consistency with Python's unittest module, the new
|
|
|
|
|
test runner (``django.test.runner.DiscoverRunner``) does not automatically
|
|
|
|
|
support some types of tests that were supported by the previous runner:
|
|
|
|
|
|
|
|
|
|
* Tests in ``models.py`` and ``tests/__init__.py`` files will no longer be
|
|
|
|
|
found and run. Move them to a file whose name begins with ``test``.
|
|
|
|
|
|
|
|
|
|
* Doctests will no longer be automatically discovered. To integrate doctests in
|
|
|
|
|
your test suite, follow the `recommendations in the Python documentation`_.
|
|
|
|
|
|
|
|
|
|
Django bundles a modified version of the :mod:`doctest` module from the Python
|
2013-05-28 04:41:39 +08:00
|
|
|
|
standard library (in ``django.test._doctest``) and includes some additional
|
|
|
|
|
doctest utilities. These utilities are deprecated and will be removed in Django
|
|
|
|
|
1.8; doctest suites should be updated to work with the standard library's
|
|
|
|
|
doctest module (or converted to unittest-compatible tests).
|
2013-05-11 11:08:45 +08:00
|
|
|
|
|
|
|
|
|
If you wish to delay updates to your test suite, you can set your
|
|
|
|
|
:setting:`TEST_RUNNER` setting to ``django.test.simple.DjangoTestSuiteRunner``
|
2013-05-28 04:41:39 +08:00
|
|
|
|
to fully restore the old test behavior. ``DjangoTestSuiteRunner`` is deprecated
|
|
|
|
|
but will not be removed from Django until version 1.8.
|
2013-05-11 11:08:45 +08:00
|
|
|
|
|
|
|
|
|
.. _recommendations in the Python documentation: http://docs.python.org/2/library/doctest.html#unittest-api
|
|
|
|
|
|
2014-04-08 22:08:25 +08:00
|
|
|
|
Removal of ``django.contrib.gis.tests.GeoDjangoTestSuiteRunner`` GeoDjango custom test runner
|
2014-04-03 04:11:49 +08:00
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
This is for developers working on the GeoDjango application itself and related
|
|
|
|
|
to the item above about changes in the test runners:
|
|
|
|
|
|
|
|
|
|
The ``django.contrib.gis.tests.GeoDjangoTestSuiteRunner`` test runner has been
|
|
|
|
|
removed and the standalone GeoDjango tests execution setup it implemented isn't
|
|
|
|
|
supported anymore. To run the GeoDjango tests simply use the new
|
2014-05-11 10:13:50 +08:00
|
|
|
|
``DiscoverRunner`` and specify the ``django.contrib.gis`` app.
|
2014-04-03 04:11:49 +08:00
|
|
|
|
|
2013-10-08 10:32:56 +08:00
|
|
|
|
Custom User models in tests
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The introduction of the new test runner has also slightly changed the way that
|
|
|
|
|
test models are imported. As a result, any test that overrides ``AUTH_USER_MODEL``
|
|
|
|
|
to test behavior with one of Django's test user models (
|
|
|
|
|
:class:`~django.contrib.auth.tests.custom_user.CustomUser` and
|
|
|
|
|
:class:`~django.contrib.auth.tests.custom_user.ExtensionUser`) must now
|
|
|
|
|
explicitly import the User model in your test module::
|
|
|
|
|
|
|
|
|
|
from django.contrib.auth.tests.custom_user import CustomUser
|
|
|
|
|
|
|
|
|
|
@override_settings(AUTH_USER_MODEL='auth.CustomUser')
|
|
|
|
|
class CustomUserFeatureTests(TestCase):
|
|
|
|
|
def test_something(self):
|
|
|
|
|
# Test code here ...
|
|
|
|
|
|
|
|
|
|
This import forces the custom user model to be registered. Without this import,
|
|
|
|
|
the test will be unable to swap in the custom user model, and you will get an
|
|
|
|
|
error reporting::
|
|
|
|
|
|
|
|
|
|
ImproperlyConfigured: AUTH_USER_MODEL refers to model 'auth.CustomUser' that has not been installed
|
|
|
|
|
|
2013-09-12 21:27:35 +08:00
|
|
|
|
Time zone-aware ``day``, ``month``, and ``week_day`` lookups
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Django 1.6 introduces time zone support for :lookup:`day`, :lookup:`month`,
|
|
|
|
|
and :lookup:`week_day` lookups when :setting:`USE_TZ` is ``True``. These
|
|
|
|
|
lookups were previously performed in UTC regardless of the current time zone.
|
|
|
|
|
|
|
|
|
|
This requires :ref:`time zone definitions in the database
|
|
|
|
|
<database-time-zone-definitions>`. If you're using SQLite, you must install
|
|
|
|
|
pytz_. If you're using MySQL, you must install pytz_ and load the time zone
|
|
|
|
|
tables with `mysql_tzinfo_to_sql`_.
|
|
|
|
|
|
|
|
|
|
.. _pytz: http://pytz.sourceforge.net/
|
|
|
|
|
.. _mysql_tzinfo_to_sql: http://dev.mysql.com/doc/refman/5.5/en/mysql-tzinfo-to-sql.html
|
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
Addition of ``QuerySet.datetimes()``
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
When the :doc:`time zone support </topics/i18n/timezones>` added in Django 1.4
|
|
|
|
|
was active, :meth:`QuerySet.dates() <django.db.models.query.QuerySet.dates>`
|
|
|
|
|
lookups returned unexpected results, because the aggregation was performed in
|
|
|
|
|
UTC. To fix this, Django 1.6 introduces a new API, :meth:`QuerySet.datetimes()
|
|
|
|
|
<django.db.models.query.QuerySet.datetimes>`. This requires a few changes in
|
|
|
|
|
your code.
|
2013-03-03 22:55:11 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
``QuerySet.dates()`` returns ``date`` objects
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2013-03-03 22:55:11 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
:meth:`QuerySet.dates() <django.db.models.query.QuerySet.dates>` now returns a
|
|
|
|
|
list of :class:`~datetime.date`. It used to return a list of
|
|
|
|
|
:class:`~datetime.datetime`.
|
2012-10-24 05:04:37 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
:meth:`QuerySet.datetimes() <django.db.models.query.QuerySet.datetimes>`
|
|
|
|
|
returns a list of :class:`~datetime.datetime`.
|
2013-02-10 23:15:49 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
``QuerySet.dates()`` no longer usable on ``DateTimeField``
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2013-02-10 23:15:49 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
:meth:`QuerySet.dates() <django.db.models.query.QuerySet.dates>` raises an
|
|
|
|
|
error if it's used on :class:`~django.db.models.DateTimeField` when time
|
|
|
|
|
zone support is active. Use :meth:`QuerySet.datetimes()
|
|
|
|
|
<django.db.models.query.QuerySet.datetimes>` instead.
|
2013-02-10 23:15:49 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
``date_hierarchy`` requires time zone definitions
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2013-02-10 23:15:49 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
The :attr:`~django.contrib.admin.ModelAdmin.date_hierarchy` feature of the
|
|
|
|
|
admin now relies on :meth:`QuerySet.datetimes()
|
|
|
|
|
<django.db.models.query.QuerySet.datetimes>` when it's used on a
|
|
|
|
|
:class:`~django.db.models.DateTimeField`.
|
2013-02-10 23:15:49 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
This requires time zone definitions in the database when :setting:`USE_TZ` is
|
|
|
|
|
``True``. :ref:`Learn more <database-time-zone-definitions>`.
|
2013-02-18 18:37:26 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
``date_list`` in generic views requires time zone definitions
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2013-01-28 21:12:56 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
For the same reason, accessing ``date_list`` in the context of a date-based
|
|
|
|
|
generic view requires time zone definitions in the database when the view is
|
|
|
|
|
based on a :class:`~django.db.models.DateTimeField` and :setting:`USE_TZ` is
|
|
|
|
|
``True``. :ref:`Learn more <database-time-zone-definitions>`.
|
2013-01-21 02:07:10 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
New lookups may clash with model fields
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Django 1.6 introduces ``hour``, ``minute``, and ``second`` lookups on
|
|
|
|
|
:class:`~django.db.models.DateTimeField`. If you had model fields called
|
|
|
|
|
``hour``, ``minute``, or ``second``, the new lookups will clash with you field
|
|
|
|
|
names. Append an explicit :lookup:`exact` lookup if this is an issue.
|
|
|
|
|
|
2013-03-24 20:47:01 +08:00
|
|
|
|
``BooleanField`` no longer defaults to ``False``
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
When a :class:`~django.db.models.BooleanField` doesn't have an explicit
|
|
|
|
|
:attr:`~django.db.models.Field.default`, the implicit default value is
|
|
|
|
|
``None``. In previous version of Django, it was ``False``, but that didn't
|
2013-03-24 21:30:04 +08:00
|
|
|
|
represent accurately the lack of a value.
|
2013-03-24 20:47:01 +08:00
|
|
|
|
|
|
|
|
|
Code that relies on the default value being ``False`` may raise an exception
|
|
|
|
|
when saving new model instances to the database, because ``None`` isn't an
|
|
|
|
|
acceptable value for a :class:`~django.db.models.BooleanField`. You should
|
2013-03-24 21:30:04 +08:00
|
|
|
|
either specify ``default=False`` in the field definition, or ensure the field
|
|
|
|
|
is set to ``True`` or ``False`` before saving the object.
|
2013-03-24 20:47:01 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
Translations and comments in templates
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Extraction of translations after comments
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
Extraction of translatable literals from templates with the
|
|
|
|
|
:djadmin:`makemessages` command now correctly detects i18n constructs when
|
|
|
|
|
they are located after a ``{#`` / ``#}``-type comment on the same line. E.g.:
|
|
|
|
|
|
|
|
|
|
.. code-block:: html+django
|
2013-01-21 02:07:10 +08:00
|
|
|
|
|
|
|
|
|
{# A comment #}{% trans "This literal was incorrectly ignored. Not anymore" %}
|
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
Location of translator comments
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2013-05-31 19:43:05 +08:00
|
|
|
|
:ref:`translator-comments-in-templates` specified using ``{#`` / ``#}`` need to
|
|
|
|
|
be at the end of a line. If they are not, the comments are ignored and
|
|
|
|
|
:djadmin:`makemessages` will generate a warning. For example:
|
2013-01-21 02:07:10 +08:00
|
|
|
|
|
2013-03-24 21:30:04 +08:00
|
|
|
|
.. code-block:: html+django
|
2013-01-21 02:07:10 +08:00
|
|
|
|
|
|
|
|
|
{# Translators: This is ignored #}{% trans "Translate me" %}
|
|
|
|
|
{{ title }}{# Translators: Extracted and associated with 'Welcome' below #}
|
|
|
|
|
<h1>{% trans "Welcome" %}</h1>
|
|
|
|
|
|
2013-03-19 04:52:16 +08:00
|
|
|
|
Quoting in :func:`~django.core.urlresolvers.reverse`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
When reversing URLs, Django didn't apply :func:`~django.utils.http.urlquote`
|
|
|
|
|
to arguments before interpolating them in URL patterns. This bug is fixed in
|
|
|
|
|
Django 1.6. If you worked around this bug by applying URL quoting before
|
|
|
|
|
passing arguments to :func:`~django.core.urlresolvers.reverse`, this may
|
|
|
|
|
result in double-quoting. If this happens, simply remove the URL quoting from
|
2014-03-24 21:06:57 +08:00
|
|
|
|
your code. You will also have to replace special characters in URLs used in
|
|
|
|
|
:func:`~django.test.SimpleTestCase.assertRedirects` with their encoded versions.
|
2013-03-19 04:52:16 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
Storage of IP addresses in the comments app
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2013-02-24 20:20:41 +08:00
|
|
|
|
|
2014-03-21 19:05:36 +08:00
|
|
|
|
The comments app now uses a
|
2013-03-17 18:05:41 +08:00
|
|
|
|
``GenericIPAddressField`` for storing commenters' IP addresses, to support
|
|
|
|
|
comments submitted from IPv6 addresses. Until now, it stored them in an
|
|
|
|
|
``IPAddressField``, which is only meant to support IPv4. When saving a comment
|
|
|
|
|
made from an IPv6 address, the address would be silently truncated on MySQL
|
|
|
|
|
databases, and raise an exception on Oracle. You will need to change the
|
|
|
|
|
column type in your database to benefit from this change.
|
2013-02-24 20:20:41 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
For MySQL, execute this query on your project's database:
|
|
|
|
|
|
|
|
|
|
.. code-block:: sql
|
2013-02-24 20:20:41 +08:00
|
|
|
|
|
|
|
|
|
ALTER TABLE django_comments MODIFY ip_address VARCHAR(39);
|
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
For Oracle, execute this query:
|
2013-02-24 20:20:41 +08:00
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
.. code-block:: sql
|
2013-02-24 20:20:41 +08:00
|
|
|
|
|
|
|
|
|
ALTER TABLE DJANGO_COMMENTS MODIFY (ip_address VARCHAR2(39));
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
If you do not apply this change, the behavior is unchanged: on MySQL, IPv6
|
2013-03-17 18:05:41 +08:00
|
|
|
|
addresses are silently truncated; on Oracle, an exception is generated. No
|
|
|
|
|
database change is needed for SQLite or PostgreSQL databases.
|
|
|
|
|
|
2013-04-05 20:15:30 +08:00
|
|
|
|
Percent literals in ``cursor.execute`` queries
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
When you are running raw SQL queries through the
|
|
|
|
|
:ref:`cursor.execute <executing-custom-sql>` method, the rule about doubling
|
|
|
|
|
percent literals (``%``) inside the query has been unified. Past behavior
|
|
|
|
|
depended on the database backend. Now, across all backends, you only need to
|
|
|
|
|
double literal percent characters if you are also providing replacement
|
|
|
|
|
parameters. For example::
|
|
|
|
|
|
|
|
|
|
# No parameters, no percent doubling
|
|
|
|
|
cursor.execute("SELECT foo FROM bar WHERE baz = '30%'")
|
|
|
|
|
|
|
|
|
|
# Parameters passed, non-placeholders have to be doubled
|
|
|
|
|
cursor.execute("SELECT foo FROM bar WHERE baz = '30%%' and id = %s", [self.id])
|
|
|
|
|
|
|
|
|
|
``SQLite`` users need to check and update such queries.
|
|
|
|
|
|
2013-04-15 21:54:37 +08:00
|
|
|
|
.. _m2m-help_text:
|
|
|
|
|
|
|
|
|
|
Help text of model form fields for ManyToManyField fields
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
HTML rendering of model form fields corresponding to
|
2014-03-29 22:17:19 +08:00
|
|
|
|
:class:`~django.db.models.ManyToManyField` model fields used to get the
|
|
|
|
|
hard-coded sentence:
|
2013-04-15 21:54:37 +08:00
|
|
|
|
|
|
|
|
|
*Hold down "Control", or "Command" on a Mac, to select more than one.*
|
|
|
|
|
|
|
|
|
|
(or its translation to the active locale) imposed as the help legend shown along
|
|
|
|
|
them if neither :attr:`model <django.db.models.Field.help_text>` nor :attr:`form
|
2014-03-29 22:17:19 +08:00
|
|
|
|
<django.forms.Field.help_text>` ``help_text`` attributes were specified by the
|
|
|
|
|
user (or this string was appended to any ``help_text`` that was provided).
|
2013-04-15 21:54:37 +08:00
|
|
|
|
|
2014-03-29 22:17:19 +08:00
|
|
|
|
Since this happened at the model layer, there was no way to prevent the text
|
|
|
|
|
from appearing in cases where it wasn't applicable such as form fields that
|
|
|
|
|
implement user interactions that don't involve a keyboard and/or a mouse.
|
2013-04-15 21:54:37 +08:00
|
|
|
|
|
2014-03-29 22:17:19 +08:00
|
|
|
|
Starting with Django 1.6, as an ad-hoc temporary backward-compatibility
|
|
|
|
|
provision, the logic to add the "Hold down..." sentence has been moved to the
|
|
|
|
|
model form field layer and modified to add the text only when the associated
|
|
|
|
|
widget is :class:`~django.forms.SelectMultiple` or selected subclasses.
|
2013-04-15 21:54:37 +08:00
|
|
|
|
|
|
|
|
|
The change can affect you in a backward incompatible way if you employ custom
|
|
|
|
|
model form fields and/or widgets for ``ManyToManyField`` model fields whose UIs
|
|
|
|
|
do rely on the automatic provision of the mentioned hard-coded sentence. These
|
|
|
|
|
form field implementations need to adapt to the new scenario by providing their
|
|
|
|
|
own handling of the ``help_text`` attribute.
|
|
|
|
|
|
|
|
|
|
Applications that use Django :doc:`model form </topics/forms/modelforms>`
|
|
|
|
|
facilities together with Django built-in form :doc:`fields </ref/forms/fields>`
|
|
|
|
|
and :doc:`widgets </ref/forms/widgets>` aren't affected but need to be aware of
|
|
|
|
|
what's described in :ref:`m2m-help_text-deprecation` below.
|
|
|
|
|
|
2012-08-02 05:09:26 +08:00
|
|
|
|
QuerySet iteration
|
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The ``QuerySet`` iteration was changed to immediately convert all fetched
|
|
|
|
|
rows to ``Model`` objects. In Django 1.5 and earlier the fetched rows were
|
|
|
|
|
converted to ``Model`` objects in chunks of 100.
|
|
|
|
|
|
|
|
|
|
Existing code will work, but the amount of rows converted to objects
|
|
|
|
|
might change in certain use cases. Such usages include partially looping
|
|
|
|
|
over a queryset or any usage which ends up doing ``__bool__`` or
|
|
|
|
|
``__contains__``.
|
|
|
|
|
|
|
|
|
|
Notably most database backends did fetch all the rows in one go already in
|
|
|
|
|
1.5.
|
|
|
|
|
|
|
|
|
|
It is still possible to convert the fetched rows to ``Model`` objects
|
|
|
|
|
lazily by using the :meth:`~django.db.models.query.QuerySet.iterator()`
|
|
|
|
|
method.
|
|
|
|
|
|
2012-06-08 21:32:35 +08:00
|
|
|
|
:meth:`BoundField.label_tag<django.forms.BoundField.label_tag>` now includes the form's :attr:`~django.forms.Form.label_suffix`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
This is consistent with how methods like
|
|
|
|
|
:meth:`Form.as_p<django.forms.Form.as_p>` and
|
|
|
|
|
:meth:`Form.as_ul<django.forms.Form.as_ul>` render labels.
|
|
|
|
|
|
|
|
|
|
If you manually render ``label_tag`` in your templates:
|
|
|
|
|
|
|
|
|
|
.. code-block:: html+django
|
|
|
|
|
|
|
|
|
|
{{ form.my_field.label_tag }}: {{ form.my_field }}
|
|
|
|
|
|
2013-07-03 02:14:56 +08:00
|
|
|
|
you'll want to remove the colon (or whatever other separator you may be
|
2012-06-08 21:32:35 +08:00
|
|
|
|
using) to avoid duplicating it when upgrading to Django 1.6. The following
|
|
|
|
|
template in Django 1.6 will render identically to the above template in Django
|
2013-07-03 02:14:56 +08:00
|
|
|
|
1.5, except that the colon will appear inside the ``<label>`` element.
|
2012-06-08 21:32:35 +08:00
|
|
|
|
|
|
|
|
|
.. code-block:: html+django
|
|
|
|
|
|
|
|
|
|
{{ form.my_field.label_tag }} {{ form.my_field }}
|
|
|
|
|
|
|
|
|
|
will render something like:
|
|
|
|
|
|
|
|
|
|
.. code-block:: html
|
|
|
|
|
|
|
|
|
|
<label for="id_my_field">My Field:</label> <input id="id_my_field" type="text" name="my_field" />
|
|
|
|
|
|
|
|
|
|
If you want to keep the current behavior of rendering ``label_tag`` without
|
2013-07-27 02:43:46 +08:00
|
|
|
|
the ``label_suffix``, instantiate the form ``label_suffix=''``. You can also
|
|
|
|
|
customize the ``label_suffix`` on a per-field basis using the new
|
|
|
|
|
``label_suffix`` parameter on :meth:`~django.forms.BoundField.label_tag`.
|
2012-06-08 21:32:35 +08:00
|
|
|
|
|
2013-06-19 03:41:36 +08:00
|
|
|
|
Admin views ``_changelist_filters`` GET parameter
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
To achieve preserving and restoring list view filters, admin views now
|
|
|
|
|
pass around the `_changelist_filters` GET parameter. It's important that you
|
|
|
|
|
account for that change if you have custom admin templates or if your tests
|
|
|
|
|
rely on the previous URLs. If you want to revert to the original behavior you
|
|
|
|
|
can set the
|
|
|
|
|
:attr:`~django.contrib.admin.ModelAdmin.preserve_filters` attribute to ``False``.
|
|
|
|
|
|
2013-06-22 04:59:33 +08:00
|
|
|
|
``django.contrib.auth`` password reset uses base 64 encoding of ``User`` PK
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Past versions of Django used base 36 encoding of the ``User`` primary key in
|
|
|
|
|
the password reset views and URLs
|
|
|
|
|
(:func:`django.contrib.auth.views.password_reset_confirm`). Base 36 encoding is
|
|
|
|
|
sufficient if the user primary key is an integer, however, with the
|
|
|
|
|
introduction of custom user models in Django 1.5, that assumption may no longer
|
|
|
|
|
be true.
|
|
|
|
|
|
|
|
|
|
:func:`django.contrib.auth.views.password_reset_confirm` has been modified to
|
|
|
|
|
take a ``uidb64`` parameter instead of ``uidb36``. If you are reversing this
|
|
|
|
|
view, for example in a custom ``password_reset_email.html`` template, be sure
|
|
|
|
|
to update your code.
|
|
|
|
|
|
|
|
|
|
A temporary shim for :func:`django.contrib.auth.views.password_reset_confirm`
|
|
|
|
|
that will allow password reset links generated prior to Django 1.6 to continue
|
|
|
|
|
to work has been added to provide backwards compatibility; this will be removed
|
|
|
|
|
in Django 1.7. Thus, as long as your site has been running Django 1.6 for more
|
|
|
|
|
than :setting:`PASSWORD_RESET_TIMEOUT_DAYS`, this change will have no effect.
|
|
|
|
|
If not (for example, if you upgrade directly from Django 1.5 to Django 1.7),
|
|
|
|
|
then any password reset links generated before you upgrade to Django 1.7 or
|
|
|
|
|
later won't work after the upgrade.
|
|
|
|
|
|
|
|
|
|
In addition, if you have any custom password reset URLs, you will need to
|
|
|
|
|
update them by replacing ``uidb36`` with ``uidb64`` and the dash that follows
|
|
|
|
|
that pattern with a slash. Also add ``_\-`` to the list of characters that may
|
|
|
|
|
match the ``uidb64`` pattern.
|
|
|
|
|
|
|
|
|
|
For example::
|
|
|
|
|
|
|
|
|
|
url(r'^reset/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$',
|
|
|
|
|
'django.contrib.auth.views.password_reset_confirm',
|
|
|
|
|
name='password_reset_confirm'),
|
|
|
|
|
|
|
|
|
|
becomes::
|
|
|
|
|
|
|
|
|
|
url(r'^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>.+)/$',
|
|
|
|
|
'django.contrib.auth.views.password_reset_confirm',
|
|
|
|
|
name='password_reset_confirm'),
|
|
|
|
|
|
|
|
|
|
You may also want to add the shim to support the old style reset links. Using
|
|
|
|
|
the example above, you would modify the existing url by replacing
|
|
|
|
|
``django.contrib.auth.views.password_reset_confirm`` with
|
|
|
|
|
``django.contrib.auth.views.password_reset_confirm_uidb36`` and also remove
|
|
|
|
|
the ``name`` argument so it doesn't conflict with the new url::
|
|
|
|
|
|
|
|
|
|
url(r'^reset/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$',
|
|
|
|
|
'django.contrib.auth.views.password_reset_confirm_uidb36'),
|
|
|
|
|
|
|
|
|
|
You can remove this url pattern after your app has been deployed with Django
|
|
|
|
|
1.6 for :setting:`PASSWORD_RESET_TIMEOUT_DAYS`.
|
|
|
|
|
|
2013-08-22 08:12:19 +08:00
|
|
|
|
Default session serialization switched to JSON
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Historically, :mod:`django.contrib.sessions` used :mod:`pickle` to serialize
|
|
|
|
|
session data before storing it in the backend. If you're using the :ref:`signed
|
|
|
|
|
cookie session backend<cookie-session-backend>` and :setting:`SECRET_KEY` is
|
2013-09-03 19:48:03 +08:00
|
|
|
|
known by an attacker (there isn't an inherent vulnerability in Django that
|
|
|
|
|
would cause it to leak), the attacker could insert a string into his session
|
2013-08-22 08:12:19 +08:00
|
|
|
|
which, when unpickled, executes arbitrary code on the server. The technique for
|
|
|
|
|
doing so is simple and easily available on the internet. Although the cookie
|
|
|
|
|
session storage signs the cookie-stored data to prevent tampering, a
|
|
|
|
|
:setting:`SECRET_KEY` leak immediately escalates to a remote code execution
|
|
|
|
|
vulnerability.
|
|
|
|
|
|
|
|
|
|
This attack can be mitigated by serializing session data using JSON rather
|
|
|
|
|
than :mod:`pickle`. To facilitate this, Django 1.5.3 introduced a new setting,
|
|
|
|
|
:setting:`SESSION_SERIALIZER`, to customize the session serialization format.
|
|
|
|
|
For backwards compatibility, this setting defaulted to using :mod:`pickle`
|
|
|
|
|
in Django 1.5.3, but we've changed the default to JSON in 1.6. If you upgrade
|
|
|
|
|
and switch from pickle to JSON, sessions created before the upgrade will be
|
|
|
|
|
lost. While JSON serialization does not support all Python objects like
|
2013-11-18 20:58:43 +08:00
|
|
|
|
:mod:`pickle` does, we highly recommend using JSON-serialized sessions. Be
|
|
|
|
|
aware of the following when checking your code to determine if JSON
|
|
|
|
|
serialization will work for your application:
|
|
|
|
|
|
|
|
|
|
* JSON requires string keys, so you will likely run into problems if you are
|
|
|
|
|
using non-string keys in ``request.session``.
|
|
|
|
|
* Setting session expiration by passing ``datetime`` values to
|
|
|
|
|
:meth:`~django.contrib.sessions.backends.base.SessionBase.set_expiry` will
|
|
|
|
|
not work as ``datetime`` values are not serializable in JSON. You can use
|
|
|
|
|
integer values instead.
|
|
|
|
|
|
|
|
|
|
See the :ref:`session_serialization` documentation for more details.
|
2013-08-22 08:12:19 +08:00
|
|
|
|
|
2013-11-07 04:11:54 +08:00
|
|
|
|
Object Relational Mapper changes
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Django 1.6 contains many changes to the ORM. These changes fall mostly in
|
|
|
|
|
three categories:
|
|
|
|
|
|
|
|
|
|
1. Bug fixes (e.g. proper join clauses for generic relations, query
|
|
|
|
|
combining, join promotion, and join trimming fixes)
|
|
|
|
|
2. Preparation for new features. For example the ORM is now internally ready
|
|
|
|
|
for multicolumn foreign keys.
|
|
|
|
|
3. General cleanup.
|
|
|
|
|
|
|
|
|
|
These changes can result in some compatibility problems. For example, some
|
|
|
|
|
queries will now generate different table aliases. This can affect
|
|
|
|
|
:meth:`QuerySet.extra() <django.db.models.query.QuerySet.extra>`. In addition
|
|
|
|
|
some queries will now produce different results. An example is
|
|
|
|
|
:meth:`exclude(condition) <django.db.models.query.QuerySet.exclude>`
|
|
|
|
|
where the condition is a complex one (referencing multijoins inside
|
|
|
|
|
:class:`Q objects <django.db.models.Q>`). In many cases the affected
|
|
|
|
|
queries didn't produce correct results in Django 1.5 but do now.
|
|
|
|
|
Unfortunately there are also cases that produce different results, but
|
|
|
|
|
neither Django 1.5 nor 1.6 produce correct results.
|
|
|
|
|
|
|
|
|
|
Finally, there have been many changes to the ORM internal APIs.
|
|
|
|
|
|
2013-03-17 18:05:41 +08:00
|
|
|
|
Miscellaneous
|
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* The ``django.db.models.query.EmptyQuerySet`` can't be instantiated any more -
|
|
|
|
|
it is only usable as a marker class for checking if
|
|
|
|
|
:meth:`~django.db.models.query.QuerySet.none` has been called:
|
|
|
|
|
``isinstance(qs.none(), EmptyQuerySet)``
|
|
|
|
|
|
|
|
|
|
* If your CSS/Javascript code used to access HTML input widgets by type, you
|
|
|
|
|
should review it as ``type='text'`` widgets might be now output as
|
|
|
|
|
``type='email'``, ``type='url'`` or ``type='number'`` depending on their
|
|
|
|
|
corresponding field type.
|
2013-02-24 20:20:41 +08:00
|
|
|
|
|
2013-04-19 02:38:07 +08:00
|
|
|
|
* Form field's :attr:`~django.forms.Field.error_messages` that contain a
|
|
|
|
|
placeholder should now always use a named placeholder (``"Value '%(value)s' is
|
|
|
|
|
too big"`` instead of ``"Value '%s' is too big"``). See the corresponding
|
|
|
|
|
field documentation for details about the names of the placeholders. The
|
|
|
|
|
changes in 1.6 particularly affect :class:`~django.forms.DecimalField` and
|
|
|
|
|
:class:`~django.forms.ModelMultipleChoiceField`.
|
|
|
|
|
|
2013-11-01 00:45:51 +08:00
|
|
|
|
* Some :attr:`~django.forms.Field.error_messages` for
|
|
|
|
|
:class:`~django.forms.IntegerField`,
|
|
|
|
|
:class:`~django.forms.EmailField`,
|
|
|
|
|
:class:`~django.forms.IPAddressField`,
|
|
|
|
|
:class:`~django.forms.GenericIPAddressField`, and
|
|
|
|
|
:class:`~django.forms.SlugField` have been suppressed because they
|
|
|
|
|
duplicated error messages already provided by validators tied to the fields.
|
|
|
|
|
|
2013-11-19 01:06:57 +08:00
|
|
|
|
* Due to a change in the form validation workflow,
|
|
|
|
|
:class:`~django.forms.TypedChoiceField` ``coerce`` method should always
|
|
|
|
|
return a value present in the ``choices`` field attribute. That limitation
|
|
|
|
|
should be lift again in Django 1.7.
|
|
|
|
|
|
2013-05-18 18:54:59 +08:00
|
|
|
|
* There have been changes in the way timeouts are handled in cache backends.
|
|
|
|
|
Explicitly passing in ``timeout=None`` no longer results in using the
|
|
|
|
|
default timeout. It will now set a non-expiring timeout. Passing 0 into the
|
|
|
|
|
memcache backend no longer uses the default timeout, and now will
|
|
|
|
|
set-and-expire-immediately the value.
|
|
|
|
|
|
2013-05-18 22:38:11 +08:00
|
|
|
|
* The ``django.contrib.flatpages`` app used to set custom HTTP headers for
|
|
|
|
|
debugging purposes. This functionality was not documented and made caching
|
|
|
|
|
ineffective so it has been removed, along with its generic implementation,
|
|
|
|
|
previously available in ``django.core.xheaders``.
|
|
|
|
|
|
2013-05-18 23:43:21 +08:00
|
|
|
|
* The ``XViewMiddleware`` has been moved from ``django.middleware.doc`` to
|
|
|
|
|
``django.contrib.admindocs.middleware`` because it is an implementation
|
|
|
|
|
detail of admindocs, proven not to be reusable in general.
|
|
|
|
|
|
2013-05-29 03:11:41 +08:00
|
|
|
|
* :class:`~django.db.models.GenericIPAddressField` will now only allow
|
|
|
|
|
``blank`` values if ``null`` values are also allowed. Creating a
|
|
|
|
|
``GenericIPAddressField`` where ``blank`` is allowed but ``null`` is not
|
|
|
|
|
will trigger a model validation error because ``blank`` values are always
|
|
|
|
|
stored as ``null``. Previously, storing a ``blank`` value in a field which
|
|
|
|
|
did not allow ``null`` would cause a database exception at runtime.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
* If a :class:`~django.core.urlresolvers.NoReverseMatch` exception is raised
|
|
|
|
|
from a method when rendering a template, it is not silenced. For example,
|
|
|
|
|
``{{ obj.view_href }}`` will cause template rendering to fail if
|
|
|
|
|
``view_href()`` raises ``NoReverseMatch``. There is no change to the
|
2014-01-23 00:03:55 +08:00
|
|
|
|
:ttag:`{% url %}<url>` tag, it causes template rendering to fail like always
|
|
|
|
|
when ``NoReverseMatch`` is raised.
|
2013-05-30 15:25:58 +08:00
|
|
|
|
|
2013-09-09 16:59:47 +08:00
|
|
|
|
* :meth:`django.test.Client.logout` now calls
|
2013-06-05 00:37:44 +08:00
|
|
|
|
:meth:`django.contrib.auth.logout` which will send the
|
|
|
|
|
:func:`~django.contrib.auth.signals.user_logged_out` signal.
|
|
|
|
|
|
2013-06-14 04:07:27 +08:00
|
|
|
|
* :ref:`Authentication views <built-in-auth-views>` are now reversed by name,
|
|
|
|
|
not their locations in ``django.contrib.auth.views``. If you are using the
|
|
|
|
|
views without a ``name``, you should update your ``urlpatterns`` to use
|
|
|
|
|
:meth:`~django.conf.urls.url` with the ``name`` parameter. For example::
|
|
|
|
|
|
|
|
|
|
(r'^reset/done/$', 'django.contrib.auth.views.password_reset_complete')
|
|
|
|
|
|
|
|
|
|
becomes::
|
|
|
|
|
|
|
|
|
|
url(r'^reset/done/$', 'django.contrib.auth.views.password_reset_complete', name='password_reset_complete')
|
|
|
|
|
|
2013-06-14 18:59:26 +08:00
|
|
|
|
* :class:`~django.views.generic.base.RedirectView` now has a `pattern_name`
|
|
|
|
|
attribute which allows it to choose the target by reversing the URL.
|
|
|
|
|
|
2013-06-18 00:06:26 +08:00
|
|
|
|
* In Django 1.4 and 1.5, a blank string was unintentionally not considered to
|
|
|
|
|
be a valid password. This meant
|
|
|
|
|
:meth:`~django.contrib.auth.models.User.set_password()` would save a blank
|
|
|
|
|
password as an unusable password like
|
|
|
|
|
:meth:`~django.contrib.auth.models.User.set_unusable_password()` does, and
|
|
|
|
|
thus :meth:`~django.contrib.auth.models.User.check_password()` always
|
|
|
|
|
returned ``False`` for blank passwords. This has been corrected in this
|
|
|
|
|
release: blank passwords are now valid.
|
|
|
|
|
|
2013-06-20 04:09:40 +08:00
|
|
|
|
* The admin :attr:`~django.contrib.admin.ModelAdmin.changelist_view` previously
|
|
|
|
|
accepted a ``pop`` GET parameter to signify it was to be displayed in a popup.
|
|
|
|
|
This parameter has been renamed to ``_popup`` to be consistent with the rest
|
|
|
|
|
of the admin views. You should update your custom templates if they use the
|
|
|
|
|
previous parameter name.
|
|
|
|
|
|
2013-07-24 04:58:43 +08:00
|
|
|
|
* :meth:`~django.core.validators.validate_email` now accepts email addresses
|
|
|
|
|
with ``localhost`` as the domain.
|
|
|
|
|
|
2013-08-05 08:18:10 +08:00
|
|
|
|
* The :djadminopt:`--keep-pot` option was added to :djadmin:`makemessages`
|
|
|
|
|
to prevent django from deleting the temporary .pot file it generates before
|
|
|
|
|
creating the .po file.
|
|
|
|
|
|
2013-10-30 19:46:07 +08:00
|
|
|
|
* The undocumented ``django.core.servers.basehttp.WSGIServerException`` has
|
|
|
|
|
been removed. Use ``socket.error`` provided by the standard library instead.
|
|
|
|
|
This change was also released in Django 1.5.5.
|
|
|
|
|
|
2013-11-07 19:30:04 +08:00
|
|
|
|
* The signature of :meth:`django.views.generic.base.RedirectView.get_redirect_url`
|
|
|
|
|
has changed and now accepts positional arguments as well (``*args, **kwargs``).
|
|
|
|
|
Any unnamed captured group will now be passed to ``get_redirect_url()``
|
|
|
|
|
which may result in a ``TypeError`` if you don't update the signature of your
|
|
|
|
|
custom method.
|
|
|
|
|
|
2014-02-03 21:09:27 +08:00
|
|
|
|
.. _deprecated-features-1.6:
|
|
|
|
|
|
2012-10-30 21:02:54 +08:00
|
|
|
|
Features deprecated in 1.6
|
|
|
|
|
==========================
|
2013-01-02 05:28:48 +08:00
|
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
|
Transaction management APIs
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Transaction management was completely overhauled in Django 1.6, and the
|
|
|
|
|
current APIs are deprecated:
|
|
|
|
|
|
2013-03-06 18:12:24 +08:00
|
|
|
|
- ``django.middleware.transaction.TransactionMiddleware``
|
|
|
|
|
- ``django.db.transaction.autocommit``
|
|
|
|
|
- ``django.db.transaction.commit_on_success``
|
|
|
|
|
- ``django.db.transaction.commit_manually``
|
|
|
|
|
- the ``TRANSACTIONS_MANAGED`` setting
|
2013-03-05 06:26:31 +08:00
|
|
|
|
|
|
|
|
|
The reasons for this change and the upgrade path are described in the
|
|
|
|
|
:ref:`transactions documentation <transactions-upgrading-from-1.5>`.
|
|
|
|
|
|
2013-03-09 22:49:37 +08:00
|
|
|
|
``django.contrib.comments``
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Django's comment framework has been deprecated and is no longer supported. It
|
|
|
|
|
will be available in Django 1.6 and 1.7, and removed in Django 1.8. Most users
|
|
|
|
|
will be better served with a custom solution, or a hosted product like Disqus__.
|
|
|
|
|
|
|
|
|
|
The code formerly known as ``django.contrib.comments`` is `still available
|
|
|
|
|
in an external repository`__.
|
|
|
|
|
|
|
|
|
|
__ https://disqus.com/
|
|
|
|
|
__ https://github.com/django/django-contrib-comments
|
|
|
|
|
|
2013-03-17 18:45:45 +08:00
|
|
|
|
Support for PostgreSQL versions older than 8.4
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The end of upstream support periods was reached in December 2011 for
|
|
|
|
|
PostgreSQL 8.2 and in February 2013 for 8.3. As a consequence, Django 1.6 sets
|
|
|
|
|
8.4 as the minimum PostgreSQL version it officially supports.
|
|
|
|
|
|
|
|
|
|
You're strongly encouraged to use the most recent version of PostgreSQL
|
|
|
|
|
available, because of performance improvements and to take advantage of the
|
|
|
|
|
native streaming replication available in PostgreSQL 9.x.
|
|
|
|
|
|
2013-02-23 22:07:21 +08:00
|
|
|
|
Changes to :ttag:`cycle` and :ttag:`firstof`
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The template system generally escapes all variables to avoid XSS attacks.
|
|
|
|
|
However, due to an accident of history, the :ttag:`cycle` and :ttag:`firstof`
|
|
|
|
|
tags render their arguments as-is.
|
|
|
|
|
|
|
|
|
|
Django 1.6 starts a process to correct this inconsistency. The ``future``
|
|
|
|
|
template library provides alternate implementations of :ttag:`cycle` and
|
|
|
|
|
:ttag:`firstof` that autoescape their inputs. If you're using these tags,
|
|
|
|
|
you're encourage to include the following line at the top of your templates to
|
|
|
|
|
enable the new behavior::
|
|
|
|
|
|
|
|
|
|
{% load cycle from future %}
|
|
|
|
|
|
|
|
|
|
or::
|
|
|
|
|
|
|
|
|
|
{% load firstof from future %}
|
|
|
|
|
|
|
|
|
|
The tags implementing the old behavior have been deprecated, and in Django
|
|
|
|
|
1.8, the old behavior will be replaced with the new behavior. To ensure
|
|
|
|
|
compatibility with future versions of Django, existing templates should be
|
|
|
|
|
modified to use the ``future`` versions.
|
|
|
|
|
|
|
|
|
|
If necessary, you can temporarily disable auto-escaping with
|
|
|
|
|
:func:`~django.utils.safestring.mark_safe` or :ttag:`{% autoescape off %}
|
|
|
|
|
<autoescape>`.
|
|
|
|
|
|
2013-05-18 22:10:14 +08:00
|
|
|
|
``CACHE_MIDDLEWARE_ANONYMOUS_ONLY`` setting
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
``CacheMiddleware`` used to provide a way to cache requests only if they
|
|
|
|
|
weren't made by a logged-in user. This mechanism was largely ineffective
|
|
|
|
|
because the middleware correctly takes into account the ``Vary: Cookie`` HTTP
|
|
|
|
|
header, and this header is being set on a variety of occasions, such as:
|
|
|
|
|
|
|
|
|
|
* accessing the session, or
|
|
|
|
|
* using CSRF protection, which is turned on by default, or
|
|
|
|
|
* using a client-side library which sets cookies, like `Google Analytics`__.
|
|
|
|
|
|
|
|
|
|
This makes the cache effectively work on a per-session basis regardless of the
|
|
|
|
|
``CACHE_MIDDLEWARE_ANONYMOUS_ONLY`` setting.
|
|
|
|
|
|
|
|
|
|
__ http://www.google.com/analytics/
|
|
|
|
|
|
2013-01-02 05:28:48 +08:00
|
|
|
|
``SEND_BROKEN_LINK_EMAILS`` setting
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
:class:`~django.middleware.common.CommonMiddleware` used to provide basic
|
|
|
|
|
reporting of broken links by email when ``SEND_BROKEN_LINK_EMAILS`` is set to
|
|
|
|
|
``True``.
|
|
|
|
|
|
|
|
|
|
Because of intractable ordering problems between
|
|
|
|
|
:class:`~django.middleware.common.CommonMiddleware` and
|
|
|
|
|
:class:`~django.middleware.locale.LocaleMiddleware`, this feature was split
|
|
|
|
|
out into a new middleware:
|
|
|
|
|
:class:`~django.middleware.common.BrokenLinkEmailsMiddleware`.
|
|
|
|
|
|
|
|
|
|
If you're relying on this feature, you should add
|
|
|
|
|
``'django.middleware.common.BrokenLinkEmailsMiddleware'`` to your
|
|
|
|
|
:setting:`MIDDLEWARE_CLASSES` setting and remove ``SEND_BROKEN_LINK_EMAILS``
|
|
|
|
|
from your settings.
|
2013-01-26 03:50:46 +08:00
|
|
|
|
|
|
|
|
|
``_has_changed`` method on widgets
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
If you defined your own form widgets and defined the ``_has_changed`` method
|
|
|
|
|
on a widget, you should now define this method on the form field itself.
|
2013-02-05 17:16:07 +08:00
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
``module_name`` model _meta attribute
|
2013-02-05 17:16:07 +08:00
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
``Model._meta.module_name`` was renamed to ``model_name``. Despite being a
|
|
|
|
|
private API, it will go through a regular deprecation path.
|
2013-03-08 22:15:23 +08:00
|
|
|
|
|
2013-06-23 09:48:09 +08:00
|
|
|
|
``get_(add|change|delete)_permission`` model _meta methods
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
``Model._meta.get_(add|change|delete)_permission`` methods were deprecated.
|
|
|
|
|
Even if they were not part of the public API they'll also go through
|
|
|
|
|
a regular deprecation path.
|
|
|
|
|
|
2013-03-08 22:15:23 +08:00
|
|
|
|
``get_query_set`` and similar methods renamed to ``get_queryset``
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Methods that return a ``QuerySet`` such as ``Manager.get_query_set`` or
|
|
|
|
|
``ModelAdmin.queryset`` have been renamed to ``get_queryset``.
|
2013-03-15 03:28:24 +08:00
|
|
|
|
|
|
|
|
|
``shortcut`` view and URLconf
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The ``shortcut`` view was moved from ``django.views.defaults`` to
|
2013-03-15 16:15:30 +08:00
|
|
|
|
``django.contrib.contenttypes.views`` shortly after the 1.0 release, but the
|
2013-03-15 03:28:24 +08:00
|
|
|
|
old location was never deprecated. This oversight was corrected in Django 1.6
|
|
|
|
|
and you should now use the new location.
|
|
|
|
|
|
|
|
|
|
The URLconf ``django.conf.urls.shortcut`` was also deprecated. If you're
|
|
|
|
|
including it in an URLconf, simply replace::
|
|
|
|
|
|
|
|
|
|
(r'^prefix/', include('django.conf.urls.shortcut')),
|
|
|
|
|
|
|
|
|
|
with::
|
|
|
|
|
|
2013-03-15 16:15:30 +08:00
|
|
|
|
(r'^prefix/(?P<content_type_id>\d+)/(?P<object_id>.*)/$', 'django.contrib.contenttypes.views.shortcut'),
|
2013-02-22 05:56:55 +08:00
|
|
|
|
|
|
|
|
|
``ModelForm`` without ``fields`` or ``exclude``
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Previously, if you wanted a :class:`~django.forms.ModelForm` to use all fields on
|
|
|
|
|
the model, you could simply omit the ``Meta.fields`` attribute, and all fields
|
|
|
|
|
would be used.
|
|
|
|
|
|
|
|
|
|
This can lead to security problems where fields are added to the model and,
|
|
|
|
|
unintentionally, automatically become editable by end users. In some cases,
|
|
|
|
|
particular with boolean fields, it is possible for this problem to be completely
|
|
|
|
|
invisible. This is a form of `Mass assignment vulnerability
|
|
|
|
|
<http://en.wikipedia.org/wiki/Mass_assignment_vulnerability>`_.
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
For this reason, this behavior is deprecated, and using the ``Meta.exclude``
|
2013-02-22 05:56:55 +08:00
|
|
|
|
option is strongly discouraged. Instead, all fields that are intended for
|
|
|
|
|
inclusion in the form should be listed explicitly in the ``fields`` attribute.
|
|
|
|
|
|
|
|
|
|
If this security concern really does not apply in your case, there is a shortcut
|
|
|
|
|
to explicitly indicate that all fields should be used - use the special value
|
|
|
|
|
``"__all__"`` for the fields attribute::
|
|
|
|
|
|
|
|
|
|
class MyModelForm(ModelForm):
|
|
|
|
|
class Meta:
|
|
|
|
|
fields = "__all__"
|
|
|
|
|
model = MyModel
|
|
|
|
|
|
|
|
|
|
If you have custom ``ModelForms`` that only need to be used in the admin, there
|
|
|
|
|
is another option. The admin has its own methods for defining fields
|
|
|
|
|
(``fieldsets`` etc.), and so adding a list of fields to the ``ModelForm`` is
|
|
|
|
|
redundant. Instead, simply omit the ``Meta`` inner class of the ``ModelForm``,
|
|
|
|
|
or omit the ``Meta.model`` attribute. Since the ``ModelAdmin`` subclass knows
|
|
|
|
|
which model it is for, it can add the necessary attributes to derive a
|
2013-06-06 00:55:50 +08:00
|
|
|
|
functioning ``ModelForm``. This behavior also works for earlier Django
|
2013-02-22 05:56:55 +08:00
|
|
|
|
versions.
|
|
|
|
|
|
|
|
|
|
``UpdateView`` and ``CreateView`` without explicit fields
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The generic views :class:`~django.views.generic.edit.CreateView` and
|
|
|
|
|
:class:`~django.views.generic.edit.UpdateView`, and anything else derived from
|
|
|
|
|
:class:`~django.views.generic.edit.ModelFormMixin`, are vulnerable to the
|
|
|
|
|
security problem described in the section above, because they can automatically
|
|
|
|
|
create a ``ModelForm`` that uses all fields for a model.
|
|
|
|
|
|
|
|
|
|
For this reason, if you use these views for editing models, you must also supply
|
2013-09-13 21:34:12 +08:00
|
|
|
|
the ``fields`` attribute (new in Django 1.6), which is a list of model fields
|
|
|
|
|
and works in the same way as the :class:`~django.forms.ModelForm`
|
|
|
|
|
``Meta.fields`` attribute. Alternatively, you can set set the ``form_class``
|
|
|
|
|
attribute to a ``ModelForm`` that explicitly defines the fields to be used.
|
|
|
|
|
Defining an ``UpdateView`` or ``CreateView`` subclass to be used with a model
|
|
|
|
|
but without an explicit list of fields is deprecated.
|
2013-04-15 21:54:37 +08:00
|
|
|
|
|
|
|
|
|
.. _m2m-help_text-deprecation:
|
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
Munging of help text of model form fields for ``ManyToManyField`` fields
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2013-04-15 21:54:37 +08:00
|
|
|
|
|
2013-06-06 00:55:50 +08:00
|
|
|
|
All special handling of the ``help_text`` attribute of ``ManyToManyField`` model
|
2013-04-15 21:54:37 +08:00
|
|
|
|
fields performed by standard model or model form fields as described in
|
|
|
|
|
:ref:`m2m-help_text` above is deprecated and will be removed in Django 1.8.
|
|
|
|
|
|
|
|
|
|
Help text of these fields will need to be handled either by applications, custom
|
|
|
|
|
form fields or widgets, just like happens with the rest of the model field
|
|
|
|
|
types.
|