3.2.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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. Minor features
  41. --------------
  42. :mod:`django.contrib.admin`
  43. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  44. * :attr:`.ModelAdmin.search_fields` now allows searching against quoted phrases
  45. with spaces.
  46. :mod:`django.contrib.admindocs`
  47. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. * ...
  49. :mod:`django.contrib.auth`
  50. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  51. * The default iteration count for the PBKDF2 password hasher is increased from
  52. 216,000 to 260,000.
  53. * The default variant for the Argon2 password hasher is changed to Argon2id.
  54. ``memory_cost`` and ``parallelism`` are increased to 102,400 and 8
  55. respectively to match the ``argon2-cffi`` defaults.
  56. Increasing the ``memory_cost`` pushes the required memory from 512 KB to 100
  57. MB. This is still rather conservative but can lead to problems in memory
  58. constrained environments. If this is the case, the existing hasher can be
  59. subclassed to override the defaults.
  60. :mod:`django.contrib.contenttypes`
  61. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  62. * ...
  63. :mod:`django.contrib.gis`
  64. ~~~~~~~~~~~~~~~~~~~~~~~~~
  65. * The :meth:`.GDALRaster.transform` method now supports
  66. :class:`~django.contrib.gis.gdal.SpatialReference`.
  67. :mod:`django.contrib.messages`
  68. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. * The :class:`~django.contrib.postgres.operations.CreateExtension` operation
  70. now checks that the extension already exists in the database and skips the
  71. migration if so.
  72. :mod:`django.contrib.postgres`
  73. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  74. * The new :attr:`.ExclusionConstraint.include` attribute allows creating
  75. covering exclusion constraints on PostgreSQL 12+.
  76. * The new :attr:`.ExclusionConstraint.opclasses` attribute allows setting
  77. PostgreSQL operator classes.
  78. * The new :attr:`.JSONBAgg.ordering` attribute determines the ordering of the
  79. aggregated elements.
  80. :mod:`django.contrib.redirects`
  81. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  82. * ...
  83. :mod:`django.contrib.sessions`
  84. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  85. * ...
  86. :mod:`django.contrib.sitemaps`
  87. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  88. * ...
  89. :mod:`django.contrib.sites`
  90. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  91. * ...
  92. :mod:`django.contrib.staticfiles`
  93. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  94. * ...
  95. :mod:`django.contrib.syndication`
  96. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  97. * ...
  98. Cache
  99. ~~~~~
  100. * ...
  101. CSRF
  102. ~~~~
  103. * ...
  104. Email
  105. ~~~~~
  106. * ...
  107. Error Reporting
  108. ~~~~~~~~~~~~~~~
  109. * ...
  110. File Storage
  111. ~~~~~~~~~~~~
  112. * ...
  113. File Uploads
  114. ~~~~~~~~~~~~
  115. * ...
  116. Forms
  117. ~~~~~
  118. * The new ``absolute_max`` argument for :func:`.formset_factory`,
  119. :func:`.inlineformset_factory`, and :func:`.modelformset_factory` allows
  120. customizing the maximum number of forms that can be instantiated when
  121. supplying ``POST`` data. See :ref:`formsets-absolute-max` for more details.
  122. * The new ``can_delete_extra`` argument for :func:`.formset_factory`,
  123. :func:`.inlineformset_factory`, and :func:`.modelformset_factory` allows
  124. removal of the option to delete extra forms. See
  125. :attr:`~.BaseFormSet.can_delete_extra` for more information.
  126. Generic Views
  127. ~~~~~~~~~~~~~
  128. * The ``week_format`` attributes of
  129. :class:`~django.views.generic.dates.WeekMixin` and
  130. :class:`~django.views.generic.dates.WeekArchiveView` now support the
  131. ``'%V'`` ISO 8601 week format.
  132. Internationalization
  133. ~~~~~~~~~~~~~~~~~~~~
  134. * ...
  135. Logging
  136. ~~~~~~~
  137. * ...
  138. Management Commands
  139. ~~~~~~~~~~~~~~~~~~~
  140. * :djadmin:`loaddata` now supports fixtures stored in XZ archives (``.xz``) and
  141. LZMA archives (``.lzma``).
  142. * :djadmin:`makemigrations` can now be called without an active database
  143. connection. In that case, check for a consistent migration history is
  144. skipped.
  145. * :attr:`.BaseCommand.requires_system_checks` now supports specifying a list of
  146. tags. System checks registered in the chosen tags will be checked for errors
  147. prior to executing the command. In previous versions, either all or none
  148. of the system checks were performed.
  149. Migrations
  150. ~~~~~~~~~~
  151. * The new ``Operation.migration_name_fragment`` property allows providing a
  152. filename fragment that will be used to name a migration containing only that
  153. operation.
  154. * Migrations now support serialization of pure and concrete path objects from
  155. :mod:`pathlib`, and :class:`os.PathLike` instances.
  156. Models
  157. ~~~~~~
  158. * The new ``no_key`` parameter for :meth:`.QuerySet.select_for_update()`,
  159. supported on PostgreSQL, allows acquiring weaker locks that don't block the
  160. creation of rows that reference locked rows through a foreign key.
  161. * :class:`When() <django.db.models.expressions.When>` expression now allows
  162. using the ``condition`` argument with ``lookups``.
  163. * The new :attr:`.Index.include` and :attr:`.UniqueConstraint.include`
  164. attributes allow creating covering indexes and covering unique constraints on
  165. PostgreSQL 11+.
  166. * The new :attr:`.UniqueConstraint.opclasses` attribute allows setting
  167. PostgreSQL operator classes.
  168. * The :meth:`.QuerySet.update` method now respects the ``order_by()`` clause on
  169. MySQL and MariaDB.
  170. * :class:`FilteredRelation() <django.db.models.FilteredRelation>` now supports
  171. nested relations.
  172. * The ``of`` argument of :meth:`.QuerySet.select_for_update()` is now allowed
  173. on MySQL 8.0.1+.
  174. * :class:`Value() <django.db.models.Value>` expression now
  175. automatically resolves its ``output_field`` to the appropriate
  176. :class:`Field <django.db.models.Field>` subclass based on the type of
  177. it's provided ``value`` for :py:class:`bool`, :py:class:`bytes`,
  178. :py:class:`float`, :py:class:`int`, :py:class:`str`,
  179. :py:class:`datetime.date`, :py:class:`datetime.datetime`,
  180. :py:class:`datetime.time`, :py:class:`datetime.timedelta`,
  181. :py:class:`decimal.Decimal`, and :py:class:`uuid.UUID` instances.
  182. Requests and Responses
  183. ~~~~~~~~~~~~~~~~~~~~~~
  184. * ...
  185. Security
  186. ~~~~~~~~
  187. * ...
  188. Serialization
  189. ~~~~~~~~~~~~~
  190. * The new :ref:`JSONL <serialization-formats-jsonl>` serializer allows using
  191. the JSON Lines format with :djadmin:`dumpdata` and :djadmin:`loaddata`. This
  192. can be useful for populating large databases because data is loaded line by
  193. line into memory, rather than being loaded all at once.
  194. Signals
  195. ~~~~~~~
  196. * ...
  197. Templates
  198. ~~~~~~~~~
  199. * ...
  200. Tests
  201. ~~~~~
  202. * Objects assigned to class attributes in :meth:`.TestCase.setUpTestData` are
  203. now isolated for each test method. Such objects are now required to support
  204. creating deep copies with :py:func:`copy.deepcopy`. Assigning objects which
  205. don't support ``deepcopy()`` is deprecated and will be removed in Django 4.1.
  206. * :class:`~django.test.runner.DiscoverRunner` now enables
  207. :py:mod:`faulthandler` by default. This can be disabled by using the
  208. :option:`test --no-faulthandler` option.
  209. * :class:`~django.test.Client` now preserves the request query string when
  210. following 307 and 308 redirects.
  211. * The new :meth:`.TestCase.captureOnCommitCallbacks` method captures callback
  212. functions passed to :func:`transaction.on_commit()
  213. <django.db.transaction.on_commit>` in a list. This allows you to test such
  214. callbacks without using the slower :class:`.TransactionTestCase`.
  215. URLs
  216. ~~~~
  217. * ...
  218. Utilities
  219. ~~~~~~~~~
  220. * The new ``depth`` parameter of ``django.utils.timesince.timesince()`` and
  221. ``django.utils.timesince.timeuntil()`` functions allows specifying the number
  222. of adjacent time units to return.
  223. Validators
  224. ~~~~~~~~~~
  225. * ...
  226. .. _backwards-incompatible-3.2:
  227. Backwards incompatible changes in 3.2
  228. =====================================
  229. Database backend API
  230. --------------------
  231. This section describes changes that may be needed in third-party database
  232. backends.
  233. * The new ``DatabaseFeatures.introspected_field_types`` property replaces these
  234. features:
  235. * ``can_introspect_autofield``
  236. * ``can_introspect_big_integer_field``
  237. * ``can_introspect_binary_field``
  238. * ``can_introspect_decimal_field``
  239. * ``can_introspect_duration_field``
  240. * ``can_introspect_ip_address_field``
  241. * ``can_introspect_positive_integer_field``
  242. * ``can_introspect_small_integer_field``
  243. * ``can_introspect_time_field``
  244. * ``introspected_big_auto_field_type``
  245. * ``introspected_small_auto_field_type``
  246. * ``introspected_boolean_field_type``
  247. * To enable support for covering indexes (:attr:`.Index.include`) and covering
  248. unique constraints (:attr:`.UniqueConstraint.include`), set
  249. ``DatabaseFeatures.supports_covering_indexes`` to ``True``.
  250. :mod:`django.contrib.gis`
  251. -------------------------
  252. * Support for PostGIS 2.2 is removed.
  253. Dropped support for PostgreSQL 9.5
  254. ----------------------------------
  255. Upstream support for PostgreSQL 9.5 ends in February 2021. Django 3.2 supports
  256. PostgreSQL 9.6 and higher.
  257. Dropped support for MySQL 5.6
  258. -----------------------------
  259. The end of upstream support for MySQL 5.6 is April 2021. Django 3.2 supports
  260. MySQL 5.7 and higher.
  261. Miscellaneous
  262. -------------
  263. * The undocumented ``SpatiaLiteOperations.proj4_version()`` method is renamed
  264. to ``proj_version()``.
  265. * Minified JavaScript files are no longer included with the admin. If you
  266. require these files to be minified, consider using a third party app or
  267. external build tool. The minified vendored JavaScript files packaged with the
  268. admin (e.g. :ref:`jquery.min.js <contrib-admin-jquery>`) are still included.
  269. * :attr:`.ModelAdmin.prepopulated_fields` no longer strips English stop words,
  270. such as ``'a'`` or ``'an'``.
  271. * :func:`~django.utils.text.slugify` now removes leading and trailing dashes
  272. and underscores.
  273. * The :tfilter:`intcomma` and :tfilter:`intword` template filters no longer
  274. depend on the :setting:`USE_L10N` setting.
  275. * Support for ``argon2-cffi`` < 19.1.0 is removed.
  276. * The cache keys no longer includes the language when internationalization is
  277. disabled (``USE_I18N = False``) and localization is enabled
  278. (``USE_L10N = True``). After upgrading to Django 3.2 in such configurations,
  279. the first request to any previously cached value will be a cache miss.
  280. * ``ForeignKey.validate()`` now uses
  281. :attr:`~django.db.models.Model._base_manager` rather than
  282. :attr:`~django.db.models.Model._default_manager` to check that related
  283. instances exist.
  284. * When an application defines an :class:`~django.apps.AppConfig` subclass in
  285. an ``apps.py`` submodule, Django now uses this configuration automatically,
  286. even if it isn't enabled with ``default_app_config``. Set ``default = False``
  287. in the :class:`~django.apps.AppConfig` subclass if you need to prevent this
  288. behavior. See :ref:`whats-new-3.2` for more details.
  289. .. _deprecated-features-3.2:
  290. Features deprecated in 3.2
  291. ==========================
  292. Miscellaneous
  293. -------------
  294. * Assigning objects which don't support creating deep copies with
  295. :py:func:`copy.deepcopy` to class attributes in
  296. :meth:`.TestCase.setUpTestData` is deprecated.
  297. * Using a boolean value in :attr:`.BaseCommand.requires_system_checks` is
  298. deprecated. Use ``'__all__'`` instead of ``True``, and ``[]`` (an empty list)
  299. instead of ``False``.
  300. * The ``whitelist`` argument and ``domain_whitelist`` attribute of
  301. :class:`~django.core.validators.EmailValidator` are deprecated. Use
  302. ``allowlist`` instead of ``whitelist``, and ``domain_allowlist`` instead of
  303. ``domain_whitelist``. You may need to rename ``whitelist`` in existing
  304. migrations.
  305. * The ``default_app_config`` application configuration variable is deprecated,
  306. due to the now automatic ``AppConfig`` discovery. See :ref:`whats-new-3.2`
  307. for more details.