3.0.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. ============================================
  2. Django 3.0 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected December 2019*
  5. Welcome to Django 3.0!
  6. These release notes cover the :ref:`new features <whats-new-3.0>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-3.0>` you'll
  8. want to be aware of when upgrading from Django 2.2 or earlier. We've
  9. :ref:`dropped some features<removed-features-3.0>` that have reached the end of
  10. their deprecation cycle, and we've :ref:`begun the deprecation process for
  11. some features <deprecated-features-3.0>`.
  12. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  13. project.
  14. Python compatibility
  15. ====================
  16. Django 3.0 supports Python 3.6, 3.7, and 3.8. We **highly recommend** and only
  17. officially support the latest release of each series.
  18. The Django 2.2.x series is the last to support Python 3.5.
  19. Third-party library support for older version of Django
  20. =======================================================
  21. Following the release of Django 3.0, we suggest that third-party app authors
  22. drop support for all versions of Django prior to 2.2. At that time, you should
  23. be able to run your package's tests using ``python -Wd`` so that deprecation
  24. warnings appear. After making the deprecation warning fixes, your app should be
  25. compatible with Django 3.0.
  26. .. _whats-new-3.0:
  27. What's new in Django 3.0
  28. ========================
  29. Minor features
  30. --------------
  31. :mod:`django.contrib.admin`
  32. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  33. * Added support for the ``admin_order_field`` attribute on properties in
  34. :attr:`.ModelAdmin.list_display`.
  35. * The new :meth:`ModelAdmin.get_inlines()
  36. <django.contrib.admin.ModelAdmin.get_inlines>` method allows specifying the
  37. inlines based on the request or model instance.
  38. :mod:`django.contrib.admindocs`
  39. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  40. * ...
  41. :mod:`django.contrib.auth`
  42. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  43. * The new ``reset_url_token`` attribute in
  44. :class:`~django.contrib.auth.views.PasswordResetConfirmView` allows specifying
  45. a token parameter displayed as a component of password reset URLs.
  46. :mod:`django.contrib.contenttypes`
  47. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. * ...
  49. :mod:`django.contrib.gis`
  50. ~~~~~~~~~~~~~~~~~~~~~~~~~
  51. * Allowed MySQL spatial lookup functions to operate on real geometries.
  52. Previous support was limited to bounding boxes.
  53. * Added the :class:`~django.contrib.gis.db.models.functions.GeometryDistance`
  54. function, supported on PostGIS.
  55. * Added support for the ``furlong`` unit in
  56. :class:`~django.contrib.gis.measure.Distance`.
  57. :mod:`django.contrib.messages`
  58. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59. * ...
  60. :mod:`django.contrib.postgres`
  61. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  62. * ...
  63. :mod:`django.contrib.redirects`
  64. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  65. * ...
  66. :mod:`django.contrib.sessions`
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  68. * The new
  69. :meth:`~django.contrib.sessions.backends.base.SessionBase.get_session_cookie_age()`
  70. methods allows dynamically specifying the session cookie age.
  71. :mod:`django.contrib.sitemaps`
  72. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  73. * ...
  74. :mod:`django.contrib.sites`
  75. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  76. * ...
  77. :mod:`django.contrib.staticfiles`
  78. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  79. * ...
  80. :mod:`django.contrib.syndication`
  81. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  82. * Added the ``language`` class attribute to the
  83. :class:`django.contrib.syndication.views.Feed` to customize a feed language.
  84. The default value is :func:`~django.utils.translation.get_language()` instead
  85. of :setting:`LANGUAGE_CODE`.
  86. Cache
  87. ~~~~~
  88. * ...
  89. CSRF
  90. ~~~~
  91. * ...
  92. Email
  93. ~~~~~
  94. * ...
  95. File Storage
  96. ~~~~~~~~~~~~
  97. * ...
  98. File Uploads
  99. ~~~~~~~~~~~~
  100. * ...
  101. Forms
  102. ~~~~~
  103. * Formsets may control the widget used when ordering forms via
  104. :attr:`~django.forms.formsets.BaseFormSet.can_order` by setting the
  105. :attr:`~django.forms.formsets.BaseFormSet.ordering_widget` attribute or
  106. overriding :attr:`~django.forms.formsets.BaseFormSet.get_ordering_widget()`.
  107. Generic Views
  108. ~~~~~~~~~~~~~
  109. * ...
  110. Internationalization
  111. ~~~~~~~~~~~~~~~~~~~~
  112. * Added the :setting:`LANGUAGE_COOKIE_HTTPONLY`,
  113. :setting:`LANGUAGE_COOKIE_SAMESITE`, and :setting:`LANGUAGE_COOKIE_SECURE`
  114. settings to set the ``HttpOnly``, ``SameSite``, and ``Secure`` flags on
  115. language cookies. The default values of these settings preserve the previous
  116. behavior.
  117. Management Commands
  118. ~~~~~~~~~~~~~~~~~~~
  119. * The new :option:`compilemessages --ignore` option allows ignoring specific
  120. directories when searching for ``.po`` files to compile.
  121. * :option:`showmigrations --list` now shows the applied datetimes when
  122. ``--verbosity`` is 2 and above.
  123. * On PostgreSQL, :djadmin:`dbshell` now supports client-side TLS certificates.
  124. * :djadmin:`inspectdb` now introspects :class:`~django.db.models.OneToOneField`
  125. when a foreign key has a unique or primary key constraint.
  126. * The new :option:`--skip-checks` option skips running system checks prior to
  127. running the command.
  128. Migrations
  129. ~~~~~~~~~~
  130. * ...
  131. Models
  132. ~~~~~~
  133. * Added hash database functions :class:`~django.db.models.functions.MD5`,
  134. :class:`~django.db.models.functions.SHA1`,
  135. :class:`~django.db.models.functions.SHA224`,
  136. :class:`~django.db.models.functions.SHA256`,
  137. :class:`~django.db.models.functions.SHA384`, and
  138. :class:`~django.db.models.functions.SHA512`.
  139. * Added the :class:`~django.db.models.functions.Sign` database function.
  140. * The new ``is_dst`` parameter of the
  141. :class:`~django.db.models.functions.Trunc` database functions determines the
  142. treatment of nonexistent and ambiguous datetimes.
  143. * ``connection.queries`` now shows ``COPY … TO`` statements on PostgreSQL.
  144. * :class:`~django.db.models.FilePathField` now accepts a callable ``path``.
  145. Requests and Responses
  146. ~~~~~~~~~~~~~~~~~~~~~~
  147. * Allowed :class:`~django.http.HttpResponse` to be initialized with
  148. :class:`memoryview` content.
  149. * For use in, for example, Django templates, :attr:`.HttpRequest.headers` now
  150. allows look ups using underscores (e.g. ``user_agent``) in place of hyphens.
  151. Serialization
  152. ~~~~~~~~~~~~~
  153. * ...
  154. Signals
  155. ~~~~~~~
  156. * ...
  157. Templates
  158. ~~~~~~~~~
  159. * ...
  160. Tests
  161. ~~~~~
  162. * The new test :class:`~django.test.Client` argument
  163. ``raise_request_exception`` allows controlling whether or not exceptions
  164. raised during the request should also be raised in the test. The value
  165. defaults to ``True`` for backwards compatibility. If it is ``False`` and an
  166. exception occurs, the test client will return a 500 response with the
  167. attribute :attr:`~django.test.Response.exc_info`, a tuple providing
  168. information of the exception that occurred.
  169. * Tests and test cases to run can be selected by test name pattern using the
  170. new :option:`test -k` option.
  171. * HTML comparison, as used by
  172. :meth:`~django.test.SimpleTestCase.assertHTMLEqual`, now treats text, character
  173. references, and entity references that refer to the same character as
  174. equivalent.
  175. * Django test runner now supports headless mode for selenium tests on supported
  176. browsers. Add the ``--headless`` option to enable this mode.
  177. URLs
  178. ~~~~
  179. * ...
  180. Validators
  181. ~~~~~~~~~~
  182. * ...
  183. .. _backwards-incompatible-3.0:
  184. Backwards incompatible changes in 3.0
  185. =====================================
  186. Database backend API
  187. --------------------
  188. This section describes changes that may be needed in third-party database
  189. backends.
  190. * The second argument of ``DatabaseIntrospection.get_geometry_type()`` is now
  191. the row description instead of the column name.
  192. * ``DatabaseIntrospection.get_field_type()`` may no longer return tuples.
  193. * If the database can create foreign keys in the same SQL statement that adds a
  194. field, add ``SchemaEditor.sql_create_column_inline_fk`` with the appropriate
  195. SQL; otherwise, set ``DatabaseFeatures.can_create_inline_fk = False``.
  196. * ``DatabaseFeatures.can_return_id_from_insert`` and
  197. ``can_return_ids_from_bulk_insert`` are renamed to
  198. ``can_return_columns_from_insert`` and ``can_return_rows_from_bulk_insert``.
  199. :mod:`django.contrib.gis`
  200. -------------------------
  201. * Support for PostGIS 2.1 is removed.
  202. * Support for SpatiaLite 4.1 and 4.2 is removed.
  203. * Support for GDAL 1.11 and GEOS 3.4 is removed.
  204. Dropped support for PostgreSQL 9.4
  205. ----------------------------------
  206. Upstream support for PostgreSQL 9.4 ends in December 2019. Django 3.0 supports
  207. PostgreSQL 9.5 and higher.
  208. Dropped support for Oracle 12.1
  209. -------------------------------
  210. Upstream support for Oracle 12.1 ends in July 2021. Django 2.2 will be
  211. supported until April 2022. Django 3.0 officially supports Oracle 12.2 and 18c.
  212. Removed private Python 2 compatibility APIs
  213. -------------------------------------------
  214. While Python 2 support was removed in Django 2.0, some private APIs weren't
  215. removed from Django so that third party apps could continue using them until
  216. the Python 2 end-of-life.
  217. Since we expect apps to drop Python 2 compatibility when adding support for
  218. Django 3.0, we're removing these APIs at this time.
  219. * ``django.test.utils.str_prefix()`` - Strings don't have 'u' prefixes in
  220. Python 3.
  221. * ``django.test.utils.patch_logger()`` - Use
  222. :meth:`unittest.TestCase.assertLogs` instead.
  223. * ``django.utils.lru_cache.lru_cache()`` - Alias of
  224. :func:`functools.lru_cache`.
  225. * ``django.utils.decorators.available_attrs()`` - This function returns
  226. ``functools.WRAPPER_ASSIGNMENTS``.
  227. * ``django.utils.decorators.ContextDecorator`` - Alias of
  228. :class:`contextlib.ContextDecorator`.
  229. * ``django.utils._os.abspathu()`` - Alias of :func:`os.path.abspath`.
  230. * ``django.utils._os.upath()`` and ``npath()`` - These functions do nothing on
  231. Python 3.
  232. * ``django.utils.six`` - Remove usage of this vendored library or switch to
  233. `six <https://pypi.org/project/six/>`_.
  234. * ``django.utils.encoding.python_2_unicode_compatible()`` - Alias of
  235. ``six.python_2_unicode_compatible()``.
  236. * ``django.utils.functional.curry()`` - Use :func:`functools.partial` or
  237. :class:`functools.partialmethod`. See :commit:`5b1c389603a353625ae1603`.
  238. * ``django.utils.safestring.SafeBytes`` - Unused since Django 2.0.
  239. New default value for the ``FILE_UPLOAD_PERMISSIONS`` setting
  240. -------------------------------------------------------------
  241. In older versions, the :setting:`FILE_UPLOAD_PERMISSIONS` setting defaults to
  242. ``None``. With the default :setting:`FILE_UPLOAD_HANDLERS`, this results in
  243. uploaded files having different permissions depending on their size and which
  244. upload handler is used.
  245. ``FILE_UPLOAD_PERMISSION`` now defaults to ``0o644`` to avoid this
  246. inconsistency.
  247. Miscellaneous
  248. -------------
  249. * ``ContentType.__str__()`` now includes the model's ``app_label`` to
  250. disambiguate model's with the same name in different apps.
  251. * Because accessing the language in the session rather than in the cookie is
  252. deprecated, ``LocaleMiddleware`` no longer looks for the user's language in
  253. the session and :func:`django.contrib.auth.logout` no longer preserves the
  254. session's language after logout.
  255. * :func:`django.utils.html.escape` now uses :func:`html.escape` to escape HTML.
  256. This converts ``'`` to ``&#x27;`` instead of the previous equivalent decimal
  257. code ``&#39;``.
  258. * The ``django-admin test -k`` option now works as the :option:`unittest
  259. -k<unittest.-k>` option rather than as a shortcut for ``--keepdb``.
  260. * Support for ``pywatchman`` < 1.2.0 is removed.
  261. * HTML rendered by :class:`~django.forms.SelectDateWidget` for required fields
  262. now have the ``placeholder`` attribute, which mainly may require some
  263. adjustments in tests that compare HTML.
  264. .. _deprecated-features-3.0:
  265. Features deprecated in 3.0
  266. ==========================
  267. ``django.utils.encoding.force_text()`` and ``smart_text()``
  268. -----------------------------------------------------------
  269. The ``smart_text()`` and ``force_text()`` aliases (since Django 2.0) of
  270. ``smart_str()`` and ``force_str()`` are deprecated. Ignore this deprecation if
  271. your code supports Python 2 as the behavior of ``smart_str()`` and
  272. ``force_str()`` is different there.
  273. Miscellaneous
  274. -------------
  275. * ``django.utils.http.urlquote()``, ``urlquote_plus()``, ``urlunquote()``, and
  276. ``urlunquote_plus()`` are deprecated in favor of the functions that they're
  277. aliases for: :func:`urllib.parse.quote`, :func:`~urllib.parse.quote_plus`,
  278. :func:`~urllib.parse.unquote`, and :func:`~urllib.parse.unquote_plus`.
  279. * ``django.utils.translation.ugettext()``, ``ugettext_lazy()``,
  280. ``ugettext_noop()``, ``ungettext()``, and ``ungettext_lazy()`` are deprecated
  281. in favor of the functions that they're aliases for:
  282. :func:`django.utils.translation.gettext`,
  283. :func:`~django.utils.translation.gettext_lazy`,
  284. :func:`~django.utils.translation.gettext_noop`,
  285. :func:`~django.utils.translation.ngettext`, and
  286. :func:`~django.utils.translation.ngettext_lazy`.
  287. * To limit creation of sessions and hence favor some caching strategies,
  288. :func:`django.views.i18n.set_language` will stop setting the user's language
  289. in the session in Django 4.0. Since Django 2.1, the language is always stored
  290. in the :setting:`LANGUAGE_COOKIE_NAME` cookie.
  291. * ``alias=None`` is added to the signature of
  292. :meth:`.Expression.get_group_by_cols`.
  293. * ``django.utils.text.unescape_entities()`` is deprecated in favor of
  294. :func:`html.unescape`. Note that unlike ``unescape_entities()``,
  295. ``html.unescape()`` evaluates lazy strings immediately.
  296. .. _removed-features-3.0:
  297. Features removed in 3.0
  298. =======================
  299. These features have reached the end of their deprecation cycle and are removed
  300. in Django 3.0.
  301. See :ref:`deprecated-features-2.0` for details on these changes, including how
  302. to remove usage of these features.
  303. * The ``django.db.backends.postgresql_psycopg2`` module is removed.
  304. * ``django.shortcuts.render_to_response()`` is removed.
  305. * The ``DEFAULT_CONTENT_TYPE`` setting is removed.
  306. * ``HttpRequest.xreadlines()`` is removed.
  307. * Support for the ``context`` argument of ``Field.from_db_value()`` and
  308. ``Expression.convert_value()`` is removed.
  309. * The ``field_name`` keyword argument of ``QuerySet.earliest()`` and
  310. ``latest()`` is removed.
  311. See :ref:`deprecated-features-2.1` for details on these changes, including how
  312. to remove usage of these features.
  313. * The ``ForceRHR`` GIS function is removed.
  314. * ``django.utils.http.cookie_date()`` is removed.
  315. * The ``staticfiles`` and ``admin_static`` template tag libraries are removed.
  316. * ``django.contrib.staticfiles.templatetags.staticfiles.static()`` is removed.