3.1.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. ============================================
  2. Django 3.1 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected August 2020*
  5. Welcome to Django 3.1!
  6. These release notes cover the :ref:`new features <whats-new-3.1>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-3.1>` you'll
  8. want to be aware of when upgrading from Django 3.0 or earlier. We've
  9. :ref:`dropped some features<removed-features-3.1>` 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.1>`.
  12. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  13. project.
  14. Python compatibility
  15. ====================
  16. Django 3.1 supports Python 3.6, 3.7, and 3.8. We **highly recommend** and only
  17. officially support the latest release of each series.
  18. .. _whats-new-3.1:
  19. What's new in Django 3.1
  20. ========================
  21. Minor features
  22. --------------
  23. :mod:`django.contrib.admin`
  24. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  25. * The new ``django.contrib.admin.EmptyFieldListFilter`` for
  26. :attr:`.ModelAdmin.list_filter` allows filtering on empty values (empty
  27. strings and nulls) in the admin changelist view.
  28. :mod:`django.contrib.admindocs`
  29. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  30. * ...
  31. :mod:`django.contrib.auth`
  32. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  33. * The default iteration count for the PBKDF2 password hasher is increased from
  34. 180,000 to 216,000.
  35. * Added the :setting:`PASSWORD_RESET_TIMEOUT` setting to define the minimum
  36. number of seconds a password reset link is valid for. This is encouraged
  37. instead of deprecated ``PASSWORD_RESET_TIMEOUT_DAYS``, which will be removed
  38. in Django 4.0.
  39. :mod:`django.contrib.contenttypes`
  40. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  41. * ...
  42. :mod:`django.contrib.gis`
  43. ~~~~~~~~~~~~~~~~~~~~~~~~~
  44. * :lookup:`relate` lookup is now supported on MariaDB.
  45. * Added the :attr:`.LinearRing.is_counterclockwise` property.
  46. * :class:`~django.contrib.gis.db.models.functions.AsGeoJSON` is now supported
  47. on Oracle.
  48. * Added the :class:`~django.contrib.gis.db.models.functions.AsWKB` and
  49. :class:`~django.contrib.gis.db.models.functions.AsWKT` functions.
  50. :mod:`django.contrib.messages`
  51. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  52. * ...
  53. :mod:`django.contrib.postgres`
  54. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  55. * The new :class:`~django.contrib.postgres.indexes.BloomIndex` class allows
  56. creating ``bloom`` indexes in the database. The new
  57. :class:`~django.contrib.postgres.operations.BloomExtension` migration
  58. operation installs the ``bloom`` extension to add support for this index.
  59. * :meth:`~django.db.models.Model.get_FOO_display` now supports
  60. :class:`~django.contrib.postgres.fields.ArrayField` and
  61. :class:`~django.contrib.postgres.fields.RangeField`.
  62. * The new :lookup:`rangefield.lower_inc`, :lookup:`rangefield.lower_inf`,
  63. :lookup:`rangefield.upper_inc`, and :lookup:`rangefield.upper_inf` allows
  64. querying :class:`~django.contrib.postgres.fields.RangeField` by a bound type.
  65. * :lookup:`rangefield.contained_by` now supports
  66. :class:`~django.db.models.SmallAutoField`,
  67. :class:`~django.db.models.AutoField`,
  68. :class:`~django.db.models.BigAutoField`,
  69. :class:`~django.db.models.SmallIntegerField`, and
  70. :class:`~django.db.models.DecimalField`.
  71. * :class:`~django.contrib.postgres.search.SearchQuery` now supports
  72. ``'websearch'`` search type on PostgreSQL 11+.
  73. :mod:`django.contrib.redirects`
  74. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  75. * ...
  76. :mod:`django.contrib.sessions`
  77. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  78. * The :setting:`SESSION_COOKIE_SAMESITE` setting now allows ``'None'`` (string)
  79. value to explicitly state that the cookie is sent with all same-site and
  80. cross-site requests.
  81. :mod:`django.contrib.sitemaps`
  82. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  83. * ...
  84. :mod:`django.contrib.sites`
  85. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  86. * ...
  87. :mod:`django.contrib.staticfiles`
  88. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  89. * The :setting:`STATICFILES_DIRS` setting now supports :class:`pathlib.Path`.
  90. :mod:`django.contrib.syndication`
  91. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  92. * ...
  93. Cache
  94. ~~~~~
  95. * The :func:`~django.views.decorators.cache.cache_control` decorator and
  96. :func:`~django.utils.cache.patch_cache_control` method now support multiple
  97. field names in the ``no-cache`` directive for the ``Cache-Control`` header,
  98. according to :rfc:`7234#section-5.2.2.2`.
  99. * :meth:`~django.core.caches.cache.delete` now returns ``True`` if the key was
  100. successfully deleted, ``False`` otherwise.
  101. CSRF
  102. ~~~~
  103. * The :setting:`CSRF_COOKIE_SAMESITE` setting now allows ``'None'`` (string)
  104. value to explicitly state that the cookie is sent with all same-site and
  105. cross-site requests.
  106. Email
  107. ~~~~~
  108. * The :setting:`EMAIL_FILE_PATH` setting, used by the :ref:`file email backend
  109. <topic-email-file-backend>`, now supports :class:`pathlib.Path`.
  110. File Storage
  111. ~~~~~~~~~~~~
  112. * ``FileSystemStorage.save()`` method now supports :class:`pathlib.Path`.
  113. File Uploads
  114. ~~~~~~~~~~~~
  115. * ...
  116. Forms
  117. ~~~~~
  118. * :class:`~django.forms.ModelChoiceIterator`, used by
  119. :class:`~django.forms.ModelChoiceField` and
  120. :class:`~django.forms.ModelMultipleChoiceField`, now uses
  121. :class:`~django.forms.ModelChoiceIteratorValue` that can be used by widgets
  122. to access model instances. See :ref:`iterating-relationship-choices` for
  123. details.
  124. * :class:`django.forms.DateTimeField` now accepts dates in a subset of ISO 8601
  125. datetime formats, including optional timezone (e.g. ``2019-10-10T06:47``,
  126. ``2019-10-10T06:47:23+04:00``, or ``2019-10-10T06:47:23Z``). Additionally, it
  127. now uses ``DATE_INPUT_FORMATS`` in addition to ``DATETIME_INPUT_FORMATS``
  128. when converting a field input to a ``datetime`` value.
  129. Generic Views
  130. ~~~~~~~~~~~~~
  131. * ...
  132. Internationalization
  133. ~~~~~~~~~~~~~~~~~~~~
  134. * The :setting:`LANGUAGE_COOKIE_SAMESITE` setting now allows ``'None'``
  135. (string) value to explicitly state that the cookie is sent with all same-site
  136. and cross-site requests.
  137. * Added support and translations for the Algerian Arabic language.
  138. Logging
  139. ~~~~~~~
  140. * ...
  141. Management Commands
  142. ~~~~~~~~~~~~~~~~~~~
  143. * ...
  144. Migrations
  145. ~~~~~~~~~~
  146. * Migrations are now loaded also from directories without ``__init__.py``
  147. files.
  148. Models
  149. ~~~~~~
  150. * The new :class:`~django.db.models.functions.ExtractIsoWeekDay` function
  151. extracts ISO-8601 week days from :class:`~django.db.models.DateField` and
  152. :class:`~django.db.models.DateTimeField`, and the new :lookup:`iso_week_day`
  153. lookup allows querying by an ISO-8601 day of week.
  154. * :meth:`.QuerySet.explain` now supports:
  155. * ``TREE`` format on MySQL 8.0.16+,
  156. * ``analyze`` option on MySQL 8.0.18+ and MariaDB.
  157. * Added :class:`~django.db.models.PositiveBigIntegerField` which acts much like
  158. a :class:`~django.db.models.PositiveIntegerField` except that it only allows
  159. values under a certain (database-dependent) limit. Values from ``0`` to
  160. ``9223372036854775807`` are safe in all databases supported by Django.
  161. * The new :class:`~django.db.models.RESTRICT` option for
  162. :attr:`~django.db.models.ForeignKey.on_delete` argument of ``ForeignKey`` and
  163. ``OneToOneField`` emulates the behavior of the SQL constraint ``ON DELETE
  164. RESTRICT``.
  165. * :attr:`.CheckConstraint.check` now supports boolean expressions.
  166. * The :meth:`.RelatedManager.add`, :meth:`~.RelatedManager.create`, and
  167. :meth:`~.RelatedManager.set` methods now accept callables as values in the
  168. ``through_defaults`` argument.
  169. Pagination
  170. ~~~~~~~~~~
  171. * :class:`~django.core.paginator.Paginator` can now be iterated over to yield
  172. its pages.
  173. Requests and Responses
  174. ~~~~~~~~~~~~~~~~~~~~~~
  175. * If :setting:`ALLOWED_HOSTS` is empty and ``DEBUG=True``, subdomains of
  176. localhost are now allowed in the ``Host`` header, e.g. ``static.localhost``.
  177. * :meth:`.HttpResponse.set_cookie` and :meth:`.HttpResponse.set_signed_cookie`
  178. now allow using ``samesite='None'`` (string) to explicitly state that the
  179. cookie is sent with all same-site and cross-site requests.
  180. Serialization
  181. ~~~~~~~~~~~~~
  182. * ...
  183. Signals
  184. ~~~~~~~
  185. * ...
  186. Templates
  187. ~~~~~~~~~
  188. * The renamed :ttag:`translate` and :ttag:`blocktranslate` template tags are
  189. introduced for internationalization in template code. The older :ttag:`trans`
  190. and :ttag:`blocktrans` template tags aliases continue to work, and will be
  191. retained for the foreseeable future.
  192. Tests
  193. ~~~~~
  194. * :class:`~django.test.SimpleTestCase` now implements the ``debug()`` method to
  195. allow running a test without collecting the result and catching exceptions.
  196. This can be used to support running tests under a debugger.
  197. * The new :setting:`MIGRATE <TEST_MIGRATE>` test database setting allows
  198. disabling of migrations during a test database creation.
  199. * Django test runner now supports a :option:`test --buffer` option to discard
  200. output for passing tests.
  201. URLs
  202. ~~~~
  203. * :ref:`Path converters <registering-custom-path-converters>` can now raise
  204. ``ValueError`` in ``to_url()`` to indicate no match when reversing URLs.
  205. Utilities
  206. ~~~~~~~~~
  207. * :func:`~django.utils.encoding.filepath_to_uri` now supports
  208. :class:`pathlib.Path`.
  209. * :func:`~django.utils.dateparse.parse_duration` now supports comma separators
  210. for decimal fractions in the ISO 8601 format.
  211. * :func:`~django.utils.dateparse.parse_datetime`,
  212. :func:`~django.utils.dateparse.parse_duration`, and
  213. :func:`~django.utils.dateparse.parse_time` now support comma separators for
  214. milliseconds.
  215. Validators
  216. ~~~~~~~~~~
  217. * ...
  218. Miscellaneous
  219. ~~~~~~~~~~~~~
  220. * The SQLite backend now supports :class:`pathlib.Path` for the ``NAME``
  221. setting.
  222. * The ``settings.py`` generated by the :djadmin:`startproject` command now uses
  223. :class:`pathlib.Path` instead of :mod:`os.path` for building filesystem
  224. paths.
  225. * The :setting:`TIME_ZONE <DATABASE-TIME_ZONE>` setting is now allowed on
  226. databases that support time zones.
  227. .. _backwards-incompatible-3.1:
  228. Backwards incompatible changes in 3.1
  229. =====================================
  230. Database backend API
  231. --------------------
  232. This section describes changes that may be needed in third-party database
  233. backends.
  234. * ``DatabaseOperations.fetch_returned_insert_columns()`` now requires an
  235. additional ``returning_params`` argument.
  236. * ``connection.timezone`` property is now ``'UTC'`` by default, or the
  237. :setting:`TIME_ZONE <DATABASE-TIME_ZONE>` when :setting:`USE_TZ` is ``True``
  238. on databases that support time zones. Previously, it was ``None`` on
  239. databases that support time zones.
  240. Dropped support for MariaDB 10.1
  241. --------------------------------
  242. Upstream support for MariaDB 10.1 ends in October 2020. Django 3.1 supports
  243. MariaDB 10.2 and higher.
  244. Miscellaneous
  245. -------------
  246. * The cache keys used by :ttag:`cache` and generated by
  247. :func:`~django.core.cache.utils.make_template_fragment_key` are different
  248. from the keys generated by older versions of Django. After upgrading to
  249. Django 3.1, the first request to any previously cached template fragment will
  250. be a cache miss.
  251. * The compatibility imports of ``django.core.exceptions.EmptyResultSet`` in
  252. ``django.db.models.query``, ``django.db.models.sql``, and
  253. ``django.db.models.sql.datastructures`` are removed.
  254. * The compatibility import of ``django.core.exceptions.FieldDoesNotExist`` in
  255. ``django.db.models.fields`` is removed.
  256. * The compatibility imports of ``django.forms.utils.pretty_name()`` and
  257. ``django.forms.boundfield.BoundField`` in ``django.forms.forms`` are removed.
  258. * The compatibility imports of ``Context``, ``ContextPopException``, and
  259. ``RequestContext`` in ``django.template.base`` are removed.
  260. * The compatibility import of
  261. ``django.contrib.admin.helpers.ACTION_CHECKBOX_NAME`` in
  262. ``django.contrib.admin`` is removed.
  263. * The :setting:`STATIC_URL` and :setting:`MEDIA_URL` settings set to relative
  264. paths are now prefixed by the server-provided value of ``SCRIPT_NAME`` (or
  265. ``/`` if not set). This change should not affect settings set to valid URLs
  266. or absolute paths.
  267. * :class:`~django.middleware.http.ConditionalGetMiddleware` no longer adds the
  268. ``ETag`` header to responses with an empty
  269. :attr:`~django.http.HttpResponse.content`.
  270. * ``django.utils.decorators.classproperty()`` decorator is moved to
  271. ``django.utils.functional.classproperty()``.
  272. * :tfilter:`floatformat` template filter now outputs (positive) ``0`` for
  273. negative numbers which round to zero.
  274. * :attr:`Meta.ordering <django.db.models.Options.ordering>` and
  275. :attr:`Meta.unique_together <django.db.models.Options.unique_together>`
  276. options on models in ``django.contrib`` modules that were formerly tuples are
  277. now lists.
  278. * The admin calendar widget now handles two-digit years according to the Open
  279. Group Specification, i.e. values between 69 and 99 are mapped to the previous
  280. century, and values between 0 and 68 are mapped to the current century.
  281. * Date-only formats are removed from the default list for
  282. :setting:`DATETIME_INPUT_FORMATS`.
  283. * The :class:`~django.forms.FileInput` widget no longer renders with the
  284. ``required`` HTML attribute when initial data exists.
  285. .. _deprecated-features-3.1:
  286. Features deprecated in 3.1
  287. ==========================
  288. Miscellaneous
  289. -------------
  290. * ``PASSWORD_RESET_TIMEOUT_DAYS`` setting is deprecated in favor of
  291. :setting:`PASSWORD_RESET_TIMEOUT`.
  292. * The undocumented usage of the :lookup:`isnull` lookup with non-boolean values
  293. as the right-hand side is deprecated, use ``True`` or ``False`` instead.
  294. * The barely documented ``django.db.models.query_utils.InvalidQuery`` exception
  295. class is deprecated in favor of
  296. :class:`~django.core.exceptions.FieldDoesNotExist` and
  297. :class:`~django.core.exceptions.FieldError`.
  298. * The ``django-admin.py`` entry point is deprecated in favor of
  299. ``django-admin``.
  300. .. _removed-features-3.1:
  301. Features removed in 3.1
  302. =======================
  303. These features have reached the end of their deprecation cycle and are removed
  304. in Django 3.1.
  305. See :ref:`deprecated-features-2.2` for details on these changes, including how
  306. to remove usage of these features.
  307. * ``django.utils.timezone.FixedOffset`` is removed.
  308. * ``django.core.paginator.QuerySetPaginator`` is removed.
  309. * A model's ``Meta.ordering`` doesn't affect ``GROUP BY`` queries.
  310. * ``django.contrib.postgres.fields.FloatRangeField`` and
  311. ``django.contrib.postgres.forms.FloatRangeField`` are removed.
  312. * The ``FILE_CHARSET`` setting is removed.
  313. * ``django.contrib.staticfiles.storage.CachedStaticFilesStorage`` is removed.
  314. * The ``RemoteUserBackend.configure_user()`` method requires ``request`` as the
  315. first positional argument.
  316. * Support for ``SimpleTestCase.allow_database_queries`` and
  317. ``TransactionTestCase.multi_db`` is removed.