1.6.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. ============================================
  2. Django 1.6 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. Welcome to Django 1.6!
  5. These release notes cover the `new features`_, as well as some `backwards
  6. incompatible changes`_ you'll want to be aware of when upgrading from Django
  7. 1.5 or older versions. We've also dropped some features, which are detailed in
  8. :doc:`our deprecation plan </internals/deprecation>`, and we've `begun the
  9. deprecation process for some features`_.
  10. .. _`new features`: `What's new in Django 1.6`_
  11. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.6`_
  12. .. _`begun the deprecation process for some features`: `Features deprecated in 1.6`_
  13. What's new in Django 1.6
  14. ========================
  15. Simplified default project and app templates
  16. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  17. The default templates used by :djadmin:`startproject` and :djadmin:`startapp`
  18. have been simplified and modernized. The :doc:`admin
  19. </ref/contrib/admin/index>` is now enabled by default in new projects; the
  20. :doc:`sites </ref/contrib/sites>` framework no longer is. :ref:`Language
  21. detection <how-django-discovers-language-preference>` and :ref:`clickjacking
  22. prevention <clickjacking-prevention>` are turned on.
  23. If the default templates don't suit your tastes, you can use :ref:`custom
  24. project and app templates <custom-app-and-project-templates>`.
  25. Improved transaction management
  26. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  27. Django's transaction management was overhauled. Database-level autocommit is
  28. now turned on by default. This makes transaction handling more explicit and
  29. should improve performance. The existing APIs were deprecated, and new APIs
  30. were introduced, as described in the :doc:`transaction management docs
  31. </topics/db/transactions>`.
  32. Please review carefully the list of :ref:`known backwards-incompatibilities
  33. <transactions-upgrading-from-1.5>` to determine if you need to make changes in
  34. your code.
  35. Persistent database connections
  36. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  37. Django now supports reusing the same database connection for several requests.
  38. This avoids the overhead of re-establishing a connection at the beginning of
  39. each request.
  40. By default, database connections will kept open for 10 minutes. This behavior
  41. is controlled by the :setting:`CONN_MAX_AGE` setting. To restore the previous
  42. behavior of closing the connection at the end of each request, set
  43. :setting:`CONN_MAX_AGE` to ``0``. See :ref:`persistent-database-connections`
  44. for details.
  45. Time zone aware aggregation
  46. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  47. The support for :doc:`time zones </topics/i18n/timezones>` introduced in
  48. Django 1.4 didn't work well with :meth:`QuerySet.dates()
  49. <django.db.models.query.QuerySet.dates>`: aggregation was always performed in
  50. UTC. This limitation was lifted in Django 1.6. Use :meth:`QuerySet.datetimes()
  51. <django.db.models.query.QuerySet.datetimes>` to perform time zone aware
  52. aggregation on a :class:`~django.db.models.DateTimeField`.
  53. ``BinaryField`` model field
  54. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  55. A new :class:`django.db.models.BinaryField` model field allows to store raw
  56. binary data in the database.
  57. Minor features
  58. ~~~~~~~~~~~~~~
  59. * Authentication backends can raise ``PermissionDenied`` to immediately fail
  60. the authentication chain.
  61. * The HttpOnly flag can be set on the CSRF cookie with
  62. :setting:`CSRF_COOKIE_HTTPONLY`.
  63. * The ``assertQuerysetEqual()`` now checks for undefined order and raises
  64. ``ValueError`` if undefined order is spotted. The order is seen as
  65. undefined if the given ``QuerySet`` isn't ordered and there are more than
  66. one ordered values to compare against.
  67. * Added :meth:`~django.db.models.query.QuerySet.earliest` for symmetry with
  68. :meth:`~django.db.models.query.QuerySet.latest`.
  69. * In addition to :lookup:`year`, :lookup:`month` and :lookup:`day`, the ORM
  70. now supports :lookup:`hour`, :lookup:`minute` and :lookup:`second` lookups.
  71. * Django now wraps all PEP-249 exceptions.
  72. * The default widgets for :class:`~django.forms.EmailField`,
  73. :class:`~django.forms.URLField`, :class:`~django.forms.IntegerField`,
  74. :class:`~django.forms.FloatField` and :class:`~django.forms.DecimalField` use
  75. the new type attributes available in HTML5 (type='email', type='url',
  76. type='number'). Note that due to erratic support of the ``number`` input type
  77. with localized numbers in current browsers, Django only uses it when numeric
  78. fields are not localized.
  79. * The ``number`` argument for :ref:`lazy plural translations
  80. <lazy-plural-translations>` can be provided at translation time rather than
  81. at definition time.
  82. * For custom management commands: Verification of the presence of valid
  83. settings in commands that ask for it by using the
  84. :attr:`~django.core.management.BaseCommand.can_import_settings` internal
  85. option is now performed independently from handling of the locale that
  86. should be active during the execution of the command. The latter can now be
  87. influenced by the new
  88. :attr:`~django.core.management.BaseCommand.leave_locale_alone` internal
  89. option. See :ref:`management-commands-and-locales` for more details.
  90. * The :attr:`~django.views.generic.edit.DeletionMixin.success_url` of
  91. :class:`~django.views.generic.edit.DeletionMixin` is now interpolated with
  92. its ``object``\'s ``__dict__``.
  93. * :class:`~django.http.HttpResponseRedirect` and
  94. :class:`~django.http.HttpResponsePermanentRedirect` now provide an ``url``
  95. attribute (equivalent to the URL the response will redirect to).
  96. * The ``MemcachedCache`` cache backend now uses the latest :mod:`pickle`
  97. protocol available.
  98. * Added the :attr:`django.db.models.ForeignKey.db_constraint` and
  99. :attr:`django.db.models.ManyToManyField.db_constraint` options.
  100. * The jQuery library embedded in the admin has been upgraded to version 1.9.1.
  101. * Syndication feeds (:mod:`django.contrib.syndication`) can now pass extra
  102. context through to feed templates using a new `Feed.get_context_data()`
  103. callback.
  104. * The admin list columns have a ``column-<field_name>`` class in the HTML
  105. so the columns header can be styled with CSS, e.g. to set a column width.
  106. * The isolation level can be customized under PostgreSQL.
  107. * The :ttag:`blocktrans` template tag now respects
  108. :setting:`TEMPLATE_STRING_IF_INVALID` for variables not present in the
  109. context, just like other template constructs.
  110. * SimpleLazyObjects will now present more helpful representations in shell
  111. debugging situations.
  112. * Generic :class:`~django.contrib.gis.db.models.GeometryField` is now editable
  113. with the OpenLayers widget in the admin.
  114. Backwards incompatible changes in 1.6
  115. =====================================
  116. .. warning::
  117. In addition to the changes outlined in this section, be sure to review the
  118. :doc:`deprecation plan </internals/deprecation>` for any features that
  119. have been removed. If you haven't updated your code within the
  120. deprecation timeline for a given feature, its removal may appear as a
  121. backwards incompatible change.
  122. * Database-level autocommit is enabled by default in Django 1.6. While this
  123. doesn't change the general spirit of Django's transaction management, there
  124. are a few known backwards-incompatibities, described in the :ref:`transaction
  125. management docs <transactions-upgrading-from-1.5>`. You should review your code
  126. to determine if you're affected.
  127. * In previous versions, database-level autocommit was only an option for
  128. PostgreSQL, and it was disabled by default. This option is now
  129. :ref:`ignored <postgresql-autocommit-mode>`.
  130. * The ``django.db.models.query.EmptyQuerySet`` can't be instantiated any more -
  131. it is only usable as a marker class for checking if
  132. :meth:`~django.db.models.query.QuerySet.none` has been called:
  133. ``isinstance(qs.none(), EmptyQuerySet)``
  134. * :meth:`QuerySet.dates() <django.db.models.query.QuerySet.dates>` raises an
  135. error if it's used on :class:`~django.db.models.DateTimeField` when time
  136. zone support is active. Use :meth:`QuerySet.datetimes()
  137. <django.db.models.query.QuerySet.datetimes>` instead.
  138. * :meth:`QuerySet.dates() <django.db.models.query.QuerySet.dates>` returns a
  139. list of :class:`~datetime.date`. It used to return a list of
  140. :class:`~datetime.datetime`.
  141. * The :attr:`~django.contrib.admin.ModelAdmin.date_hierarchy` feature of the
  142. admin on a :class:`~django.db.models.DateTimeField` requires time zone
  143. definitions in the database when :setting:`USE_TZ` is ``True``.
  144. :ref:`Learn more <database-time-zone-definitions>`.
  145. * Accessing ``date_list`` in the context of a date-based generic view requires
  146. time zone definitions in the database when the view is based on a
  147. :class:`~django.db.models.DateTimeField` and :setting:`USE_TZ` is ``True``.
  148. :ref:`Learn more <database-time-zone-definitions>`.
  149. * Model fields named ``hour``, ``minute`` or ``second`` may clash with the new
  150. lookups. Append an explicit :lookup:`exact` lookup if this is an issue.
  151. * When Django establishes a connection to the database, it sets up appropriate
  152. parameters, depending on the backend being used. Since `persistent database
  153. connections <persistent-database-connections>`_ are enabled by default in
  154. Django 1.6, this setup isn't repeated at every request any more. If you
  155. modifiy parameters such as the connection's isolation level or time zone,
  156. you should either restore Django's defaults at the end of each request, or
  157. force an appropriate value at the beginning of each request.
  158. * If your CSS/Javascript code used to access HTML input widgets by type, you
  159. should review it as ``type='text'`` widgets might be now output as
  160. ``type='email'``, ``type='url'`` or ``type='number'`` depending on their
  161. corresponding field type.
  162. * Extraction of translatable literals from templates with the
  163. :djadmin:`makemessages` command now correctly detects i18n constructs when
  164. they are located after a ``{#`` / ``#}``-type comment on the same line. E.g.:
  165. .. code-block:: html+django
  166. {# A comment #}{% trans "This literal was incorrectly ignored. Not anymore" %}
  167. * (Related to the above item.) Validation of the placement of
  168. :ref:`translator-comments-in-templates` specified using ``{#`` / ``#}`` is now
  169. stricter. All translator comments not located at the end of their respective
  170. lines in a template are ignored and a warning is generated by
  171. :djadmin:`makemessages` when it finds them. E.g.:
  172. .. code-block:: html+django
  173. {# Translators: This is ignored #}{% trans "Translate me" %}
  174. {{ title }}{# Translators: Extracted and associated with 'Welcome' below #}
  175. <h1>{% trans "Welcome" %}</h1>
  176. * The :doc:`comments </ref/contrib/comments/index>` app now uses a ``GenericIPAddressField``
  177. for storing commenters' IP addresses, to support comments submitted from IPv6 addresses.
  178. Until now, it stored them in an ``IPAddressField``, which is only meant to support IPv4.
  179. When saving a comment made from an IPv6 address, the address would be silently truncated
  180. on MySQL databases, and raise an exception on Oracle.
  181. You will need to change the column type in your database to benefit from this change.
  182. For MySQL, execute this query on your project's database:
  183. .. code-block:: sql
  184. ALTER TABLE django_comments MODIFY ip_address VARCHAR(39);
  185. For Oracle, execute this query:
  186. .. code-block:: sql
  187. ALTER TABLE DJANGO_COMMENTS MODIFY (ip_address VARCHAR2(39));
  188. If you do not apply this change, the behaviour is unchanged: on MySQL, IPv6 addresses
  189. are silently truncated; on Oracle, an exception is generated. No database
  190. change is needed for SQLite or PostgreSQL databases.
  191. Features deprecated in 1.6
  192. ==========================
  193. Transaction management APIs
  194. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  195. Transaction management was completely overhauled in Django 1.6, and the
  196. current APIs are deprecated:
  197. - ``django.middleware.transaction.TransactionMiddleware``
  198. - ``django.db.transaction.autocommit``
  199. - ``django.db.transaction.commit_on_success``
  200. - ``django.db.transaction.commit_manually``
  201. - the ``TRANSACTIONS_MANAGED`` setting
  202. The reasons for this change and the upgrade path are described in the
  203. :ref:`transactions documentation <transactions-upgrading-from-1.5>`.
  204. ``django.contrib.comments``
  205. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  206. Django's comment framework has been deprecated and is no longer supported. It
  207. will be available in Django 1.6 and 1.7, and removed in Django 1.8. Most users
  208. will be better served with a custom solution, or a hosted product like Disqus__.
  209. The code formerly known as ``django.contrib.comments`` is `still available
  210. in an external repository`__.
  211. __ https://disqus.com/
  212. __ https://github.com/django/django-contrib-comments
  213. Changes to :ttag:`cycle` and :ttag:`firstof`
  214. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  215. The template system generally escapes all variables to avoid XSS attacks.
  216. However, due to an accident of history, the :ttag:`cycle` and :ttag:`firstof`
  217. tags render their arguments as-is.
  218. Django 1.6 starts a process to correct this inconsistency. The ``future``
  219. template library provides alternate implementations of :ttag:`cycle` and
  220. :ttag:`firstof` that autoescape their inputs. If you're using these tags,
  221. you're encourage to include the following line at the top of your templates to
  222. enable the new behavior::
  223. {% load cycle from future %}
  224. or::
  225. {% load firstof from future %}
  226. The tags implementing the old behavior have been deprecated, and in Django
  227. 1.8, the old behavior will be replaced with the new behavior. To ensure
  228. compatibility with future versions of Django, existing templates should be
  229. modified to use the ``future`` versions.
  230. If necessary, you can temporarily disable auto-escaping with
  231. :func:`~django.utils.safestring.mark_safe` or :ttag:`{% autoescape off %}
  232. <autoescape>`.
  233. ``SEND_BROKEN_LINK_EMAILS`` setting
  234. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  235. :class:`~django.middleware.common.CommonMiddleware` used to provide basic
  236. reporting of broken links by email when ``SEND_BROKEN_LINK_EMAILS`` is set to
  237. ``True``.
  238. Because of intractable ordering problems between
  239. :class:`~django.middleware.common.CommonMiddleware` and
  240. :class:`~django.middleware.locale.LocaleMiddleware`, this feature was split
  241. out into a new middleware:
  242. :class:`~django.middleware.common.BrokenLinkEmailsMiddleware`.
  243. If you're relying on this feature, you should add
  244. ``'django.middleware.common.BrokenLinkEmailsMiddleware'`` to your
  245. :setting:`MIDDLEWARE_CLASSES` setting and remove ``SEND_BROKEN_LINK_EMAILS``
  246. from your settings.
  247. ``_has_changed`` method on widgets
  248. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  249. If you defined your own form widgets and defined the ``_has_changed`` method
  250. on a widget, you should now define this method on the form field itself.
  251. ``module_name`` model meta attribute
  252. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  253. ``Model._meta.module_name`` was renamed to ``model_name``. Despite being a
  254. private API, it will go through a regular deprecation path.
  255. ``get_query_set`` and similar methods renamed to ``get_queryset``
  256. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  257. Methods that return a ``QuerySet`` such as ``Manager.get_query_set`` or
  258. ``ModelAdmin.queryset`` have been renamed to ``get_queryset``.