3.1.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  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. Error Reporting
  111. ~~~~~~~~~~~~~~~
  112. * :class:`django.views.debug.SafeExceptionReporterFilter` now filters sensitive
  113. values from ``request.META`` in exception reports.
  114. * The new :attr:`.SafeExceptionReporterFilter.cleansed_substitute` and
  115. :attr:`.SafeExceptionReporterFilter.hidden_settings` attributes allow
  116. customization of sensitive settings and ``request.META`` filtering in
  117. exception reports.
  118. * The technical 404 debug view now respects
  119. :setting:`DEFAULT_EXCEPTION_REPORTER_FILTER` when applying settings
  120. filtering.
  121. * The new :setting:`DEFAULT_EXCEPTION_REPORTER` allows providing a
  122. :class:`django.views.debug.ExceptionReporter` subclass to customize exception
  123. report generation. See :ref:`custom-error-reports` for details.
  124. File Storage
  125. ~~~~~~~~~~~~
  126. * ``FileSystemStorage.save()`` method now supports :class:`pathlib.Path`.
  127. File Uploads
  128. ~~~~~~~~~~~~
  129. * ...
  130. Forms
  131. ~~~~~
  132. * :class:`~django.forms.ModelChoiceIterator`, used by
  133. :class:`~django.forms.ModelChoiceField` and
  134. :class:`~django.forms.ModelMultipleChoiceField`, now uses
  135. :class:`~django.forms.ModelChoiceIteratorValue` that can be used by widgets
  136. to access model instances. See :ref:`iterating-relationship-choices` for
  137. details.
  138. * :class:`django.forms.DateTimeField` now accepts dates in a subset of ISO 8601
  139. datetime formats, including optional timezone (e.g. ``2019-10-10T06:47``,
  140. ``2019-10-10T06:47:23+04:00``, or ``2019-10-10T06:47:23Z``). Additionally, it
  141. now uses ``DATE_INPUT_FORMATS`` in addition to ``DATETIME_INPUT_FORMATS``
  142. when converting a field input to a ``datetime`` value.
  143. Generic Views
  144. ~~~~~~~~~~~~~
  145. * ...
  146. Internationalization
  147. ~~~~~~~~~~~~~~~~~~~~
  148. * The :setting:`LANGUAGE_COOKIE_SAMESITE` setting now allows ``'None'``
  149. (string) value to explicitly state that the cookie is sent with all same-site
  150. and cross-site requests.
  151. * Added support and translations for the Algerian Arabic language.
  152. Logging
  153. ~~~~~~~
  154. * ...
  155. Management Commands
  156. ~~~~~~~~~~~~~~~~~~~
  157. * ...
  158. Migrations
  159. ~~~~~~~~~~
  160. * Migrations are now loaded also from directories without ``__init__.py``
  161. files.
  162. Models
  163. ~~~~~~
  164. * The new :class:`~django.db.models.functions.ExtractIsoWeekDay` function
  165. extracts ISO-8601 week days from :class:`~django.db.models.DateField` and
  166. :class:`~django.db.models.DateTimeField`, and the new :lookup:`iso_week_day`
  167. lookup allows querying by an ISO-8601 day of week.
  168. * :meth:`.QuerySet.explain` now supports:
  169. * ``TREE`` format on MySQL 8.0.16+,
  170. * ``analyze`` option on MySQL 8.0.18+ and MariaDB.
  171. * Added :class:`~django.db.models.PositiveBigIntegerField` which acts much like
  172. a :class:`~django.db.models.PositiveIntegerField` except that it only allows
  173. values under a certain (database-dependent) limit. Values from ``0`` to
  174. ``9223372036854775807`` are safe in all databases supported by Django.
  175. * The new :class:`~django.db.models.RESTRICT` option for
  176. :attr:`~django.db.models.ForeignKey.on_delete` argument of ``ForeignKey`` and
  177. ``OneToOneField`` emulates the behavior of the SQL constraint ``ON DELETE
  178. RESTRICT``.
  179. * :attr:`.CheckConstraint.check` now supports boolean expressions.
  180. * The :meth:`.RelatedManager.add`, :meth:`~.RelatedManager.create`, and
  181. :meth:`~.RelatedManager.set` methods now accept callables as values in the
  182. ``through_defaults`` argument.
  183. Pagination
  184. ~~~~~~~~~~
  185. * :class:`~django.core.paginator.Paginator` can now be iterated over to yield
  186. its pages.
  187. Requests and Responses
  188. ~~~~~~~~~~~~~~~~~~~~~~
  189. * If :setting:`ALLOWED_HOSTS` is empty and ``DEBUG=True``, subdomains of
  190. localhost are now allowed in the ``Host`` header, e.g. ``static.localhost``.
  191. * :meth:`.HttpResponse.set_cookie` and :meth:`.HttpResponse.set_signed_cookie`
  192. now allow using ``samesite='None'`` (string) to explicitly state that the
  193. cookie is sent with all same-site and cross-site requests.
  194. Serialization
  195. ~~~~~~~~~~~~~
  196. * ...
  197. Signals
  198. ~~~~~~~
  199. * ...
  200. Templates
  201. ~~~~~~~~~
  202. * The renamed :ttag:`translate` and :ttag:`blocktranslate` template tags are
  203. introduced for internationalization in template code. The older :ttag:`trans`
  204. and :ttag:`blocktrans` template tags aliases continue to work, and will be
  205. retained for the foreseeable future.
  206. Tests
  207. ~~~~~
  208. * :class:`~django.test.SimpleTestCase` now implements the ``debug()`` method to
  209. allow running a test without collecting the result and catching exceptions.
  210. This can be used to support running tests under a debugger.
  211. * The new :setting:`MIGRATE <TEST_MIGRATE>` test database setting allows
  212. disabling of migrations during a test database creation.
  213. * Django test runner now supports a :option:`test --buffer` option to discard
  214. output for passing tests.
  215. URLs
  216. ~~~~
  217. * :ref:`Path converters <registering-custom-path-converters>` can now raise
  218. ``ValueError`` in ``to_url()`` to indicate no match when reversing URLs.
  219. Utilities
  220. ~~~~~~~~~
  221. * :func:`~django.utils.encoding.filepath_to_uri` now supports
  222. :class:`pathlib.Path`.
  223. * :func:`~django.utils.dateparse.parse_duration` now supports comma separators
  224. for decimal fractions in the ISO 8601 format.
  225. * :func:`~django.utils.dateparse.parse_datetime`,
  226. :func:`~django.utils.dateparse.parse_duration`, and
  227. :func:`~django.utils.dateparse.parse_time` now support comma separators for
  228. milliseconds.
  229. Validators
  230. ~~~~~~~~~~
  231. * ...
  232. Miscellaneous
  233. ~~~~~~~~~~~~~
  234. * The SQLite backend now supports :class:`pathlib.Path` for the ``NAME``
  235. setting.
  236. * The ``settings.py`` generated by the :djadmin:`startproject` command now uses
  237. :class:`pathlib.Path` instead of :mod:`os.path` for building filesystem
  238. paths.
  239. * The :setting:`TIME_ZONE <DATABASE-TIME_ZONE>` setting is now allowed on
  240. databases that support time zones.
  241. .. _backwards-incompatible-3.1:
  242. Backwards incompatible changes in 3.1
  243. =====================================
  244. Database backend API
  245. --------------------
  246. This section describes changes that may be needed in third-party database
  247. backends.
  248. * ``DatabaseOperations.fetch_returned_insert_columns()`` now requires an
  249. additional ``returning_params`` argument.
  250. * ``connection.timezone`` property is now ``'UTC'`` by default, or the
  251. :setting:`TIME_ZONE <DATABASE-TIME_ZONE>` when :setting:`USE_TZ` is ``True``
  252. on databases that support time zones. Previously, it was ``None`` on
  253. databases that support time zones.
  254. Dropped support for MariaDB 10.1
  255. --------------------------------
  256. Upstream support for MariaDB 10.1 ends in October 2020. Django 3.1 supports
  257. MariaDB 10.2 and higher.
  258. Miscellaneous
  259. -------------
  260. * The cache keys used by :ttag:`cache` and generated by
  261. :func:`~django.core.cache.utils.make_template_fragment_key` are different
  262. from the keys generated by older versions of Django. After upgrading to
  263. Django 3.1, the first request to any previously cached template fragment will
  264. be a cache miss.
  265. * The compatibility imports of ``django.core.exceptions.EmptyResultSet`` in
  266. ``django.db.models.query``, ``django.db.models.sql``, and
  267. ``django.db.models.sql.datastructures`` are removed.
  268. * The compatibility import of ``django.core.exceptions.FieldDoesNotExist`` in
  269. ``django.db.models.fields`` is removed.
  270. * The compatibility imports of ``django.forms.utils.pretty_name()`` and
  271. ``django.forms.boundfield.BoundField`` in ``django.forms.forms`` are removed.
  272. * The compatibility imports of ``Context``, ``ContextPopException``, and
  273. ``RequestContext`` in ``django.template.base`` are removed.
  274. * The compatibility import of
  275. ``django.contrib.admin.helpers.ACTION_CHECKBOX_NAME`` in
  276. ``django.contrib.admin`` is removed.
  277. * The :setting:`STATIC_URL` and :setting:`MEDIA_URL` settings set to relative
  278. paths are now prefixed by the server-provided value of ``SCRIPT_NAME`` (or
  279. ``/`` if not set). This change should not affect settings set to valid URLs
  280. or absolute paths.
  281. * :class:`~django.middleware.http.ConditionalGetMiddleware` no longer adds the
  282. ``ETag`` header to responses with an empty
  283. :attr:`~django.http.HttpResponse.content`.
  284. * ``django.utils.decorators.classproperty()`` decorator is moved to
  285. ``django.utils.functional.classproperty()``.
  286. * :tfilter:`floatformat` template filter now outputs (positive) ``0`` for
  287. negative numbers which round to zero.
  288. * :attr:`Meta.ordering <django.db.models.Options.ordering>` and
  289. :attr:`Meta.unique_together <django.db.models.Options.unique_together>`
  290. options on models in ``django.contrib`` modules that were formerly tuples are
  291. now lists.
  292. * The admin calendar widget now handles two-digit years according to the Open
  293. Group Specification, i.e. values between 69 and 99 are mapped to the previous
  294. century, and values between 0 and 68 are mapped to the current century.
  295. * Date-only formats are removed from the default list for
  296. :setting:`DATETIME_INPUT_FORMATS`.
  297. * The :class:`~django.forms.FileInput` widget no longer renders with the
  298. ``required`` HTML attribute when initial data exists.
  299. * The undocumented ``django.views.debug.ExceptionReporterFilter`` class is
  300. removed. As per the :ref:`custom-error-reports` documentation, classes to be
  301. used with :setting:`DEFAULT_EXCEPTION_REPORTER_FILTER` needs to inherit from
  302. :class:`django.views.debug.SafeExceptionReporterFilter`.
  303. * The cache timeout set by :func:`~django.views.decorators.cache.cache_page`
  304. decorator now takes precedence over the ``max-age`` directive from the
  305. ``Cache-Control`` header.
  306. .. _deprecated-features-3.1:
  307. Features deprecated in 3.1
  308. ==========================
  309. Miscellaneous
  310. -------------
  311. * ``PASSWORD_RESET_TIMEOUT_DAYS`` setting is deprecated in favor of
  312. :setting:`PASSWORD_RESET_TIMEOUT`.
  313. * The undocumented usage of the :lookup:`isnull` lookup with non-boolean values
  314. as the right-hand side is deprecated, use ``True`` or ``False`` instead.
  315. * The barely documented ``django.db.models.query_utils.InvalidQuery`` exception
  316. class is deprecated in favor of
  317. :class:`~django.core.exceptions.FieldDoesNotExist` and
  318. :class:`~django.core.exceptions.FieldError`.
  319. * The ``django-admin.py`` entry point is deprecated in favor of
  320. ``django-admin``.
  321. .. _removed-features-3.1:
  322. Features removed in 3.1
  323. =======================
  324. These features have reached the end of their deprecation cycle and are removed
  325. in Django 3.1.
  326. See :ref:`deprecated-features-2.2` for details on these changes, including how
  327. to remove usage of these features.
  328. * ``django.utils.timezone.FixedOffset`` is removed.
  329. * ``django.core.paginator.QuerySetPaginator`` is removed.
  330. * A model's ``Meta.ordering`` doesn't affect ``GROUP BY`` queries.
  331. * ``django.contrib.postgres.fields.FloatRangeField`` and
  332. ``django.contrib.postgres.forms.FloatRangeField`` are removed.
  333. * The ``FILE_CHARSET`` setting is removed.
  334. * ``django.contrib.staticfiles.storage.CachedStaticFilesStorage`` is removed.
  335. * The ``RemoteUserBackend.configure_user()`` method requires ``request`` as the
  336. first positional argument.
  337. * Support for ``SimpleTestCase.allow_database_queries`` and
  338. ``TransactionTestCase.multi_db`` is removed.