2.1.txt 17 KB

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