1.8.txt 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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. * ...
  28. :mod:`django.contrib.formtools`
  29. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  30. * ...
  31. :mod:`django.contrib.gis`
  32. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  33. * ...
  34. :mod:`django.contrib.messages`
  35. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  36. * ...
  37. :mod:`django.contrib.redirects`
  38. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  39. * ...
  40. :mod:`django.contrib.sessions`
  41. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  42. * Session cookie is now deleted after
  43. :meth:`~django.contrib.sessions.backends.base.SessionBase.flush()` is called.
  44. :mod:`django.contrib.sitemaps`
  45. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  46. * ...
  47. :mod:`django.contrib.sites`
  48. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  49. * ...
  50. :mod:`django.contrib.staticfiles`
  51. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  52. * ...
  53. :mod:`django.contrib.syndication`
  54. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  55. * ...
  56. Cache
  57. ^^^^^
  58. * ...
  59. Email
  60. ^^^^^
  61. * :ref:`Email backends <topic-email-backends>` now support the context manager
  62. protocol for opening and closing connections.
  63. File Storage
  64. ^^^^^^^^^^^^
  65. * ...
  66. File Uploads
  67. ^^^^^^^^^^^^
  68. * ...
  69. Forms
  70. ^^^^^
  71. * Form widgets now render attributes with a value of ``True`` or ``False``
  72. as HTML5 boolean attributes.
  73. * The new :meth:`~django.forms.Form.has_error()` method allows checking
  74. if a specific error has happened.
  75. * If :attr:`~django.forms.Form.required_css_class` is defined on a form, then
  76. the ``<label>`` tags for required fields will have this class present in its
  77. attributes.
  78. Internationalization
  79. ^^^^^^^^^^^^^^^^^^^^
  80. * ...
  81. Management Commands
  82. ^^^^^^^^^^^^^^^^^^^
  83. * :djadmin:`dumpdata` now has the option :djadminopt:`--output` which allows
  84. specifying the file to which the serialized data is written.
  85. * :djadmin:`makemessages` and :djadmin:`compilemessages` now have the option
  86. :djadminopt:`--exclude` which allows exclusion of specific locales from
  87. processing.
  88. Models
  89. ^^^^^^
  90. * ...
  91. Signals
  92. ^^^^^^^
  93. * ...
  94. Templates
  95. ^^^^^^^^^
  96. * ...
  97. Requests and Responses
  98. ^^^^^^^^^^^^^^^^^^^^^^
  99. * ...
  100. Tests
  101. ^^^^^
  102. * The ``count`` argument was added to
  103. :meth:`~django.test.SimpleTestCase.assertTemplateUsed`. This allows you to
  104. assert that a template was rendered a specific number of times.
  105. * The new :meth:`~django.test.SimpleTestCase.assertJSONNotEqual` assertion
  106. allows you to test that two JSON fragments are not equal.
  107. Validators
  108. ^^^^^^^^^^
  109. * ...
  110. Backwards incompatible changes in 1.8
  111. =====================================
  112. .. warning::
  113. In addition to the changes outlined in this section, be sure to review the
  114. :doc:`deprecation plan </internals/deprecation>` for any features that
  115. have been removed. If you haven't updated your code within the
  116. deprecation timeline for a given feature, its removal may appear as a
  117. backwards incompatible change.
  118. * Some operations on related objects such as
  119. :meth:`~django.db.models.fields.related.RelatedManager.add()` or
  120. :ref:`direct assignment<direct-assignment>` ran multiple data modifying
  121. queries without wrapping them in transactions. To reduce the risk of data
  122. corruption, all data modifying methods that affect multiple related objects
  123. (i.e. ``add()``, ``remove()``, ``clear()``, and
  124. :ref:`direct assignment<direct-assignment>`) now perform their data modifying
  125. queries from within a transaction, provided your database supports
  126. transactions.
  127. This has one backwards incompatible side effect, signal handlers triggered
  128. from these methods are now executed within the method's transaction and
  129. any exception in a signal handler will prevent the whole operation.
  130. Miscellaneous
  131. ~~~~~~~~~~~~~
  132. * ``URLField.to_python`` no longer adds a trailing slash to pathless URLs.
  133. * ``django.contrib.gis`` dropped support for GEOS 3.1 and GDAL 1.6.
  134. .. _deprecated-features-1.8:
  135. Features deprecated in 1.8
  136. ==========================
  137. Loading ``cycle`` and ``firstof`` template tags from ``future`` library
  138. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  139. Django 1.6 introduced ``{% load cycle from future %}`` and
  140. ``{% load firstof from future %}`` syntax for forward compatibility of the
  141. :ttag:`cycle` and :ttag:`firstof` template tags. This syntax is now deprecated
  142. and will be removed in Django 2.0. You can simply remove the
  143. ``{% load ... from future %}`` tags.
  144. ``django.conf.urls.patterns()``
  145. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  146. In the olden days of Django, it was encouraged to reference views as strings
  147. in ``urlpatterns``::
  148. urlpatterns = patterns('',
  149. url('^$', 'myapp.views.myview'),
  150. )
  151. and Django would magically import ``myapp.views.myview`` internally and turn
  152. the string into a real function reference. In order to reduce repetition when
  153. referencing many views from the same module, the ``patterns()`` function takes
  154. a required initial ``prefix`` argument which is prepended to all
  155. views-as-strings in that set of ``urlpatterns``::
  156. urlpatterns = patterns('myapp.views',
  157. url('^$', 'myview'),
  158. url('^other/$', 'otherview'),
  159. )
  160. In the modern era, we have updated the tutorial to instead recommend importing
  161. your views module and referencing your view functions (or classes) directly.
  162. This has a number of advantages, all deriving from the fact that we are using
  163. normal Python in place of "Django String Magic": the errors when you mistype a
  164. view name are less obscure, IDEs can help with autocompletion of view names,
  165. etc.
  166. So these days, the above use of the ``prefix`` arg is much more likely to be
  167. written (and is better written) as::
  168. from myapp import views
  169. urlpatterns = patterns('',
  170. url('^$', views.myview),
  171. url('^other/$', views.otherview),
  172. )
  173. Thus ``patterns()`` serves little purpose and is a burden when teaching new users
  174. (answering the newbie's question "why do I need this empty string as the first
  175. argument to ``patterns()``?"). For these reasons, we are deprecating it.
  176. Updating your code is as simple as ensuring that ``urlpatterns`` is a list of
  177. :func:`django.conf.urls.url` instances. For example::
  178. from django.conf.urls import url
  179. from myapp import views
  180. urlpatterns = [
  181. url('^$', views.myview),
  182. url('^other/$', views.otherview),
  183. ]
  184. ``django.test.SimpleTestCase.urls``
  185. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  186. The attribute :attr:`SimpleTestCase.urls <django.test.SimpleTestCase.urls>`
  187. for specifying URLconf configuration in tests has been deprecated and will be
  188. removed in Django 2.0. Use :func:`@override_settings(ROOT_URLCONF=...)
  189. <django.test.override_settings>` instead.
  190. ``prefix`` argument to :func:`~django.conf.urls.i18n.i18n_patterns`
  191. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  192. Related to the previous item, the ``prefix`` argument to
  193. :func:`django.conf.urls.i18n.i18n_patterns` has been deprecated. Simply pass a
  194. list of :func:`django.conf.urls.url` instances instead.
  195. Using an incorrect count of unpacked values in the :ttag:`for` template tag
  196. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  197. Using an incorrect count of unpacked values in :ttag:`for` tag will raise an
  198. exception rather than fail silently in Django 2.0.