3.2.txt 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  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. Minor features
  25. --------------
  26. :mod:`django.contrib.admin`
  27. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  28. * ...
  29. :mod:`django.contrib.admindocs`
  30. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  31. * ...
  32. :mod:`django.contrib.auth`
  33. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  34. * The default iteration count for the PBKDF2 password hasher is increased from
  35. 216,000 to 260,000.
  36. :mod:`django.contrib.contenttypes`
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. * ...
  39. :mod:`django.contrib.gis`
  40. ~~~~~~~~~~~~~~~~~~~~~~~~~
  41. * ...
  42. :mod:`django.contrib.messages`
  43. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  44. * The :class:`~django.contrib.postgres.operations.CreateExtension` operation
  45. now checks that the extension already exists in the database and skips the
  46. migration if so.
  47. :mod:`django.contrib.postgres`
  48. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  49. * The new :attr:`.ExclusionConstraint.include` attribute allows creating
  50. covering exclusion constraints on PostgreSQL 12+.
  51. * The new :attr:`.ExclusionConstraint.opclasses` attribute allows setting
  52. PostgreSQL operator classes.
  53. * The new :attr:`.JSONBAgg.ordering` attribute determines the ordering of the
  54. aggregated elements.
  55. :mod:`django.contrib.redirects`
  56. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  57. * ...
  58. :mod:`django.contrib.sessions`
  59. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  60. * ...
  61. :mod:`django.contrib.sitemaps`
  62. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  63. * ...
  64. :mod:`django.contrib.sites`
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. * ...
  67. :mod:`django.contrib.staticfiles`
  68. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. * ...
  70. :mod:`django.contrib.syndication`
  71. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  72. * ...
  73. Cache
  74. ~~~~~
  75. * ...
  76. CSRF
  77. ~~~~
  78. * ...
  79. Email
  80. ~~~~~
  81. * ...
  82. Error Reporting
  83. ~~~~~~~~~~~~~~~
  84. * ...
  85. File Storage
  86. ~~~~~~~~~~~~
  87. * ...
  88. File Uploads
  89. ~~~~~~~~~~~~
  90. * ...
  91. Forms
  92. ~~~~~
  93. * The new ``absolute_max`` argument for :func:`.formset_factory`,
  94. :func:`.inlineformset_factory`, and :func:`.modelformset_factory` allows
  95. customizing the maximum number of forms that can be instantiated when
  96. supplying ``POST`` data. See :ref:`formsets-absolute-max` for more details.
  97. Generic Views
  98. ~~~~~~~~~~~~~
  99. * ...
  100. Internationalization
  101. ~~~~~~~~~~~~~~~~~~~~
  102. * ...
  103. Logging
  104. ~~~~~~~
  105. * ...
  106. Management Commands
  107. ~~~~~~~~~~~~~~~~~~~
  108. * :djadmin:`loaddata` now supports fixtures stored in XZ archives (``.xz``) and
  109. LZMA archives (``.lzma``).
  110. * :djadmin:`makemigrations` can now be called without an active database
  111. connection. In that case, check for a consistent migration history is
  112. skipped.
  113. * :attr:`.BaseCommand.requires_system_checks` now supports specifying a list of
  114. tags. System checks registered in the chosen tags will be checked for errors
  115. prior to executing the command. In previous versions, either all or none
  116. of the system checks were performed.
  117. Migrations
  118. ~~~~~~~~~~
  119. * The new ``Operation.migration_name_fragment`` property allows providing a
  120. filename fragment that will be used to name a migration containing only that
  121. operation.
  122. Models
  123. ~~~~~~
  124. * The new ``no_key`` parameter for :meth:`.QuerySet.select_for_update()`,
  125. supported on PostgreSQL, allows acquiring weaker locks that don't block the
  126. creation of rows that reference locked rows through a foreign key.
  127. * :class:`When() <django.db.models.expressions.When>` expression now allows
  128. using the ``condition`` argument with ``lookups``.
  129. * The new :attr:`.Index.include` and :attr:`.UniqueConstraint.include`
  130. attributes allow creating covering indexes and covering unique constraints on
  131. PostgreSQL 11+.
  132. * The new :attr:`.UniqueConstraint.opclasses` attribute allows setting
  133. PostgreSQL operator classes.
  134. Requests and Responses
  135. ~~~~~~~~~~~~~~~~~~~~~~
  136. * ...
  137. Security
  138. ~~~~~~~~
  139. * ...
  140. Serialization
  141. ~~~~~~~~~~~~~
  142. * The new :ref:`JSONL <serialization-formats-jsonl>` serializer allows using
  143. the JSON Lines format with :djadmin:`dumpdata` and :djadmin:`loaddata`. This
  144. can be useful for populating large databases because data is loaded line by
  145. line into memory, rather than being loaded all at once.
  146. Signals
  147. ~~~~~~~
  148. * ...
  149. Templates
  150. ~~~~~~~~~
  151. * ...
  152. Tests
  153. ~~~~~
  154. * Objects assigned to class attributes in :meth:`.TestCase.setUpTestData` are
  155. now isolated for each test method. Such objects are now required to support
  156. creating deep copies with :py:func:`copy.deepcopy`. Assigning objects which
  157. don't support ``deepcopy()`` is deprecated and will be removed in Django 4.1.
  158. * :class:`~django.test.Client` now preserves the request query string when
  159. following 307 and 308 redirects.
  160. URLs
  161. ~~~~
  162. * ...
  163. Utilities
  164. ~~~~~~~~~
  165. * ...
  166. Validators
  167. ~~~~~~~~~~
  168. * ...
  169. .. _backwards-incompatible-3.2:
  170. Backwards incompatible changes in 3.2
  171. =====================================
  172. Database backend API
  173. --------------------
  174. This section describes changes that may be needed in third-party database
  175. backends.
  176. * The new ``DatabaseFeatures.introspected_field_types`` property replaces these
  177. features:
  178. * ``can_introspect_autofield``
  179. * ``can_introspect_big_integer_field``
  180. * ``can_introspect_binary_field``
  181. * ``can_introspect_decimal_field``
  182. * ``can_introspect_duration_field``
  183. * ``can_introspect_ip_address_field``
  184. * ``can_introspect_positive_integer_field``
  185. * ``can_introspect_small_integer_field``
  186. * ``can_introspect_time_field``
  187. * ``introspected_big_auto_field_type``
  188. * ``introspected_small_auto_field_type``
  189. * ``introspected_boolean_field_type``
  190. * To enable support for covering indexes (:attr:`.Index.include`) and covering
  191. unique constraints (:attr:`.UniqueConstraint.include`), set
  192. ``DatabaseFeatures.supports_covering_indexes`` to ``True``.
  193. :mod:`django.contrib.gis`
  194. -------------------------
  195. * Support for PostGIS 2.2 is removed.
  196. Dropped support for PostgreSQL 9.5
  197. ----------------------------------
  198. Upstream support for PostgreSQL 9.5 ends in February 2021. Django 3.2 supports
  199. PostgreSQL 9.6 and higher.
  200. Dropped support for MySQL 5.6
  201. -----------------------------
  202. The end of upstream support for MySQL 5.6 is April 2021. Django 3.2 supports
  203. MySQL 5.7 and higher.
  204. Miscellaneous
  205. -------------
  206. * The undocumented ``SpatiaLiteOperations.proj4_version()`` method is renamed
  207. to ``proj_version()``.
  208. * Minified JavaScript files are no longer included with the admin. If you
  209. require these files to be minified, consider using a third party app or
  210. external build tool. The minified vendored JavaScript files packaged with the
  211. admin (e.g. :ref:`jquery.min.js <contrib-admin-jquery>`) are still included.
  212. * :attr:`.ModelAdmin.prepopulated_fields` no longer strips English stop words,
  213. such as ``'a'`` or ``'an'``.
  214. * :func:`~django.utils.text.slugify` now removes leading and trailing dashes
  215. and underscores.
  216. * The :tfilter:`intcomma` and :tfilter:`intword` template filters no longer
  217. depend on the :setting:`USE_L10N` setting.
  218. .. _deprecated-features-3.2:
  219. Features deprecated in 3.2
  220. ==========================
  221. Miscellaneous
  222. -------------
  223. * Assigning objects which don't support creating deep copies with
  224. :py:func:`copy.deepcopy` to class attributes in
  225. :meth:`.TestCase.setUpTestData` is deprecated.
  226. * Using a boolean value in :attr:`.BaseCommand.requires_system_checks` is
  227. deprecated. Use ``'__all__'`` instead of ``True``, and ``[]`` (an empty list)
  228. instead of ``False``.