1.8.txt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. ============================================
  2. Django 1.8 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. Welcome to Django 1.8!
  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.6 or older versions. We've also dropped some features, which are detailed in
  8. :ref:`our deprecation plan <deprecation-removed-in-1.8>`, and we've `begun the
  9. deprecation process for some features`_.
  10. .. _`new features`: `What's new in Django 1.8`_
  11. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.8`_
  12. .. _`begun the deprecation process for some features`: `Features deprecated in 1.8`_
  13. Python compatibility
  14. ====================
  15. Like Django 1.7, Django 1.8 requires Python 2.7 or above, though we
  16. **highly recommend** the latest minor release.
  17. What's new in Django 1.8
  18. ========================
  19. ...
  20. Minor features
  21. ~~~~~~~~~~~~~~
  22. :mod:`django.contrib.admin`
  23. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  24. * ...
  25. :mod:`django.contrib.auth`
  26. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  27. * Authorization backends can now raise
  28. :class:`~django.core.exceptions.PermissionDenied` in
  29. :meth:`~django.contrib.auth.models.User.has_perm`
  30. and :meth:`~django.contrib.auth.models.User.has_module_perms`
  31. to short-circuit permission checking.
  32. :mod:`django.contrib.formtools`
  33. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  34. * A :doc:`form wizard </ref/contrib/formtools/form-wizard>` using the
  35. :class:`~django.contrib.formtools.wizard.views.CookieWizardView` will now ignore
  36. an invalid cookie, and the wizard will restart from the first step. An invalid
  37. cookie can occur in cases of intentional manipulation, but also after a secret
  38. key change. Previously, this would raise ``WizardViewCookieModified``, a
  39. ``SuspiciousOperation``, causing an exception for any user with an invalid cookie
  40. upon every request to the wizard, until the cookie is removed.
  41. :mod:`django.contrib.gis`
  42. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  43. * Compatibility shims for ``SpatialRefSys`` and ``GeometryColumns`` changed in
  44. Django 1.2 have been removed.
  45. :mod:`django.contrib.messages`
  46. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  47. * ...
  48. :mod:`django.contrib.redirects`
  49. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  50. * ...
  51. :mod:`django.contrib.sessions`
  52. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  53. * Session cookie is now deleted after
  54. :meth:`~django.contrib.sessions.backends.base.SessionBase.flush()` is called.
  55. :mod:`django.contrib.sitemaps`
  56. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  57. * ...
  58. :mod:`django.contrib.sites`
  59. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  60. * ...
  61. :mod:`django.contrib.staticfiles`
  62. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  63. * ...
  64. :mod:`django.contrib.syndication`
  65. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  66. * ...
  67. Cache
  68. ^^^^^
  69. * ...
  70. Email
  71. ^^^^^
  72. * :ref:`Email backends <topic-email-backends>` now support the context manager
  73. protocol for opening and closing connections.
  74. File Storage
  75. ^^^^^^^^^^^^
  76. * ...
  77. File Uploads
  78. ^^^^^^^^^^^^
  79. * ...
  80. Forms
  81. ^^^^^
  82. * Form widgets now render attributes with a value of ``True`` or ``False``
  83. as HTML5 boolean attributes.
  84. * The new :meth:`~django.forms.Form.has_error()` method allows checking
  85. if a specific error has happened.
  86. * If :attr:`~django.forms.Form.required_css_class` is defined on a form, then
  87. the ``<label>`` tags for required fields will have this class present in its
  88. attributes.
  89. * The rendering of non-field errors in unordered lists (``<ul>``) now includes
  90. ``nonfield`` in its list of classes to distinguish them from field-specific
  91. errors.
  92. * :class:`~django.forms.Field` now accepts a
  93. :attr:`~django.forms.Field.label_suffix` argument, which will override the
  94. form's :attr:`~django.forms.Form.label_suffix`. This enables customizing the
  95. suffix on a per-field basis — previously it wasn't possible to override
  96. a form's :attr:`~django.forms.Form.label_suffix` while using shortcuts such
  97. as ``{{ form.as_p }}`` in templates.
  98. * :class:`~django.forms.extras.widgets.SelectDateWidget` now accepts an
  99. :attr:`~django.forms.extras.widgets.SelectDateWidget.empty_label` argument, which will
  100. override the top list choice label when :class:`~django.forms.DateField` is not required.
  101. Internationalization
  102. ^^^^^^^^^^^^^^^^^^^^
  103. * :setting:`FORMAT_MODULE_PATH` can now be a list of strings representing
  104. module paths. This allows importing several format modules from different
  105. reusable apps. It also allows overriding those custom formats in your main
  106. Django project.
  107. Management Commands
  108. ^^^^^^^^^^^^^^^^^^^
  109. * :djadmin:`dumpdata` now has the option :djadminopt:`--output` which allows
  110. specifying the file to which the serialized data is written.
  111. * :djadmin:`makemessages` and :djadmin:`compilemessages` now have the option
  112. :djadminopt:`--exclude` which allows exclusion of specific locales from
  113. processing.
  114. * The :djadminopt:`--ignorenonexistent` option of the :djadmin:`loaddata`
  115. management command now ignores data for models that no longer exist.
  116. Models
  117. ^^^^^^
  118. * ...
  119. Signals
  120. ^^^^^^^
  121. * Exceptions from the ``(receiver, exception)`` tuples returned by
  122. :meth:`Signal.send_robust() <django.dispatch.Signal.send_robust>` now have
  123. their traceback attached as a ``__traceback__`` attribute.
  124. Templates
  125. ^^^^^^^^^
  126. * ...
  127. Requests and Responses
  128. ^^^^^^^^^^^^^^^^^^^^^^
  129. * ...
  130. Tests
  131. ^^^^^
  132. * The ``count`` argument was added to
  133. :meth:`~django.test.SimpleTestCase.assertTemplateUsed`. This allows you to
  134. assert that a template was rendered a specific number of times.
  135. * The new :meth:`~django.test.SimpleTestCase.assertJSONNotEqual` assertion
  136. allows you to test that two JSON fragments are not equal.
  137. * Added the ability to preserve the test database by adding the :djadminopt:`--keepdb`
  138. flag.
  139. Validators
  140. ^^^^^^^^^^
  141. * ...
  142. Backwards incompatible changes in 1.8
  143. =====================================
  144. .. warning::
  145. In addition to the changes outlined in this section, be sure to review the
  146. :ref:`deprecation plan <deprecation-removed-in-1.8>` for any features that
  147. have been removed. If you haven't updated your code within the
  148. deprecation timeline for a given feature, its removal may appear as a
  149. backwards incompatible change.
  150. * Some operations on related objects such as
  151. :meth:`~django.db.models.fields.related.RelatedManager.add()` or
  152. :ref:`direct assignment<direct-assignment>` ran multiple data modifying
  153. queries without wrapping them in transactions. To reduce the risk of data
  154. corruption, all data modifying methods that affect multiple related objects
  155. (i.e. ``add()``, ``remove()``, ``clear()``, and
  156. :ref:`direct assignment<direct-assignment>`) now perform their data modifying
  157. queries from within a transaction, provided your database supports
  158. transactions.
  159. This has one backwards incompatible side effect, signal handlers triggered
  160. from these methods are now executed within the method's transaction and
  161. any exception in a signal handler will prevent the whole operation.
  162. Miscellaneous
  163. ~~~~~~~~~~~~~
  164. * ``URLField.to_python`` no longer adds a trailing slash to pathless URLs.
  165. * ``django.contrib.gis`` dropped support for GEOS 3.1 and GDAL 1.6.
  166. .. _deprecated-features-1.8:
  167. Features deprecated in 1.8
  168. ==========================
  169. Loading ``cycle`` and ``firstof`` template tags from ``future`` library
  170. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  171. Django 1.6 introduced ``{% load cycle from future %}`` and
  172. ``{% load firstof from future %}`` syntax for forward compatibility of the
  173. :ttag:`cycle` and :ttag:`firstof` template tags. This syntax is now deprecated
  174. and will be removed in Django 2.0. You can simply remove the
  175. ``{% load ... from future %}`` tags.
  176. ``django.conf.urls.patterns()``
  177. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  178. In the olden days of Django, it was encouraged to reference views as strings
  179. in ``urlpatterns``::
  180. urlpatterns = patterns('',
  181. url('^$', 'myapp.views.myview'),
  182. )
  183. and Django would magically import ``myapp.views.myview`` internally and turn
  184. the string into a real function reference. In order to reduce repetition when
  185. referencing many views from the same module, the ``patterns()`` function takes
  186. a required initial ``prefix`` argument which is prepended to all
  187. views-as-strings in that set of ``urlpatterns``::
  188. urlpatterns = patterns('myapp.views',
  189. url('^$', 'myview'),
  190. url('^other/$', 'otherview'),
  191. )
  192. In the modern era, we have updated the tutorial to instead recommend importing
  193. your views module and referencing your view functions (or classes) directly.
  194. This has a number of advantages, all deriving from the fact that we are using
  195. normal Python in place of "Django String Magic": the errors when you mistype a
  196. view name are less obscure, IDEs can help with autocompletion of view names,
  197. etc.
  198. So these days, the above use of the ``prefix`` arg is much more likely to be
  199. written (and is better written) as::
  200. from myapp import views
  201. urlpatterns = patterns('',
  202. url('^$', views.myview),
  203. url('^other/$', views.otherview),
  204. )
  205. Thus ``patterns()`` serves little purpose and is a burden when teaching new users
  206. (answering the newbie's question "why do I need this empty string as the first
  207. argument to ``patterns()``?"). For these reasons, we are deprecating it.
  208. Updating your code is as simple as ensuring that ``urlpatterns`` is a list of
  209. :func:`django.conf.urls.url` instances. For example::
  210. from django.conf.urls import url
  211. from myapp import views
  212. urlpatterns = [
  213. url('^$', views.myview),
  214. url('^other/$', views.otherview),
  215. ]
  216. ``django.test.SimpleTestCase.urls``
  217. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  218. The attribute :attr:`SimpleTestCase.urls <django.test.SimpleTestCase.urls>`
  219. for specifying URLconf configuration in tests has been deprecated and will be
  220. removed in Django 2.0. Use :func:`@override_settings(ROOT_URLCONF=...)
  221. <django.test.override_settings>` instead.
  222. ``prefix`` argument to :func:`~django.conf.urls.i18n.i18n_patterns`
  223. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  224. Related to the previous item, the ``prefix`` argument to
  225. :func:`django.conf.urls.i18n.i18n_patterns` has been deprecated. Simply pass a
  226. list of :func:`django.conf.urls.url` instances instead.
  227. Using an incorrect count of unpacked values in the :ttag:`for` template tag
  228. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  229. Using an incorrect count of unpacked values in :ttag:`for` tag will raise an
  230. exception rather than fail silently in Django 2.0.
  231. Passing a dotted path to :func:`~django.core.urlresolvers.reverse()` and :ttag:`url`
  232. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  233. Reversing URLs by Python path is an expensive operation as it causes the
  234. path being reversed to be imported. This behavior has also resulted in a
  235. `security issue`_. Use :ref:`named URL patterns <naming-url-patterns>`
  236. for reversing instead.
  237. If you are using :mod:`django.contrib.sitemaps`, add the ``name`` argument to
  238. the ``url`` that references :func:`django.contrib.sitemaps.views.sitemap`:
  239. url(r'^sitemap\.xml$', 'django.contrib.sitemaps.views.sitemap',
  240. {'sitemaps': sitemaps}, name='django.contrib.sitemaps.views.sitemap')
  241. to ensure compatibility when reversing by Python path is removed in Django 2.0.
  242. .. _security issue: https://www.djangoproject.com/weblog/2014/apr/21/security/#s-issue-unexpected-code-execution-using-reverse