5.1.txt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. ============================================
  2. Django 5.1 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected August 2024*
  5. Welcome to Django 5.1!
  6. These release notes cover the :ref:`new features <whats-new-5.1>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-5.1>` you'll
  8. want to be aware of when upgrading from Django 5.0 or earlier. We've
  9. :ref:`begun the deprecation process for some features
  10. <deprecated-features-5.1>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Python compatibility
  14. ====================
  15. Django 5.1 supports Python 3.10, 3.11, and 3.12. We **highly recommend** and
  16. only officially support the latest release of each series.
  17. .. _whats-new-5.1:
  18. What's new in Django 5.1
  19. ========================
  20. Minor features
  21. --------------
  22. :mod:`django.contrib.admin`
  23. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  24. * ...
  25. :mod:`django.contrib.admindocs`
  26. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  27. * ...
  28. :mod:`django.contrib.auth`
  29. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  30. * The default iteration count for the PBKDF2 password hasher is increased from
  31. 720,000 to 870,000.
  32. :mod:`django.contrib.contenttypes`
  33. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  34. * ...
  35. :mod:`django.contrib.gis`
  36. ~~~~~~~~~~~~~~~~~~~~~~~~~
  37. * :class:`~django.contrib.gis.db.models.functions.BoundingCircle` is now
  38. supported on SpatiaLite 5.1+.
  39. * :class:`~django.contrib.gis.db.models.Collect` is now supported on MySQL
  40. 8.0.24+.
  41. * :class:`~django.contrib.gis.geoip2.GeoIP2` now allows querying using
  42. :class:`ipaddress.IPv4Address` or :class:`ipaddress.IPv6Address` objects.
  43. * :meth:`.GeoIP2.country` now exposes the ``continent_code``,
  44. ``continent_name``, and ``is_in_european_union`` values.
  45. * :meth:`.GeoIP2.city` now exposes the ``accuracy_radius`` and ``region_name``
  46. values. In addition the ``dma_code`` and ``region`` values are now exposed as
  47. ``metro_code`` and ``region_code``, but the previous keys are also retained
  48. for backward compatibility.
  49. * :class:`~django.contrib.gis.measure.Area` now supports the ``ha`` unit.
  50. * The new :attr:`.OGRGeometry.is_3d` attribute allows checking if a geometry
  51. has a ``Z`` coordinate dimension.
  52. * The new :meth:`.OGRGeometry.set_3d` method allows addition and removal of the
  53. ``Z`` coordinate dimension.
  54. :mod:`django.contrib.messages`
  55. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  56. * ...
  57. :mod:`django.contrib.postgres`
  58. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59. * :class:`~django.contrib.postgres.indexes.BTreeIndex` now supports the
  60. ``deduplicate_items`` parameter.
  61. :mod:`django.contrib.redirects`
  62. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  63. * ...
  64. :mod:`django.contrib.sessions`
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. * ...
  67. :mod:`django.contrib.sitemaps`
  68. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. * ...
  70. :mod:`django.contrib.sites`
  71. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  72. * ...
  73. :mod:`django.contrib.staticfiles`
  74. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  75. * ...
  76. :mod:`django.contrib.syndication`
  77. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  78. * ...
  79. Asynchronous views
  80. ~~~~~~~~~~~~~~~~~~
  81. * ...
  82. Cache
  83. ~~~~~
  84. * ...
  85. CSRF
  86. ~~~~
  87. * ...
  88. Decorators
  89. ~~~~~~~~~~
  90. * ...
  91. Email
  92. ~~~~~
  93. * ...
  94. Error Reporting
  95. ~~~~~~~~~~~~~~~
  96. * ...
  97. File Storage
  98. ~~~~~~~~~~~~
  99. * ...
  100. File Uploads
  101. ~~~~~~~~~~~~
  102. * ...
  103. Forms
  104. ~~~~~
  105. * In order to improve accessibility and enable screen readers to associate
  106. fieldsets with their help text, the form fieldset now includes the
  107. ``aria-describedby`` HTML attribute.
  108. Generic Views
  109. ~~~~~~~~~~~~~
  110. * ...
  111. Internationalization
  112. ~~~~~~~~~~~~~~~~~~~~
  113. * ...
  114. Logging
  115. ~~~~~~~
  116. * ...
  117. Management Commands
  118. ~~~~~~~~~~~~~~~~~~~
  119. * :djadmin:`makemigrations` command now displays meaningful symbols for each
  120. operation to highlight :class:`operation categories
  121. <django.db.migrations.operations.base.OperationCategory>`.
  122. Migrations
  123. ~~~~~~~~~~
  124. * The new ``Operation.category`` attribute allows specifying an
  125. :class:`operation category
  126. <django.db.migrations.operations.base.OperationCategory>` used by the
  127. :djadmin:`makemigrations` to display a meaningful symbol for the operation.
  128. Models
  129. ~~~~~~
  130. * :meth:`.QuerySet.explain` now supports the ``generic_plan`` option on
  131. PostgreSQL 16+.
  132. * :class:`~django.db.models.expressions.RowRange` now accepts positive integers
  133. for the ``start`` argument and negative integers for the ``end`` argument.
  134. * The new ``exclusion`` argument of
  135. :class:`~django.db.models.expressions.RowRange` and
  136. :class:`~django.db.models.expressions.ValueRange` allows excluding rows,
  137. groups, and ties from the window frames.
  138. * :meth:`.QuerySet.order_by` now supports ordering by annotation transforms
  139. such as ``JSONObject`` keys and ``ArrayAgg`` indices.
  140. * :class:`F() <django.db.models.F>` and :class:`OuterRef()
  141. <django.db.models.OuterRef>` expressions that output
  142. :class:`~django.db.models.CharField`, :class:`~django.db.models.EmailField`,
  143. :class:`~django.db.models.SlugField`, :class:`~django.db.models.URLField`,
  144. :class:`~django.db.models.TextField`, or
  145. :class:`~django.contrib.postgres.fields.ArrayField` can now be :ref:`sliced
  146. <slicing-using-f>`.
  147. * The new ``from_queryset`` argument of :meth:`.Model.refresh_from_db` and
  148. :meth:`.Model.arefresh_from_db` allows customizing the queryset used to
  149. reload a model's value. This can be used to lock the row before reloading or
  150. to select related objects.
  151. Requests and Responses
  152. ~~~~~~~~~~~~~~~~~~~~~~
  153. * ...
  154. Security
  155. ~~~~~~~~
  156. * ...
  157. Serialization
  158. ~~~~~~~~~~~~~
  159. * ...
  160. Signals
  161. ~~~~~~~
  162. * ...
  163. Templates
  164. ~~~~~~~~~
  165. * Custom tags may now set extra data on the ``Parser`` object that will later
  166. be made available on the ``Template`` instance. Such data may be used, for
  167. example, by the template loader, or other template clients.
  168. * The new :ttag:`{% query_string %} <query_string>` template tag allows
  169. changing a :class:`~django.http.QueryDict` instance for use in links, for
  170. example, to generate a link to the next page while keeping any filtering
  171. options in place.
  172. Tests
  173. ~~~~~
  174. * :meth:`~django.test.SimpleTestCase.assertContains`,
  175. :meth:`~django.test.SimpleTestCase.assertNotContains`, and
  176. :meth:`~django.test.SimpleTestCase.assertInHTML` assertions now add haystacks
  177. to assertion error messages.
  178. * The Django test runner now supports a ``--screenshots`` option to save
  179. screenshots for Selenium tests.
  180. * The :class:`~django.test.RequestFactory`,
  181. :class:`~django.test.AsyncRequestFactory`, :class:`~django.test.Client`, and
  182. :class:`~django.test.AsyncClient` classes now support the ``query_params``
  183. parameter, which accepts a dictionary of query string keys and values. This
  184. allows setting query strings on any HTTP methods more easily.
  185. .. code-block:: python
  186. self.client.post("/items/1", query_params={"action": "delete"})
  187. await self.async_client.post("/items/1", query_params={"action": "delete"})
  188. * The new :meth:`.SimpleTestCase.assertNotInHTML` assertion allows testing that
  189. an HTML fragment is not contained in the given HTML haystack.
  190. * In order to enforce test isolation, database connections inside threads are
  191. no longer allowed in :class:`~django.test.SimpleTestCase`.
  192. URLs
  193. ~~~~
  194. * ...
  195. Utilities
  196. ~~~~~~~~~
  197. * ...
  198. Validators
  199. ~~~~~~~~~~
  200. * ...
  201. .. _backwards-incompatible-5.1:
  202. Backwards incompatible changes in 5.1
  203. =====================================
  204. Database backend API
  205. --------------------
  206. This section describes changes that may be needed in third-party database
  207. backends.
  208. * ...
  209. :mod:`django.contrib.gis`
  210. -------------------------
  211. * Support for PostGIS 2.5 is removed.
  212. * Support for PROJ < 6 is removed.
  213. * Support for GDAL 2.4 is removed.
  214. * :class:`~django.contrib.gis.geoip2.GeoIP2` no longer opens both city and
  215. country databases when a directory path is provided, preferring the city
  216. database, if it is available. The country database is a subset of the city
  217. database and both are not typically needed. If you require use of the country
  218. database when in the same directory as the city database, explicitly pass the
  219. country database path to the constructor.
  220. Dropped support for MariaDB 10.4
  221. --------------------------------
  222. Upstream support for MariaDB 10.4 ends in June 2024. Django 5.1 supports
  223. MariaDB 10.5 and higher.
  224. Dropped support for PostgreSQL 12
  225. ---------------------------------
  226. Upstream support for PostgreSQL 12 ends in November 2024. Django 5.1 supports
  227. PostgreSQL 13 and higher.
  228. Miscellaneous
  229. -------------
  230. * In order to improve accessibility, the admin's changelist filter is now
  231. rendered in a ``<nav>`` tag instead of a ``<div>``.
  232. * :meth:`.SimpleTestCase.assertURLEqual` and
  233. :meth:`~django.test.SimpleTestCase.assertInHTML` now add ``": "`` to the
  234. ``msg_prefix``. This is consistent with the behavior of other assertions.
  235. .. _deprecated-features-5.1:
  236. Features deprecated in 5.1
  237. ==========================
  238. Miscellaneous
  239. -------------
  240. * The ``ModelAdmin.log_deletion()`` and ``LogEntryManager.log_action()``
  241. methods are deprecated. Subclasses should implement
  242. ``ModelAdmin.log_deletions()`` and ``LogEntryManager.log_actions()``
  243. instead.
  244. * The undocumented ``django.utils.itercompat.is_iterable()`` function and the
  245. ``django.utils.itercompat`` module are deprecated. Use
  246. ``isinstance(..., collections.abc.Iterable)`` instead.
  247. * The ``django.contrib.gis.geoip2.GeoIP2.coords()`` method is deprecated. Use
  248. ``django.contrib.gis.geoip2.GeoIP2.lon_lat()`` instead.
  249. * The ``django.contrib.gis.geoip2.GeoIP2.open()`` method is deprecated. Use the
  250. :class:`~django.contrib.gis.geoip2.GeoIP2` constructor instead.
  251. * Passing positional arguments to :meth:`.Model.save` and :meth:`.Model.asave`
  252. is deprecated in favor of keyword-only arguments.
  253. * Setting ``django.contrib.gis.gdal.OGRGeometry.coord_dim`` is deprecated. Use
  254. :meth:`~django.contrib.gis.gdal.OGRGeometry.set_3d` instead.
  255. Features removed in 5.1
  256. =======================
  257. These features have reached the end of their deprecation cycle and are removed
  258. in Django 5.1.
  259. See :ref:`deprecated-features-4.2` for details on these changes, including how
  260. to remove usage of these features.
  261. * The ``BaseUserManager.make_random_password()`` method is removed.
  262. * The model's ``Meta.index_together`` option is removed.
  263. * The ``length_is`` template filter is removed.
  264. * The ``django.contrib.auth.hashers.SHA1PasswordHasher``,
  265. ``django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher``, and
  266. ``django.contrib.auth.hashers.UnsaltedMD5PasswordHasher`` are removed.
  267. * The model ``django.contrib.postgres.fields.CICharField``,
  268. ``django.contrib.postgres.fields.CIEmailField``, and
  269. ``django.contrib.postgres.fields.CITextField`` are removed, except for
  270. support in historical migrations.
  271. * The ``django.contrib.postgres.fields.CIText`` mixin is removed.
  272. * The ``map_width`` and ``map_height`` attributes of ``BaseGeometryWidget`` are
  273. removed.
  274. * The ``SimpleTestCase.assertFormsetError()`` method is removed.
  275. * The ``TransactionTestCase.assertQuerysetEqual()`` method is removed.
  276. * Support for passing encoded JSON string literals to ``JSONField`` and
  277. associated lookups and expressions is removed.
  278. * Support for passing positional arguments to ``Signer`` and
  279. ``TimestampSigner`` is removed.
  280. * The ``DEFAULT_FILE_STORAGE`` and ``STATICFILES_STORAGE`` settings is removed.
  281. * The ``django.core.files.storage.get_storage_class()`` function is removed.