3.2.txt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. ============================================
  2. Django 3.2 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected April 2021*
  5. Welcome to Django 3.2!
  6. These release notes cover the :ref:`new features <whats-new-3.2>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-3.2>` you'll
  8. want to be aware of when upgrading from Django 3.1 or earlier. We've
  9. :ref:`begun the deprecation process for some features
  10. <deprecated-features-3.2>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Django 3.2 is designated as a :term:`long-term support release
  14. <Long-term support release>`. It will receive security updates for at least
  15. three years after its release. Support for the previous LTS, Django 2.2, will
  16. end in April 2022.
  17. Python compatibility
  18. ====================
  19. Django 3.2 supports Python 3.6, 3.7, and 3.8. We **highly recommend** and only
  20. officially support the latest release of each series.
  21. .. _whats-new-3.2:
  22. What's new in Django 3.2
  23. ========================
  24. Automatic :class:`~django.apps.AppConfig` discovery
  25. ---------------------------------------------------
  26. Most pluggable applications define an :class:`~django.apps.AppConfig` subclass
  27. in an ``apps.py`` submodule. Many define a ``default_app_config`` variable
  28. pointing to this class in their ``__init__.py``.
  29. When the ``apps.py`` submodule exists and defines a single
  30. :class:`~django.apps.AppConfig` subclass, Django now uses that configuration
  31. automatically, so you can remove ``default_app_config``.
  32. ``default_app_config`` made it possible to declare only the application's path
  33. in :setting:`INSTALLED_APPS` (e.g. ``'django.contrib.admin'``) rather than the
  34. app config's path (e.g. ``'django.contrib.admin.apps.AdminConfig'``). It was
  35. introduced for backwards-compatibility with the former style, with the intent
  36. to switch the ecosystem to the latter, but the switch didn't happen.
  37. With automatic ``AppConfig`` discovery, ``default_app_config`` is no longer
  38. needed. As a consequence, it's deprecated.
  39. See :ref:`configuring-applications-ref` for full details.
  40. ``pymemcache`` support
  41. ----------------------
  42. The new ``django.core.cache.backends.memcached.PyMemcacheCache`` cache backend
  43. allows using the pymemcache_ library for memcached. ``pymemcache`` 3.4.0 or
  44. higher is required. For more details, see the :doc:`documentation on caching in
  45. Django </topics/cache>`.
  46. .. _pymemcache: https://pypi.org/project/pymemcache/
  47. Minor features
  48. --------------
  49. :mod:`django.contrib.admin`
  50. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  51. * :attr:`.ModelAdmin.search_fields` now allows searching against quoted phrases
  52. with spaces.
  53. :mod:`django.contrib.admindocs`
  54. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  55. * ...
  56. :mod:`django.contrib.auth`
  57. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  58. * The default iteration count for the PBKDF2 password hasher is increased from
  59. 216,000 to 260,000.
  60. * The default variant for the Argon2 password hasher is changed to Argon2id.
  61. ``memory_cost`` and ``parallelism`` are increased to 102,400 and 8
  62. respectively to match the ``argon2-cffi`` defaults.
  63. Increasing the ``memory_cost`` pushes the required memory from 512 KB to 100
  64. MB. This is still rather conservative but can lead to problems in memory
  65. constrained environments. If this is the case, the existing hasher can be
  66. subclassed to override the defaults.
  67. :mod:`django.contrib.contenttypes`
  68. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. * The new ``absolute_max`` argument for
  70. :func:`~django.contrib.contenttypes.forms.generic_inlineformset_factory`
  71. allows customizing the maximum number of forms that can be instantiated when
  72. supplying ``POST`` data. See :ref:`formsets-absolute-max` for more details.
  73. * The new ``can_delete_extra`` argument for
  74. :func:`~django.contrib.contenttypes.forms.generic_inlineformset_factory`
  75. allows removal of the option to delete extra forms. See
  76. :attr:`~.BaseFormSet.can_delete_extra` for more information.
  77. :mod:`django.contrib.gis`
  78. ~~~~~~~~~~~~~~~~~~~~~~~~~
  79. * The :meth:`.GDALRaster.transform` method now supports
  80. :class:`~django.contrib.gis.gdal.SpatialReference`.
  81. :mod:`django.contrib.messages`
  82. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  83. * ...
  84. :mod:`django.contrib.postgres`
  85. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  86. * The new :attr:`.ExclusionConstraint.include` attribute allows creating
  87. covering exclusion constraints on PostgreSQL 12+.
  88. * The new :attr:`.ExclusionConstraint.opclasses` attribute allows setting
  89. PostgreSQL operator classes.
  90. * The new :attr:`.JSONBAgg.ordering` attribute determines the ordering of the
  91. aggregated elements.
  92. * The :class:`~django.contrib.postgres.operations.CreateExtension` operation
  93. now checks that the extension already exists in the database and skips the
  94. migration if so.
  95. :mod:`django.contrib.redirects`
  96. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  97. * ...
  98. :mod:`django.contrib.sessions`
  99. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  100. * ...
  101. :mod:`django.contrib.sitemaps`
  102. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  103. * The new :class:`~django.contrib.sitemaps.Sitemap` attributes
  104. :attr:`~django.contrib.sitemaps.Sitemap.alternates`,
  105. :attr:`~django.contrib.sitemaps.Sitemap.languages` and
  106. :attr:`~django.contrib.sitemaps.Sitemap.x_default` allow
  107. generating sitemap *alternates* to localized versions of your pages.
  108. :mod:`django.contrib.sites`
  109. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  110. * ...
  111. :mod:`django.contrib.staticfiles`
  112. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  113. * ...
  114. :mod:`django.contrib.syndication`
  115. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  116. * The new ``item_comments`` hook allows specifying a comments URL per feed
  117. item.
  118. Cache
  119. ~~~~~
  120. * ...
  121. CSRF
  122. ~~~~
  123. * ...
  124. Email
  125. ~~~~~
  126. * ...
  127. Error Reporting
  128. ~~~~~~~~~~~~~~~
  129. * ...
  130. File Storage
  131. ~~~~~~~~~~~~
  132. * ...
  133. File Uploads
  134. ~~~~~~~~~~~~
  135. * The new :meth:`FileUploadHandler.upload_interrupted()
  136. <django.core.files.uploadhandler.FileUploadHandler.upload_interrupted>`
  137. callback allows handling interrupted uploads.
  138. Forms
  139. ~~~~~
  140. * The new ``absolute_max`` argument for :func:`.formset_factory`,
  141. :func:`.inlineformset_factory`, and :func:`.modelformset_factory` allows
  142. customizing the maximum number of forms that can be instantiated when
  143. supplying ``POST`` data. See :ref:`formsets-absolute-max` for more details.
  144. * The new ``can_delete_extra`` argument for :func:`.formset_factory`,
  145. :func:`.inlineformset_factory`, and :func:`.modelformset_factory` allows
  146. removal of the option to delete extra forms. See
  147. :attr:`~.BaseFormSet.can_delete_extra` for more information.
  148. Generic Views
  149. ~~~~~~~~~~~~~
  150. * The ``week_format`` attributes of
  151. :class:`~django.views.generic.dates.WeekMixin` and
  152. :class:`~django.views.generic.dates.WeekArchiveView` now support the
  153. ``'%V'`` ISO 8601 week format.
  154. Internationalization
  155. ~~~~~~~~~~~~~~~~~~~~
  156. * ...
  157. Logging
  158. ~~~~~~~
  159. * ...
  160. Management Commands
  161. ~~~~~~~~~~~~~~~~~~~
  162. * :djadmin:`loaddata` now supports fixtures stored in XZ archives (``.xz``) and
  163. LZMA archives (``.lzma``).
  164. * :djadmin:`makemigrations` can now be called without an active database
  165. connection. In that case, check for a consistent migration history is
  166. skipped.
  167. * :attr:`.BaseCommand.requires_system_checks` now supports specifying a list of
  168. tags. System checks registered in the chosen tags will be checked for errors
  169. prior to executing the command. In previous versions, either all or none
  170. of the system checks were performed.
  171. Migrations
  172. ~~~~~~~~~~
  173. * The new ``Operation.migration_name_fragment`` property allows providing a
  174. filename fragment that will be used to name a migration containing only that
  175. operation.
  176. * Migrations now support serialization of pure and concrete path objects from
  177. :mod:`pathlib`, and :class:`os.PathLike` instances.
  178. Models
  179. ~~~~~~
  180. * The new ``no_key`` parameter for :meth:`.QuerySet.select_for_update()`,
  181. supported on PostgreSQL, allows acquiring weaker locks that don't block the
  182. creation of rows that reference locked rows through a foreign key.
  183. * :class:`When() <django.db.models.expressions.When>` expression now allows
  184. using the ``condition`` argument with ``lookups``.
  185. * The new :attr:`.Index.include` and :attr:`.UniqueConstraint.include`
  186. attributes allow creating covering indexes and covering unique constraints on
  187. PostgreSQL 11+.
  188. * The new :attr:`.UniqueConstraint.opclasses` attribute allows setting
  189. PostgreSQL operator classes.
  190. * The :meth:`.QuerySet.update` method now respects the ``order_by()`` clause on
  191. MySQL and MariaDB.
  192. * :class:`FilteredRelation() <django.db.models.FilteredRelation>` now supports
  193. nested relations.
  194. * The ``of`` argument of :meth:`.QuerySet.select_for_update()` is now allowed
  195. on MySQL 8.0.1+.
  196. * :class:`Value() <django.db.models.Value>` expression now
  197. automatically resolves its ``output_field`` to the appropriate
  198. :class:`Field <django.db.models.Field>` subclass based on the type of
  199. it's provided ``value`` for :py:class:`bool`, :py:class:`bytes`,
  200. :py:class:`float`, :py:class:`int`, :py:class:`str`,
  201. :py:class:`datetime.date`, :py:class:`datetime.datetime`,
  202. :py:class:`datetime.time`, :py:class:`datetime.timedelta`,
  203. :py:class:`decimal.Decimal`, and :py:class:`uuid.UUID` instances. As a
  204. consequence, resolving an ``output_field`` for database functions and
  205. combined expressions may now crash with mixed types when using ``Value()``.
  206. You will need to explicitly set the ``output_field`` in such cases.
  207. * The new :meth:`.QuerySet.alias` method allows creating reusable aliases for
  208. expressions that don't need to be selected but are used for filtering,
  209. ordering, or as a part of complex expressions.
  210. * The new :class:`~django.db.models.functions.Collate` function allows
  211. filtering and ordering by specified database collations.
  212. * The ``field_name`` argument of :meth:`.QuerySet.in_bulk()` now accepts
  213. distinct fields if there's only one field specified in
  214. :meth:`.QuerySet.distinct`.
  215. * The new ``tzinfo`` parameter of the
  216. :class:`~django.db.models.functions.TruncDate` and
  217. :class:`~django.db.models.functions.TruncTime` database functions allows
  218. truncating datetimes in a specific timezone.
  219. * The new ``db_collation`` argument for
  220. :attr:`CharField <django.db.models.CharField.db_collation>` and
  221. :attr:`TextField <django.db.models.TextField.db_collation>` allows setting a
  222. database collation for the field.
  223. * Added the :class:`~django.db.models.functions.Random` database function.
  224. Pagination
  225. ~~~~~~~~~~
  226. * The new :meth:`django.core.paginator.Paginator.get_elided_page_range` method
  227. allows generating a page range with some of the values elided. If there are a
  228. large number of pages, this can be helpful for generating a reasonable number
  229. of page links in a template.
  230. Requests and Responses
  231. ~~~~~~~~~~~~~~~~~~~~~~
  232. * Response headers are now stored in :attr:`.HttpResponse.headers`. This can be
  233. used instead of the original dict-like interface of ``HttpResponse`` objects.
  234. Both interfaces will continue to be supported. See
  235. :ref:`setting-header-fields` for details.
  236. Security
  237. ~~~~~~~~
  238. * The :setting:`SECRET_KEY` setting is now checked for a valid value upon first
  239. access, rather than when settings are first loaded. This enables running
  240. management commands that do not rely on the ``SECRET_KEY`` without needing to
  241. provide a value. As a consequence of this, calling
  242. :func:`~django.conf.settings.configure` without providing a valid
  243. ``SECRET_KEY``, and then going on to access ``settings.SECRET_KEY`` will now
  244. raise an :exc:`~django.core.exceptions.ImproperlyConfigured` exception.
  245. Serialization
  246. ~~~~~~~~~~~~~
  247. * The new :ref:`JSONL <serialization-formats-jsonl>` serializer allows using
  248. the JSON Lines format with :djadmin:`dumpdata` and :djadmin:`loaddata`. This
  249. can be useful for populating large databases because data is loaded line by
  250. line into memory, rather than being loaded all at once.
  251. Signals
  252. ~~~~~~~
  253. * ...
  254. Templates
  255. ~~~~~~~~~
  256. * ...
  257. Tests
  258. ~~~~~
  259. * Objects assigned to class attributes in :meth:`.TestCase.setUpTestData` are
  260. now isolated for each test method. Such objects are now required to support
  261. creating deep copies with :py:func:`copy.deepcopy`. Assigning objects which
  262. don't support ``deepcopy()`` is deprecated and will be removed in Django 4.1.
  263. * :class:`~django.test.runner.DiscoverRunner` now enables
  264. :py:mod:`faulthandler` by default. This can be disabled by using the
  265. :option:`test --no-faulthandler` option.
  266. * :class:`~django.test.runner.DiscoverRunner` and the
  267. :djadmin:`test` management command can now track timings, including database
  268. setup and total run time. This can be enabled by using the :option:`test
  269. --timing` option.
  270. * :class:`~django.test.Client` now preserves the request query string when
  271. following 307 and 308 redirects.
  272. * The new :meth:`.TestCase.captureOnCommitCallbacks` method captures callback
  273. functions passed to :func:`transaction.on_commit()
  274. <django.db.transaction.on_commit>` in a list. This allows you to test such
  275. callbacks without using the slower :class:`.TransactionTestCase`.
  276. URLs
  277. ~~~~
  278. * ...
  279. Utilities
  280. ~~~~~~~~~
  281. * The new ``depth`` parameter of ``django.utils.timesince.timesince()`` and
  282. ``django.utils.timesince.timeuntil()`` functions allows specifying the number
  283. of adjacent time units to return.
  284. Validators
  285. ~~~~~~~~~~
  286. * Built-in validators now include the provided value in the ``params`` argument
  287. of a raised :exc:`~django.core.exceptions.ValidationError`. This allows
  288. custom error messages to use the ``%(value)s`` placeholder.
  289. * The :class:`.ValidationError` equality operator now ignores ``messages`` and
  290. ``params`` ordering.
  291. .. _backwards-incompatible-3.2:
  292. Backwards incompatible changes in 3.2
  293. =====================================
  294. Database backend API
  295. --------------------
  296. This section describes changes that may be needed in third-party database
  297. backends.
  298. * The new ``DatabaseFeatures.introspected_field_types`` property replaces these
  299. features:
  300. * ``can_introspect_autofield``
  301. * ``can_introspect_big_integer_field``
  302. * ``can_introspect_binary_field``
  303. * ``can_introspect_decimal_field``
  304. * ``can_introspect_duration_field``
  305. * ``can_introspect_ip_address_field``
  306. * ``can_introspect_positive_integer_field``
  307. * ``can_introspect_small_integer_field``
  308. * ``can_introspect_time_field``
  309. * ``introspected_big_auto_field_type``
  310. * ``introspected_small_auto_field_type``
  311. * ``introspected_boolean_field_type``
  312. * To enable support for covering indexes (:attr:`.Index.include`) and covering
  313. unique constraints (:attr:`.UniqueConstraint.include`), set
  314. ``DatabaseFeatures.supports_covering_indexes`` to ``True``.
  315. * Third-party database backends must implement support for column database
  316. collations on ``CharField``\s and ``TextField``\s or set
  317. ``DatabaseFeatures.supports_collation_on_charfield`` and
  318. ``DatabaseFeatures.supports_collation_on_textfield`` to ``False``. If
  319. non-deterministic collations are not supported, set
  320. ``supports_non_deterministic_collations`` to ``False``.
  321. * ``DatabaseOperations.random_function_sql()`` is removed in favor of the new
  322. :class:`~django.db.models.functions.Random` database function.
  323. :mod:`django.contrib.admin`
  324. ---------------------------
  325. * Pagination links in the admin are now 1-indexed instead of 0-indexed, i.e.
  326. the query string for the first page is ``?p=1`` instead of ``?p=0``.
  327. :mod:`django.contrib.gis`
  328. -------------------------
  329. * Support for PostGIS 2.2 is removed.
  330. Dropped support for PostgreSQL 9.5
  331. ----------------------------------
  332. Upstream support for PostgreSQL 9.5 ends in February 2021. Django 3.2 supports
  333. PostgreSQL 9.6 and higher.
  334. Dropped support for MySQL 5.6
  335. -----------------------------
  336. The end of upstream support for MySQL 5.6 is April 2021. Django 3.2 supports
  337. MySQL 5.7 and higher.
  338. Miscellaneous
  339. -------------
  340. * The undocumented ``SpatiaLiteOperations.proj4_version()`` method is renamed
  341. to ``proj_version()``.
  342. * Minified JavaScript files are no longer included with the admin. If you
  343. require these files to be minified, consider using a third party app or
  344. external build tool. The minified vendored JavaScript files packaged with the
  345. admin (e.g. :ref:`jquery.min.js <contrib-admin-jquery>`) are still included.
  346. * :attr:`.ModelAdmin.prepopulated_fields` no longer strips English stop words,
  347. such as ``'a'`` or ``'an'``.
  348. * :func:`~django.utils.text.slugify` now removes leading and trailing dashes
  349. and underscores.
  350. * The :tfilter:`intcomma` and :tfilter:`intword` template filters no longer
  351. depend on the :setting:`USE_L10N` setting.
  352. * Support for ``argon2-cffi`` < 19.1.0 is removed.
  353. * The cache keys no longer includes the language when internationalization is
  354. disabled (``USE_I18N = False``) and localization is enabled
  355. (``USE_L10N = True``). After upgrading to Django 3.2 in such configurations,
  356. the first request to any previously cached value will be a cache miss.
  357. * ``ForeignKey.validate()`` now uses
  358. :attr:`~django.db.models.Model._base_manager` rather than
  359. :attr:`~django.db.models.Model._default_manager` to check that related
  360. instances exist.
  361. * When an application defines an :class:`~django.apps.AppConfig` subclass in
  362. an ``apps.py`` submodule, Django now uses this configuration automatically,
  363. even if it isn't enabled with ``default_app_config``. Set ``default = False``
  364. in the :class:`~django.apps.AppConfig` subclass if you need to prevent this
  365. behavior. See :ref:`whats-new-3.2` for more details.
  366. * Instantiating an abstract model now raises ``TypeError``.
  367. * Keyword arguments to :func:`~django.test.utils.setup_databases` are now
  368. keyword-only.
  369. * The undocumented ``django.utils.http.limited_parse_qsl()`` function is
  370. removed. Please use :func:`urllib.parse.parse_qsl` instead.
  371. * ``django.test.utils.TestContextDecorator`` now uses
  372. :py:meth:`~unittest.TestCase.addCleanup` so that cleanups registered in the
  373. :py:meth:`~unittest.TestCase.setUp` method are called before
  374. ``TestContextDecorator.disable()``.
  375. * ``SessionMiddleware`` now raises a
  376. :exc:`~django.contrib.sessions.exceptions.SessionInterrupted` exception
  377. instead of :exc:`~django.core.exceptions.SuspiciousOperation` when a session
  378. is destroyed in a concurrent request.
  379. * The :class:`django.db.models.Field` equality operator now correctly
  380. distinguishes inherited field instances across models. Additionally, the
  381. ordering of such fields is now defined.
  382. * The undocumented ``django.core.files.locks.lock()`` function now returns
  383. ``False`` if the file cannot be locked, instead of raising
  384. :exc:`BlockingIOError`.
  385. .. _deprecated-features-3.2:
  386. Features deprecated in 3.2
  387. ==========================
  388. Miscellaneous
  389. -------------
  390. * Assigning objects which don't support creating deep copies with
  391. :py:func:`copy.deepcopy` to class attributes in
  392. :meth:`.TestCase.setUpTestData` is deprecated.
  393. * Using a boolean value in :attr:`.BaseCommand.requires_system_checks` is
  394. deprecated. Use ``'__all__'`` instead of ``True``, and ``[]`` (an empty list)
  395. instead of ``False``.
  396. * The ``whitelist`` argument and ``domain_whitelist`` attribute of
  397. :class:`~django.core.validators.EmailValidator` are deprecated. Use
  398. ``allowlist`` instead of ``whitelist``, and ``domain_allowlist`` instead of
  399. ``domain_whitelist``. You may need to rename ``whitelist`` in existing
  400. migrations.
  401. * The ``default_app_config`` application configuration variable is deprecated,
  402. due to the now automatic ``AppConfig`` discovery. See :ref:`whats-new-3.2`
  403. for more details.