2.1.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. ========================
  2. Django 2.1 release notes
  3. ========================
  4. *August 1, 2018*
  5. Welcome to Django 2.1!
  6. These release notes cover the :ref:`new features <whats-new-2.1>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-2.1>` you'll
  8. want to be aware of when upgrading from Django 2.0 or earlier. We've
  9. :ref:`dropped some features<removed-features-2.1>` that have reached the end of
  10. their deprecation cycle, and we've :ref:`begun the deprecation process for some
  11. features <deprecated-features-2.1>`.
  12. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  13. project.
  14. Python compatibility
  15. ====================
  16. Django 2.1 supports Python 3.5, 3.6, and 3.7. Django 2.0 is the last version to
  17. support Python 3.4. We **highly recommend** and only officially support the
  18. latest release of each series.
  19. .. _whats-new-2.1:
  20. What's new in Django 2.1
  21. ========================
  22. Model "view" permission
  23. -----------------------
  24. A "view" permission is added to the model :attr:`Meta.default_permissions
  25. <django.db.models.Options.default_permissions>`. The new permissions will be
  26. created automatically when running :djadmin:`migrate`.
  27. This allows giving users read-only access to models in the admin.
  28. :meth:`.ModelAdmin.has_view_permission` is new. The implementation is backwards
  29. compatible in that there isn't a need to assign the "view" permission to allow
  30. users who have the "change" permission to edit objects.
  31. There are a couple of :ref:`backwards incompatible considerations
  32. <view_permission_backwards_incompatible>`.
  33. Minor features
  34. --------------
  35. :mod:`django.contrib.admin`
  36. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  37. * :attr:`.ModelAdmin.search_fields` now accepts any lookup such as
  38. ``field__exact``.
  39. * jQuery is upgraded from version 2.2.3 to 3.3.1.
  40. * The new :meth:`.ModelAdmin.delete_queryset` method allows customizing the
  41. deletion process of the "delete selected objects" action.
  42. * You can now :ref:`override the default admin site
  43. <overriding-default-admin-site>`.
  44. * The new :attr:`.ModelAdmin.sortable_by` attribute and
  45. :meth:`.ModelAdmin.get_sortable_by` method allow limiting the columns that
  46. can be sorted in the change list page.
  47. * The ``admin_order_field`` attribute for elements in
  48. :attr:`.ModelAdmin.list_display` may now be a query expression.
  49. * The new :meth:`.ModelAdmin.get_deleted_objects()` method allows customizing
  50. the deletion process of the delete view and the "delete selected" action.
  51. * The ``actions.html``, ``change_list_results.html``, ``date_hierarchy.html``,
  52. ``pagination.html``, ``prepopulated_fields_js.html``, ``search_form.html``,
  53. and ``submit_line.html`` templates can now be :ref:`overridden per app or
  54. per model <admin-templates-overridden-per-app-or-model>` (besides overridden
  55. globally).
  56. * The admin change list and change form object tools can now be :ref:`overridden
  57. per app, per model, or globally <admin-templates-overridden-per-app-or-model>`
  58. with ``change_list_object_tools.html`` and
  59. ``change_form_object_tools.html`` templates.
  60. * :meth:`.InlineModelAdmin.has_add_permission` is now passed the parent object
  61. as the second positional argument, ``obj``.
  62. * Admin actions may now :ref:`specify permissions <admin-action-permissions>`
  63. to limit their availability to certain users.
  64. :mod:`django.contrib.auth`
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. * :djadmin:`createsuperuser` now gives a prompt to allow bypassing the
  67. :setting:`AUTH_PASSWORD_VALIDATORS` checks.
  68. * :class:`~django.contrib.auth.forms.UserCreationForm` and
  69. :class:`~django.contrib.auth.forms.UserChangeForm` no longer need to be
  70. rewritten for a custom user model.
  71. :mod:`django.contrib.gis`
  72. ~~~~~~~~~~~~~~~~~~~~~~~~~
  73. * The new :meth:`.GEOSGeometry.buffer_with_style` method is a version of
  74. :meth:`~.GEOSGeometry.buffer` that allows customizing the style of the
  75. buffer.
  76. * :class:`~django.contrib.gis.forms.widgets.OpenLayersWidget` is now based on
  77. OpenLayers 4.6.5 (previously 3.20.1).
  78. :mod:`django.contrib.sessions`
  79. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  80. * Added the :setting:`SESSION_COOKIE_SAMESITE` setting to set the ``SameSite``
  81. cookie flag on session cookies.
  82. Cache
  83. ~~~~~
  84. * The :ref:`local-memory cache backend <local-memory-caching>` now uses a
  85. least-recently-used (LRU) culling strategy rather than a pseudo-random one.
  86. * The new ``touch()`` method of the :ref:`low-level cache API
  87. <low-level-cache-api>` updates the timeout of cache keys.
  88. CSRF
  89. ~~~~
  90. * Added the :setting:`CSRF_COOKIE_SAMESITE` setting to set the ``SameSite``
  91. cookie flag on CSRF cookies.
  92. Forms
  93. ~~~~~
  94. * The widget for ``ImageField`` now renders with the HTML attribute
  95. ``accept="image/*"``.
  96. Internationalization
  97. ~~~~~~~~~~~~~~~~~~~~
  98. * Added the :meth:`~django.utils.translation.get_supported_language_variant`
  99. function.
  100. * Untranslated strings for territorial language variants now use the
  101. translations of the generic language. For example, untranslated ``pt_BR``
  102. strings use ``pt`` translations.
  103. Management Commands
  104. ~~~~~~~~~~~~~~~~~~~
  105. * The new :option:`inspectdb --include-views` option allows creating models
  106. for database views.
  107. * The :class:`~django.core.management.BaseCommand` class now uses a custom help
  108. formatter so that the standard options like ``--verbosity`` or ``--settings``
  109. appear last in the help output, giving a more prominent position to subclassed
  110. command's options.
  111. Migrations
  112. ~~~~~~~~~~
  113. * Added support for serialization of ``functools.partialmethod`` objects.
  114. * To support frozen environments, migrations may be loaded from ``.pyc`` files.
  115. Models
  116. ~~~~~~
  117. * Models can now use ``__init_subclass__()`` from :pep:`487`.
  118. * A ``BinaryField`` may now be set to ``editable=True`` if you wish to include
  119. it in model forms.
  120. * A number of new text database functions are added:
  121. :class:`~django.db.models.functions.Chr`,
  122. :class:`~django.db.models.functions.Left`,
  123. :class:`~django.db.models.functions.LPad`,
  124. :class:`~django.db.models.functions.LTrim`,
  125. :class:`~django.db.models.functions.Ord`,
  126. :class:`~django.db.models.functions.Repeat`,
  127. :class:`~django.db.models.functions.Replace`,
  128. :class:`~django.db.models.functions.Right`,
  129. :class:`~django.db.models.functions.RPad`,
  130. :class:`~django.db.models.functions.RTrim`, and
  131. :class:`~django.db.models.functions.Trim`.
  132. * The new :class:`~django.db.models.functions.TruncWeek` function truncates
  133. :class:`~django.db.models.DateField` and
  134. :class:`~django.db.models.DateTimeField` to the Monday of a week.
  135. * Query expressions can now be negated using a minus sign.
  136. * :meth:`.QuerySet.order_by` and :meth:`distinct(*fields) <.QuerySet.distinct>`
  137. now support using field transforms.
  138. * :class:`~django.db.models.BooleanField` can now be ``null=True``. This is
  139. encouraged instead of :class:`~django.db.models.NullBooleanField`, which will
  140. likely be deprecated in the future.
  141. * The new :meth:`.QuerySet.explain` method displays the database's execution
  142. plan of a queryset's query.
  143. * :meth:`.QuerySet.raw` now supports :meth:`~.QuerySet.prefetch_related`.
  144. Requests and Responses
  145. ~~~~~~~~~~~~~~~~~~~~~~
  146. * Added :meth:`.HttpRequest.get_full_path_info`.
  147. * Added the ``samesite`` argument to :meth:`.HttpResponse.set_cookie` to allow
  148. setting the ``SameSite`` cookie flag.
  149. * The new ``as_attachment`` argument for :class:`~django.http.FileResponse`
  150. sets the ``Content-Disposition`` header to make the browser ask if the user
  151. wants to download the file. ``FileResponse`` also tries to set the
  152. ``Content-Type`` and ``Content-Length`` headers where appropriate.
  153. Templates
  154. ~~~~~~~~~
  155. * The new :tfilter:`json_script` filter safely outputs a Python object as JSON,
  156. wrapped in a ``<script>`` tag, ready for use with JavaScript.
  157. Tests
  158. ~~~~~
  159. * Added test :class:`~django.test.Client` support for 307 and 308 redirects.
  160. * The test :class:`~django.test.Client` now serializes a request data
  161. dictionary as JSON if ``content_type='application/json'``. You can customize
  162. the JSON encoder with test client's ``json_encoder`` parameter.
  163. * The new :meth:`.SimpleTestCase.assertWarnsMessage` method is a simpler
  164. version of :meth:`~unittest.TestCase.assertWarnsRegex`.
  165. .. _backwards-incompatible-2.1:
  166. Backwards incompatible changes in 2.1
  167. =====================================
  168. Database backend API
  169. --------------------
  170. * To adhere to :pep:`249`, exceptions where a database doesn't support a
  171. feature are changed from :exc:`NotImplementedError` to
  172. :exc:`django.db.NotSupportedError`.
  173. * Renamed the ``allow_sliced_subqueries`` database feature flag to
  174. ``allow_sliced_subqueries_with_in``.
  175. * ``DatabaseOperations.distinct_sql()`` now requires an additional ``params``
  176. argument and returns a tuple of SQL and parameters instead of a SQL string.
  177. * ``DatabaseFeatures.introspected_boolean_field_type`` is changed from a method
  178. to a property.
  179. :mod:`django.contrib.gis`
  180. -------------------------
  181. * Support for SpatiaLite 4.0 is removed.
  182. Dropped support for MySQL 5.5
  183. -----------------------------
  184. The end of upstream support for MySQL 5.5 is December 2018. Django 2.1 supports
  185. MySQL 5.6 and higher.
  186. Dropped support for PostgreSQL 9.3
  187. ----------------------------------
  188. The end of upstream support for PostgreSQL 9.3 is September 2018. Django 2.1
  189. supports PostgreSQL 9.4 and higher.
  190. Removed ``BCryptPasswordHasher`` from the default ``PASSWORD_HASHERS`` setting
  191. ------------------------------------------------------------------------------
  192. If you used bcrypt with Django 1.4 or 1.5 (before ``BCryptSHA256PasswordHasher``
  193. was added in Django 1.6), you might have some passwords that use the
  194. ``BCryptPasswordHasher`` hasher.
  195. You can check if that's the case like this::
  196. from django.contrib.auth import get_user_model
  197. User = get_user_model()
  198. User.objects.filter(password__startswith='bcrypt$$')
  199. If you want to continue to allow those passwords to be used, you'll
  200. have to define the :setting:`PASSWORD_HASHERS` setting (if you don't already)
  201. and include ``'django.contrib.auth.hashers.BCryptPasswordHasher'``.
  202. Moved ``wrap_label`` widget template context variable
  203. -----------------------------------------------------
  204. To fix the lack of ``<label>`` when using ``RadioSelect`` and
  205. ``CheckboxSelectMultiple`` with ``MultiWidget``, the ``wrap_label`` context
  206. variable now appears as an attribute of each option. For example, in a custom
  207. ``input_option.html`` template, change ``{% if wrap_label %}`` to
  208. ``{% if widget.wrap_label %}``.
  209. ``SameSite`` cookies
  210. --------------------
  211. The cookies used for ``django.contrib.sessions``, ``django.contrib.messages``,
  212. and Django's CSRF protection now set the ``SameSite`` flag to ``Lax`` by
  213. default. Browsers that respect this flag won't send these cookies on
  214. cross-origin requests. If you rely on the old behavior, set the
  215. :setting:`SESSION_COOKIE_SAMESITE` and/or :setting:`CSRF_COOKIE_SAMESITE`
  216. setting to ``None``.
  217. .. _view_permission_backwards_incompatible:
  218. Considerations for the new model "view" permission
  219. --------------------------------------------------
  220. Custom admin forms need to take the view-only case into account
  221. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  222. With the new "view" permission, existing custom admin forms may raise errors
  223. when a user doesn't have the change permission because the form might access
  224. nonexistent fields. Fix this by overriding :meth:`.ModelAdmin.get_form` and
  225. checking if the user has the "change" permissions and returning the default
  226. form if not::
  227. class MyAdmin(admin.ModelAdmin):
  228. def get_form(self, request, obj=None, **kwargs):
  229. if not self.has_change_permission(request, obj):
  230. return super().get_form(request, obj, **kwargs)
  231. return CustomForm
  232. New default view permission could allow unwanted access to admin views
  233. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  234. If you have a custom permission with a codename of the form
  235. ``can_view_<modelname>``, the new view permission handling in the admin will
  236. allow view access to the changelist and detail pages for those models. If this
  237. is unwanted, you must change your custom permission codename.
  238. Miscellaneous
  239. -------------
  240. * The minimum supported version of ``mysqlclient`` is increased from 1.3.3 to
  241. 1.3.7.
  242. * Support for SQLite < 3.7.15 is removed.
  243. * The date format of ``Set-Cookie``'s ``Expires`` directive is changed to
  244. follow :rfc:`7231#section-7.1.1.1` instead of Netscape's cookie standard.
  245. Hyphens present in dates like ``Tue, 25-Dec-2018 22:26:13 GMT`` are removed.
  246. This change should be merely cosmetic except perhaps for antiquated browsers
  247. that don't parse the new format.
  248. * ``allowed_hosts`` is now a required argument of private API
  249. ``django.utils.http.is_safe_url()``.
  250. * The ``multiple`` attribute rendered by the
  251. :class:`~django.forms.SelectMultiple` widget now uses HTML5 boolean syntax
  252. rather than XHTML's ``multiple="multiple"``.
  253. * HTML rendered by form widgets no longer includes a closing slash on void
  254. elements, e.g. ``<br>``. This is incompatible within XHTML, although some
  255. widgets already used aspects of HTML5 such as boolean attributes.
  256. * The value of :class:`~django.forms.SelectDateWidget`'s empty options is
  257. changed from 0 to an empty string, which mainly may require some adjustments
  258. in tests that compare HTML.
  259. * :meth:`.User.has_usable_password` and the
  260. :func:`~django.contrib.auth.hashers.is_password_usable` function no longer
  261. return ``False`` if the password is ``None`` or an empty string, or if the
  262. password uses a hasher that's not in the :setting:`PASSWORD_HASHERS` setting.
  263. This undocumented behavior was a regression in Django 1.6 and prevented users
  264. with such passwords from requesting a password reset. Audit your code to
  265. confirm that your usage of these APIs don't rely on the old behavior.
  266. * Since migrations are now loaded from ``.pyc`` files, you might need to delete
  267. them if you're working in a mixed Python 2 and Python 3 environment.
  268. * Using ``None`` as a :class:`~django.contrib.postgres.fields.JSONField` lookup
  269. value now matches objects that have the specified key and a null value rather
  270. than objects that don't have the key.
  271. * The admin CSS class ``field-box`` is renamed to ``fieldBox`` to prevent
  272. conflicts with the class given to model fields named "box".
  273. * ``QuerySet.raw()`` now caches its results like regular querysets. Use
  274. ``iterator()`` if you don't want caching.
  275. * The database router :meth:`allow_relation` method is called in more cases.
  276. Improperly written routers may need to be updated accordingly.
  277. * Translations are no longer deactivated before running management commands.
  278. If your custom command requires translations to be deactivated (for example,
  279. to insert untranslated content into the database), use the new
  280. :ref:`@no_translations decorator <management-commands-and-locales>`.
  281. * Management commands no longer allow the abbreviated forms of the
  282. ``--settings`` and ``--pythonpath`` arguments.
  283. * The private ``django.db.models.sql.constants.QUERY_TERMS`` constant is
  284. removed. The :meth:`~.RegisterLookupMixin.get_lookup`
  285. and :meth:`~.RegisterLookupMixin.get_lookups` methods
  286. of the :ref:`Lookup Registration API <lookup-registration-api>` may be
  287. suitable alternatives. Compared to the ``QUERY_TERMS`` constant, they allow
  288. your code to also account for any custom lookups that have been registered.
  289. .. _deprecated-features-2.1:
  290. Features deprecated in 2.1
  291. ==========================
  292. Miscellaneous
  293. -------------
  294. * The ``ForceRHR`` GIS function is deprecated in favor of the new
  295. :class:`~django.contrib.gis.db.models.functions.ForcePolygonCW` function.
  296. * ``django.utils.http.cookie_date()`` is deprecated in favor of
  297. :func:`~django.utils.http.http_date`, which follows the format of the latest
  298. RFC.
  299. * ``{% load staticfiles %}`` and ``{% load admin_static %}`` are deprecated
  300. in favor of ``{% load static %}``, which works the same.
  301. * ``django.contrib.staticfiles.templatetags.static()`` is deprecated in favor
  302. of ``django.templatetags.static.static()``.
  303. * Support for :meth:`.InlineModelAdmin.has_add_permission` methods that don't
  304. accept ``obj`` as the second positional argument will be removed in Django
  305. 3.0.
  306. .. _removed-features-2.1:
  307. Features removed in 2.1
  308. =======================
  309. These features have reached the end of their deprecation cycle and are removed
  310. in Django 2.1. See :ref:`deprecated-features-1.11` for details, including how
  311. to remove usage of these features.
  312. * ``contrib.auth.views.login()``, ``logout()``, ``password_change()``,
  313. ``password_change_done()``, ``password_reset()``, ``password_reset_done()``,
  314. ``password_reset_confirm()``, and ``password_reset_complete()`` are removed.
  315. * The ``extra_context`` parameter of ``contrib.auth.views.logout_then_login()``
  316. is removed.
  317. * ``django.test.runner.setup_databases()`` is removed.
  318. * ``django.utils.translation.string_concat()`` is removed.
  319. * ``django.core.cache.backends.memcached.PyLibMCCache`` no longer supports
  320. passing ``pylibmc`` behavior settings as top-level attributes of ``OPTIONS``.
  321. * The ``host`` parameter of ``django.utils.http.is_safe_url()`` is removed.
  322. * Silencing of exceptions raised while rendering the ``{% include %}`` template
  323. tag is removed.
  324. * ``DatabaseIntrospection.get_indexes()`` is removed.
  325. * The ``authenticate()`` method of authentication backends requires ``request``
  326. as the first positional argument.
  327. * The ``django.db.models.permalink()`` decorator is removed.
  328. * The ``USE_ETAGS`` setting is removed. ``CommonMiddleware`` and
  329. ``django.utils.cache.patch_response_headers()`` no longer set ETags.
  330. * The ``Model._meta.has_auto_field`` attribute is removed.
  331. * ``url()``'s support for inline flags in regular expression groups (``(?i)``,
  332. ``(?L)``, ``(?m)``, ``(?s)``, and ``(?u)``) is removed.
  333. * Support for ``Widget.render()`` methods without the ``renderer`` argument
  334. is removed.