1.9.txt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. ============================================
  2. Django 1.9 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. Welcome to Django 1.9!
  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.8 or older versions. We've :ref:`dropped some features
  8. <deprecation-removed-in-1.9>` that have reached the end of their deprecation
  9. cycle, and we've `begun the deprecation process for some features`_.
  10. .. _`new features`: `What's new in Django 1.9`_
  11. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.9`_
  12. .. _`dropped some features`: `Features removed in 1.9`_
  13. .. _`begun the deprecation process for some features`: `Features deprecated in 1.9`_
  14. Python compatibility
  15. ====================
  16. Like Django 1.8, Django 1.9 requires Python 2.7 or above, though we
  17. **highly recommend** the latest minor release. We've dropped support for
  18. Python 3.2 and added support for Python 3.5.
  19. What's new in Django 1.9
  20. ========================
  21. ...
  22. Minor features
  23. ~~~~~~~~~~~~~~
  24. :mod:`django.contrib.admin`
  25. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  26. * Admin views now have ``model_admin`` or ``admin_site`` attributes.
  27. * The URL of the admin change view has been changed (was at
  28. ``/admin/<app>/<model>/<pk>/`` by default and is now at
  29. ``/admin/<app>/<model>/<pk>/change/``). This should not affect your
  30. application unless you have hardcoded admin URLs. In that case, replace those
  31. links by :ref:`reversing admin URLs <admin-reverse-urls>` instead. Note that
  32. the old URL still redirects to the new one for backwards compatibility, but
  33. it may be removed in a future version.
  34. * :meth:`ModelAdmin.get_list_select_related()
  35. <django.contrib.admin.ModelAdmin.get_list_select_related>` was added to allow
  36. changing the ``select_related()`` values used in the admin's changelist query
  37. based on the request.
  38. :mod:`django.contrib.auth`
  39. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  40. * The default iteration count for the PBKDF2 password hasher has been increased
  41. by 20%. This backwards compatible change will not affect users who have
  42. subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to change the
  43. default value.
  44. :mod:`django.contrib.gis`
  45. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  46. * The GDAL interface now supports instantiating file-based and in-memory
  47. :ref:`GDALRaster objects <raster-data-source-objects>` from raw data.
  48. Setters for raster properties such as projection or pixel values have
  49. been added.
  50. :mod:`django.contrib.messages`
  51. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  52. * ...
  53. :mod:`django.contrib.postgres`
  54. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  55. * Added :doc:`/ref/contrib/postgres/aggregates`.
  56. :mod:`django.contrib.redirects`
  57. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  58. * ...
  59. :mod:`django.contrib.sessions`
  60. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  61. * ...
  62. :mod:`django.contrib.sitemaps`
  63. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  64. * ...
  65. :mod:`django.contrib.sites`
  66. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  67. * ...
  68. :mod:`django.contrib.staticfiles`
  69. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  70. * ...
  71. :mod:`django.contrib.syndication`
  72. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  73. * ...
  74. Cache
  75. ^^^^^
  76. * ``django.core.cache.backends.base.BaseCache`` now has a ``get_or_set()``
  77. method.
  78. Email
  79. ^^^^^
  80. * ...
  81. File Storage
  82. ^^^^^^^^^^^^
  83. * ...
  84. File Uploads
  85. ^^^^^^^^^^^^
  86. * ...
  87. Forms
  88. ^^^^^
  89. * :class:`~django.forms.ModelForm` accepts the new ``Meta`` option
  90. ``field_classes`` to customize the type of the fields. See
  91. :ref:`modelforms-overriding-default-fields` for details.
  92. * You can now specify the order in which form fields are rendered with the
  93. :attr:`~django.forms.Form.field_order` attribute, the ``field_order``
  94. constructor argument , or the :meth:`~django.forms.Form.order_fields` method.
  95. Generic Views
  96. ^^^^^^^^^^^^^
  97. * Class based views generated using ``as_view()`` now have ``view_class``
  98. and ``view_initkwargs`` attributes.
  99. Internationalization
  100. ^^^^^^^^^^^^^^^^^^^^
  101. * The :func:`django.views.i18n.set_language` view now properly redirects to
  102. :ref:`translated URLs <url-internationalization>`, when available.
  103. * The :func:`django.views.i18n.javascript_catalog` view now works correctly
  104. if used multiple times with different configurations on the same page.
  105. Management Commands
  106. ^^^^^^^^^^^^^^^^^^^
  107. * The new :djadmin:`sendtestemail` command lets you send a test email to
  108. easily confirm that email sending through Django is working.
  109. * To increase the readability of the SQL code generated by
  110. :djadmin:`sqlmigrate`, the SQL code generated for each migration operation is
  111. preceded by the operation's description.
  112. Models
  113. ^^^^^^
  114. * Added the :meth:`RelatedManager.set()
  115. <django.db.models.fields.related.RelatedManager.set()>` method to the related
  116. managers created by ``ForeignKey``, ``GenericForeignKey``, and
  117. ``ManyToManyField``.
  118. * Added the ``keep_parents`` parameter to :meth:`Model.delete()
  119. <django.db.models.Model.delete>` to allow deleting only a child's data in a
  120. model that uses multi-table inheritance.
  121. * Added a system check to prevent defining both ``Meta.ordering`` and
  122. ``order_with_respect_to`` on the same model.
  123. CSRF
  124. ^^^^
  125. * The request header's name used for CSRF authentication can be customized
  126. with :setting:`CSRF_HEADER_NAME`.
  127. Signals
  128. ^^^^^^^
  129. * ...
  130. Templates
  131. ^^^^^^^^^
  132. * Template tags created with the :meth:`~django.template.Library.simple_tag`
  133. helper can now store results in a template variable by using the ``as``
  134. argument.
  135. * Added a :meth:`Context.setdefault() <django.template.Context.setdefault>`
  136. method.
  137. * A warning will now be logged for missing context variables. These messages
  138. will be logged to the :ref:`django.template <django-template-logger>` logger.
  139. Requests and Responses
  140. ^^^^^^^^^^^^^^^^^^^^^^
  141. * Unless :attr:`HttpResponse.reason_phrase
  142. <django.http.HttpResponse.reason_phrase>` is explicitly set, it now is
  143. determined by the current value of :attr:`HttpResponse.status_code
  144. <django.http.HttpResponse.status_code>`. Modifying the value of
  145. ``status_code`` outside of the constructor will also modify the value of
  146. ``reason_phrase``.
  147. * The debug view now shows details of chained exceptions on Python 3.
  148. Tests
  149. ^^^^^
  150. * ...
  151. URLs
  152. ^^^^
  153. * Regular expression lookaround assertions are now allowed in URL patterns.
  154. Validators
  155. ^^^^^^^^^^
  156. * Added :func:`django.core.validators.int_list_validator` to generate
  157. validators of strings containing integers separated with a custom character.
  158. Backwards incompatible changes in 1.9
  159. =====================================
  160. .. warning::
  161. In addition to the changes outlined in this section, be sure to review the
  162. :doc:`deprecation timeline </internals/deprecation>` for any features that
  163. have been removed. If you haven't updated your code within the
  164. deprecation timeline for a given feature, its removal may appear as a
  165. backwards incompatible change.
  166. Database backend API
  167. ~~~~~~~~~~~~~~~~~~~~
  168. * A couple of new tests rely on the ability of the backend to introspect column
  169. defaults (returning the result as ``Field.default``). You can set the
  170. ``can_introspect_default`` database feature to ``False`` if your backend
  171. doesn't implement this. You may want to review the implementation on the
  172. backends that Django includes for reference (:ticket:`24245`).
  173. Default settings that were tuples are now lists
  174. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  175. The default settings in ``django.conf.global_settings`` were a combination of
  176. lists and tuples. All settings that were formerly tuples are now lists.
  177. ``is_usable`` attribute on template loaders is removed
  178. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  179. Django template loaders previously required an ``is_usable`` attribute to be
  180. defined. If a loader was configured in the template settings and this attribute
  181. was ``False``, the loader would be silently ignored. In practice, this was only
  182. used by the egg loader to detect if setuptools was installed. The ``is_usable``
  183. attribute is now removed and the egg loader instead fails at runtime if
  184. setuptools is not installed.
  185. Related set direct assignment
  186. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  187. :ref:`Direct assignment <direct-assignment>`) used to perform a ``clear()``
  188. followed by a call to ``add()``. This caused needlessly large data changes
  189. and prevented using the :data:`~django.db.models.signals.m2m_changed` signal
  190. to track individual changes in many-to-many relations.
  191. Direct assignment now relies on the the new
  192. :meth:`django.db.models.fields.related.RelatedManager.set()` method on
  193. related managers which by default only processes changes between the
  194. existing related set and the one that's newly assigned. The previous behavior
  195. can be restored by replacing direct assignment by a call to ``set()`` with
  196. the keyword argument ``clear=True``.
  197. ``ModelForm``, and therefore ``ModelAdmin``, internally rely on direct
  198. assignment for many-to-many relations and as a consequence now use the new
  199. behavior.
  200. Filesystem-based template loaders catch more specific exceptions
  201. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  202. When using the :class:`filesystem.Loader <django.template.loaders.filesystem.Loader>`
  203. or :class:`app_directories.Loader <django.template.loaders.app_directories.Loader>`
  204. template loaders, earlier versions of Django raised a
  205. :exc:`~django.template.TemplateDoesNotExist` error if a template source existed
  206. but was unreadable. This could happen under many circumstances, such as if
  207. Django didn't have permissions to open the file, or if the template source was
  208. a directory. Now, Django only silences the exception if the template source
  209. does not exist. All other situations result in the original ``IOError`` being
  210. raised.
  211. HTTP redirects no longer forced to absolute URIs
  212. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  213. Relative redirects are no longer converted to absolute URIs. :rfc:`2616`
  214. required the ``Location`` header in redirect responses to be an absolute URI,
  215. but it has been superseded by :rfc:`7231` which allows relative URIs in
  216. ``Location``, recognizing the actual practice of user agents, almost all of
  217. which support them.
  218. Consequently, the expected URLs passed to ``assertRedirects`` should generally
  219. no longer include the scheme and domain part of the URLs. For example,
  220. ``self.assertRedirects(response, 'http://testserver/some-url/')`` should be
  221. replaced by ``self.assertRedirects(response, '/some-url/')`` (unless the
  222. redirection specifically contained an absolute URL, of course).
  223. Dropped support for PostgreSQL 9.0
  224. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  225. Upstream support for PostgreSQL 9.0 ended in September 2015. As a consequence,
  226. Django 1.9 sets 9.1 as the minimum PostgreSQL version it officially supports.
  227. Miscellaneous
  228. ~~~~~~~~~~~~~
  229. * CSS and images in ``contrib.admin`` to support Internet Explorer 6 & 7 have
  230. been removed as these browsers have reached end-of-life.
  231. * The text displayed for null columns in the admin changelist ``list_display``
  232. cells has changed from ``(None)`` (or its translated equivalent) to ``-``.
  233. * ``django.http.responses.REASON_PHRASES`` and
  234. ``django.core.handlers.wsgi.STATUS_CODE_TEXT`` have been removed. Use
  235. Python's stdlib instead: :data:`http.client.responses` for Python 3 and
  236. `httplib.responses`_ for Python 2.
  237. .. _`httplib.responses`: https://docs.python.org/2/library/httplib.html#httplib.responses
  238. * ``ValuesQuerySet`` and ``ValuesListQuerySet`` have been removed.
  239. * The ``admin/base.html`` template no longer sets
  240. ``window.__admin_media_prefix__``. Image references in JavaScript that used
  241. that value to construct absolute URLs have been moved to CSS for easier
  242. customization.
  243. * ``CommaSeparatedIntegerField`` validation has been refined to forbid values
  244. like ``','``, ``',1'``, and ``'1,,2'``.
  245. .. _deprecated-features-1.9:
  246. Features deprecated in 1.9
  247. ==========================
  248. ``assignment_tag()``
  249. ~~~~~~~~~~~~~~~~~~~~
  250. Django 1.4 added the ``assignment_tag`` helper to ease the creation of
  251. template tags that store results in a template variable. The
  252. :meth:`~django.template.Library.simple_tag` helper has gained this same
  253. ability, making the ``assignment_tag`` obsolete. Tags that use
  254. ``assignment_tag`` should be updated to use ``simple_tag``.
  255. ``{% cycle %}`` syntax with comma-separated arguments
  256. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  257. The :ttag:`cycle` tag supports an inferior old syntax from previous Django
  258. versions:
  259. .. code-block:: html+django
  260. {% cycle row1,row2,row3 %}
  261. Its parsing caused bugs with the current syntax, so support for the old syntax
  262. will be removed in Django 2.0 following an accelerated deprecation.
  263. ``Field.rel`` changes
  264. ~~~~~~~~~~~~~~~~~~~~~
  265. ``Field.rel`` and its methods and attributes have changed to match the related
  266. fields API. The ``Field.rel`` attribute is renamed to ``remote_field`` and many
  267. of its methods and attributes are either changed or renamed.
  268. The aim of these changes is to provide a documented API for relation fields.
  269. Miscellaneous
  270. ~~~~~~~~~~~~~
  271. * The ``weak`` argument to ``django.dispatch.signals.Signal.disconnect()`` has
  272. been deprecated as it has no effect.
  273. * The ``check_aggregate_support()`` method of
  274. ``django.db.backends.base.BaseDatabaseOperations`` has been deprecated and
  275. will be removed in Django 2.1. The more general ``check_expression_support()``
  276. should be used instead.
  277. * ``django.forms.extras`` is deprecated. You can find
  278. :class:`~django.forms.SelectDateWidget` in ``django.forms.widgets``
  279. (or simply ``django.forms``) instead.
  280. * Private API ``django.db.models.fields.add_lazy_relation()`` is deprecated.
  281. .. removed-features-1.9:
  282. Features removed in 1.9
  283. =======================
  284. These features have reached the end of their deprecation cycle and so have been
  285. removed in Django 1.9 (please see the :ref:`deprecation timeline
  286. <deprecation-removed-in-1.9>` for more details):
  287. * ``django.utils.dictconfig`` is removed.
  288. * ``django.utils.importlib`` is removed.
  289. * ``django.utils.tzinfo`` is removed.
  290. * ``django.utils.unittest`` is removed.
  291. * The ``syncdb`` command is removed.
  292. * ``django.db.models.signals.pre_syncdb`` and
  293. ``django.db.models.signals.post_syncdb`` is removed.
  294. * Support for ``allow_syncdb`` on database routers is removed.
  295. * The legacy method of syncing apps without migrations is removed,
  296. and migrations are compulsory for all apps. This includes automatic
  297. loading of ``initial_data`` fixtures and support for initial SQL data.
  298. * All models need to be defined inside an installed application or declare an
  299. explicit :attr:`~django.db.models.Options.app_label`. Furthermore, it isn't
  300. possible to import them before their application is loaded. In particular, it
  301. isn't possible to import models inside the root package of an application.
  302. * The model and form ``IPAddressField`` is removed. A stub field remains for
  303. compatibility with historical migrations.
  304. * ``AppCommand.handle_app()`` is no longer be supported.
  305. * ``RequestSite`` and ``get_current_site()`` are no longer importable from
  306. ``django.contrib.sites.models``.
  307. * FastCGI support via the ``runfcgi`` management command is removed.
  308. * ``django.utils.datastructures.SortedDict`` is removed.
  309. * ``ModelAdmin.declared_fieldsets`` is removed.
  310. * The ``util`` modules that provided backwards compatibility are removed:
  311. * ``django.contrib.admin.util``
  312. * ``django.contrib.gis.db.backends.util``
  313. * ``django.db.backends.util``
  314. * ``django.forms.util``
  315. * ``ModelAdmin.get_formsets`` is removed.
  316. * The backward compatible shims introduced to rename the
  317. ``BaseMemcachedCache._get_memcache_timeout()`` method to
  318. ``get_backend_timeout()`` is removed.
  319. * The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` are removed.
  320. * The ``use_natural_keys`` argument for ``serializers.serialize()`` is removed.
  321. * Private API ``django.forms.forms.get_declared_fields()`` is removed.
  322. * The ability to use a ``SplitDateTimeWidget`` with ``DateTimeField`` is
  323. removed.
  324. * The ``WSGIRequest.REQUEST`` property is removed.
  325. * The class ``django.utils.datastructures.MergeDict`` is removed.
  326. * The ``zh-cn`` and ``zh-tw`` language codes are removed.
  327. * The internal ``django.utils.functional.memoize()`` is removed.
  328. * ``django.core.cache.get_cache`` is removed.
  329. * ``django.db.models.loading`` is removed.
  330. * Passing callable arguments to querysets is no longer possible.
  331. * ``BaseCommand.requires_model_validation`` is removed in favor of
  332. ``requires_system_checks``. Admin validators is replaced by admin checks.
  333. * The ``ModelAdmin.validator_class`` and ``default_validator_class`` attributes
  334. are removed.
  335. * ``ModelAdmin.validate()`` is removed.
  336. * ``django.db.backends.DatabaseValidation.validate_field`` is removed in
  337. favor of the ``check_field`` method.
  338. * The ``check`` management command is removed.
  339. * ``django.utils.module_loading.import_by_path`` is removed in favor of
  340. ``django.utils.module_loading.import_string``.
  341. * ``ssi`` and ``url`` template tags are removed from the ``future`` template
  342. tag library.
  343. * ``django.utils.text.javascript_quote()`` is removed.
  344. * Database test settings as independent entries in the database settings,
  345. prefixed by ``TEST_``, are no longer supported.
  346. * The `cache_choices` option to :class:`~django.forms.ModelChoiceField` and
  347. :class:`~django.forms.ModelMultipleChoiceField` is removed.
  348. * The default value of the
  349. :attr:`RedirectView.permanent <django.views.generic.base.RedirectView.permanent>`
  350. attribute has changed from ``True`` to ``False``.
  351. * ``django.contrib.sitemaps.FlatPageSitemap`` is removed in favor of
  352. ``django.contrib.flatpages.sitemaps.FlatPageSitemap``.
  353. * Private API ``django.test.utils.TestTemplateLoader`` is removed.
  354. * The ``django.contrib.contenttypes.generic`` module is removed.