3.2.txt 7.3 KB

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