5.1.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  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. * :attr:`.ModelAdmin.list_display` now supports using ``__`` lookups to list
  25. fields from related models.
  26. :mod:`django.contrib.admindocs`
  27. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  28. * ...
  29. :mod:`django.contrib.auth`
  30. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  31. * The default iteration count for the PBKDF2 password hasher is increased from
  32. 720,000 to 870,000.
  33. * :class:`~django.contrib.auth.forms.BaseUserCreationForm` and
  34. :class:`~django.contrib.auth.forms.AdminPasswordChangeForm` now support
  35. disabling password-based authentication by setting an unusable password on
  36. form save. This is now available in the admin when visiting the user creation
  37. and password change pages.
  38. * :func:`~.django.contrib.auth.decorators.login_required`,
  39. :func:`~.django.contrib.auth.decorators.permission_required`, and
  40. :func:`~.django.contrib.auth.decorators.user_passes_test` decorators now
  41. support wrapping asynchronous view functions.
  42. * ``ReadOnlyPasswordHashWidget`` now includes a button to reset the user's
  43. password, which replaces the link previously embedded in the
  44. ``ReadOnlyPasswordHashField``'s help text, improving the overall
  45. accessibility of the
  46. :class:`~django.contrib.auth.forms.UserChangeForm`.
  47. :mod:`django.contrib.contenttypes`
  48. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  49. * ...
  50. :mod:`django.contrib.gis`
  51. ~~~~~~~~~~~~~~~~~~~~~~~~~
  52. * :class:`~django.contrib.gis.db.models.functions.BoundingCircle` is now
  53. supported on SpatiaLite 5.1+.
  54. * :class:`~django.contrib.gis.db.models.Collect` is now supported on MySQL
  55. 8.0.24+.
  56. * :class:`~django.contrib.gis.geoip2.GeoIP2` now allows querying using
  57. :class:`ipaddress.IPv4Address` or :class:`ipaddress.IPv6Address` objects.
  58. * :meth:`.GeoIP2.country` now exposes the ``continent_code``,
  59. ``continent_name``, and ``is_in_european_union`` values.
  60. * :meth:`.GeoIP2.city` now exposes the ``accuracy_radius`` and ``region_name``
  61. values. In addition the ``dma_code`` and ``region`` values are now exposed as
  62. ``metro_code`` and ``region_code``, but the previous keys are also retained
  63. for backward compatibility.
  64. * :class:`~django.contrib.gis.measure.Area` now supports the ``ha`` unit.
  65. * The new :attr:`.OGRGeometry.is_3d` attribute allows checking if a geometry
  66. has a ``Z`` coordinate dimension.
  67. * The new :meth:`.OGRGeometry.set_3d` method allows addition and removal of the
  68. ``Z`` coordinate dimension.
  69. * :class:`~django.contrib.gis.gdal.OGRGeometry`,
  70. :class:`~django.contrib.gis.gdal.Point`,
  71. :class:`~django.contrib.gis.gdal.LineString`,
  72. :class:`~django.contrib.gis.gdal.Polygon`, and
  73. :class:`~django.contrib.gis.gdal.GeometryCollection` and its subclasses now
  74. support measured geometries via the new :attr:`.OGRGeometry.is_measured` and
  75. ``m`` properties, and the :meth:`.OGRGeometry.set_measured` method.
  76. * :attr:`.OGRGeometry.centroid` is now available on all supported geometry
  77. types.
  78. * :class:`FromWKB() <django.contrib.gis.db.models.functions.FromWKB>` and
  79. :class:`FromWKT() <django.contrib.gis.db.models.functions.FromWKT>` functions
  80. now support the optional ``srid`` argument (except for Oracle where it is
  81. ignored).
  82. :mod:`django.contrib.messages`
  83. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  84. * ...
  85. :mod:`django.contrib.postgres`
  86. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  87. * :class:`~django.contrib.postgres.indexes.BTreeIndex` now supports the
  88. ``deduplicate_items`` parameter.
  89. :mod:`django.contrib.redirects`
  90. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  91. * ...
  92. :mod:`django.contrib.sessions`
  93. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  94. * :class:`django.contrib.sessions.backends.cached_db.SessionStore` now handles
  95. exceptions when storing session information in the cache, logging proper
  96. error messages with their traceback via the newly added
  97. :ref:`sessions logger <django-contrib-sessions-logger>`.
  98. * :class:`django.contrib.sessions.backends.base.SessionBase` and all built-in
  99. session engines now provide async API. The new asynchronous methods all have
  100. ``a`` prefixed names, e.g. ``aget()``, ``akeys()``, or ``acycle_key()``.
  101. :mod:`django.contrib.sitemaps`
  102. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  103. * ...
  104. :mod:`django.contrib.sites`
  105. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  106. * ...
  107. :mod:`django.contrib.staticfiles`
  108. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  109. * ...
  110. :mod:`django.contrib.syndication`
  111. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  112. * ...
  113. Asynchronous views
  114. ~~~~~~~~~~~~~~~~~~
  115. * ...
  116. Cache
  117. ~~~~~
  118. * ...
  119. CSRF
  120. ~~~~
  121. * ...
  122. Database backends
  123. ~~~~~~~~~~~~~~~~~
  124. * ``"init_command"`` option is now supported in :setting:`OPTIONS` on SQLite
  125. to allow specifying :ref:`pragma options <sqlite-init-command>` to set upon
  126. connection.
  127. * ``"transaction_mode"`` option is now supported in :setting:`OPTIONS` on
  128. SQLite to allow specifying the :ref:`sqlite-transaction-behavior`.
  129. * ``"pool"`` option is now supported in :setting:`OPTIONS` on PostgreSQL to
  130. allow using :ref:`connection pools <postgresql-pool>`.
  131. Decorators
  132. ~~~~~~~~~~
  133. * ...
  134. Email
  135. ~~~~~
  136. * ...
  137. Error Reporting
  138. ~~~~~~~~~~~~~~~
  139. * In order to improve accessibility, the technical 404 and 500 error pages now
  140. use HTML landmark elements for the header, footer, and main content areas.
  141. File Storage
  142. ~~~~~~~~~~~~
  143. * ...
  144. File Uploads
  145. ~~~~~~~~~~~~
  146. * ...
  147. Forms
  148. ~~~~~
  149. * In order to improve accessibility and enable screen readers to associate
  150. fieldsets with their help text, the form fieldset now includes the
  151. ``aria-describedby`` HTML attribute.
  152. Generic Views
  153. ~~~~~~~~~~~~~
  154. * ...
  155. Internationalization
  156. ~~~~~~~~~~~~~~~~~~~~
  157. * ...
  158. Logging
  159. ~~~~~~~
  160. * ...
  161. Management Commands
  162. ~~~~~~~~~~~~~~~~~~~
  163. * :djadmin:`makemigrations` command now displays meaningful symbols for each
  164. operation to highlight :class:`operation categories
  165. <django.db.migrations.operations.base.OperationCategory>`.
  166. Migrations
  167. ~~~~~~~~~~
  168. * The new ``Operation.category`` attribute allows specifying an
  169. :class:`operation category
  170. <django.db.migrations.operations.base.OperationCategory>` used by the
  171. :djadmin:`makemigrations` to display a meaningful symbol for the operation.
  172. Models
  173. ~~~~~~
  174. * :meth:`.QuerySet.explain` now supports the ``generic_plan`` option on
  175. PostgreSQL 16+.
  176. * :class:`~django.db.models.expressions.RowRange` now accepts positive integers
  177. for the ``start`` argument and negative integers for the ``end`` argument.
  178. * The new ``exclusion`` argument of
  179. :class:`~django.db.models.expressions.RowRange` and
  180. :class:`~django.db.models.expressions.ValueRange` allows excluding rows,
  181. groups, and ties from the window frames.
  182. * :meth:`.QuerySet.order_by` now supports ordering by annotation transforms
  183. such as ``JSONObject`` keys and ``ArrayAgg`` indices.
  184. * :class:`F() <django.db.models.F>` and :class:`OuterRef()
  185. <django.db.models.OuterRef>` expressions that output
  186. :class:`~django.db.models.CharField`, :class:`~django.db.models.EmailField`,
  187. :class:`~django.db.models.SlugField`, :class:`~django.db.models.URLField`,
  188. :class:`~django.db.models.TextField`, or
  189. :class:`~django.contrib.postgres.fields.ArrayField` can now be :ref:`sliced
  190. <slicing-using-f>`.
  191. * The new ``from_queryset`` argument of :meth:`.Model.refresh_from_db` and
  192. :meth:`.Model.arefresh_from_db` allows customizing the queryset used to
  193. reload a model's value. This can be used to lock the row before reloading or
  194. to select related objects.
  195. * The new :attr:`.Expression.constraint_validation_compatible` attribute allows
  196. specifying that the expression should be ignored during a constraint
  197. validation.
  198. Requests and Responses
  199. ~~~~~~~~~~~~~~~~~~~~~~
  200. * ...
  201. Security
  202. ~~~~~~~~
  203. * ...
  204. Serialization
  205. ~~~~~~~~~~~~~
  206. * ...
  207. Signals
  208. ~~~~~~~
  209. * ...
  210. Templates
  211. ~~~~~~~~~
  212. * Custom tags may now set extra data on the ``Parser`` object that will later
  213. be made available on the ``Template`` instance. Such data may be used, for
  214. example, by the template loader, or other template clients.
  215. * The new :ttag:`{% query_string %} <query_string>` template tag allows
  216. changing a :class:`~django.http.QueryDict` instance for use in links, for
  217. example, to generate a link to the next page while keeping any filtering
  218. options in place.
  219. * :ref:`Template engines <field-checking>` now implement a ``check()`` method
  220. that is already registered with the check framework.
  221. Tests
  222. ~~~~~
  223. * :meth:`~django.test.SimpleTestCase.assertContains`,
  224. :meth:`~django.test.SimpleTestCase.assertNotContains`, and
  225. :meth:`~django.test.SimpleTestCase.assertInHTML` assertions now add haystacks
  226. to assertion error messages.
  227. * The :class:`~django.test.RequestFactory`,
  228. :class:`~django.test.AsyncRequestFactory`, :class:`~django.test.Client`, and
  229. :class:`~django.test.AsyncClient` classes now support the ``query_params``
  230. parameter, which accepts a dictionary of query string keys and values. This
  231. allows setting query strings on any HTTP methods more easily.
  232. .. code-block:: python
  233. self.client.post("/items/1", query_params={"action": "delete"})
  234. await self.async_client.post("/items/1", query_params={"action": "delete"})
  235. * The new :meth:`.SimpleTestCase.assertNotInHTML` assertion allows testing that
  236. an HTML fragment is not contained in the given HTML haystack.
  237. * In order to enforce test isolation, database connections inside threads are
  238. no longer allowed in :class:`~django.test.SimpleTestCase`.
  239. URLs
  240. ~~~~
  241. * ...
  242. Utilities
  243. ~~~~~~~~~
  244. * ...
  245. Validators
  246. ~~~~~~~~~~
  247. * ...
  248. .. _backwards-incompatible-5.1:
  249. Backwards incompatible changes in 5.1
  250. =====================================
  251. Database backend API
  252. --------------------
  253. This section describes changes that may be needed in third-party database
  254. backends.
  255. * ...
  256. :mod:`django.contrib.gis`
  257. -------------------------
  258. * Support for PostGIS 2.5 is removed.
  259. * Support for PROJ < 6 is removed.
  260. * Support for GDAL 2.4 is removed.
  261. * :class:`~django.contrib.gis.geoip2.GeoIP2` no longer opens both city and
  262. country databases when a directory path is provided, preferring the city
  263. database, if it is available. The country database is a subset of the city
  264. database and both are not typically needed. If you require use of the country
  265. database when in the same directory as the city database, explicitly pass the
  266. country database path to the constructor.
  267. Dropped support for MariaDB 10.4
  268. --------------------------------
  269. Upstream support for MariaDB 10.4 ends in June 2024. Django 5.1 supports
  270. MariaDB 10.5 and higher.
  271. Dropped support for PostgreSQL 12
  272. ---------------------------------
  273. Upstream support for PostgreSQL 12 ends in November 2024. Django 5.1 supports
  274. PostgreSQL 13 and higher.
  275. Miscellaneous
  276. -------------
  277. * In order to improve accessibility, the admin's changelist filter is now
  278. rendered in a ``<nav>`` tag instead of a ``<div>``.
  279. * In order to improve accessibility, the admin's footer is now rendered in
  280. a ``<footer>`` tag instead of a ``<div>``, and also moved below the
  281. ``<div id="main">`` element.
  282. * :meth:`.SimpleTestCase.assertURLEqual` and
  283. :meth:`~django.test.SimpleTestCase.assertInHTML` now add ``": "`` to the
  284. ``msg_prefix``. This is consistent with the behavior of other assertions.
  285. * ``django.utils.text.Truncator`` used by :tfilter:`truncatechars_html` and
  286. :tfilter:`truncatewords_html` template filters now uses
  287. :py:class:`html.parser.HTMLParser` subclasses. This results in a more robust
  288. and faster operation, but there may be small differences in the output.
  289. * The undocumented ``django.urls.converters.get_converter()`` function is
  290. removed.
  291. * The minimum supported version of SQLite is increased from 3.27.0 to 3.31.0.
  292. .. _deprecated-features-5.1:
  293. Features deprecated in 5.1
  294. ==========================
  295. Miscellaneous
  296. -------------
  297. * The ``ModelAdmin.log_deletion()`` and ``LogEntryManager.log_action()``
  298. methods are deprecated. Subclasses should implement
  299. ``ModelAdmin.log_deletions()`` and ``LogEntryManager.log_actions()``
  300. instead.
  301. * The undocumented ``django.utils.itercompat.is_iterable()`` function and the
  302. ``django.utils.itercompat`` module are deprecated. Use
  303. ``isinstance(..., collections.abc.Iterable)`` instead.
  304. * The ``django.contrib.gis.geoip2.GeoIP2.coords()`` method is deprecated. Use
  305. ``django.contrib.gis.geoip2.GeoIP2.lon_lat()`` instead.
  306. * The ``django.contrib.gis.geoip2.GeoIP2.open()`` method is deprecated. Use the
  307. :class:`~django.contrib.gis.geoip2.GeoIP2` constructor instead.
  308. * Passing positional arguments to :meth:`.Model.save` and :meth:`.Model.asave`
  309. is deprecated in favor of keyword-only arguments.
  310. * Setting ``django.contrib.gis.gdal.OGRGeometry.coord_dim`` is deprecated. Use
  311. :meth:`~django.contrib.gis.gdal.OGRGeometry.set_3d` instead.
  312. * Overriding existing converters with ``django.urls.register_converter()`` is
  313. deprecated.
  314. * The ``check`` keyword argument of ``CheckConstraint`` is deprecated in favor
  315. of ``condition``.
  316. Features removed in 5.1
  317. =======================
  318. These features have reached the end of their deprecation cycle and are removed
  319. in Django 5.1.
  320. See :ref:`deprecated-features-4.2` for details on these changes, including how
  321. to remove usage of these features.
  322. * The ``BaseUserManager.make_random_password()`` method is removed.
  323. * The model's ``Meta.index_together`` option is removed.
  324. * The ``length_is`` template filter is removed.
  325. * The ``django.contrib.auth.hashers.SHA1PasswordHasher``,
  326. ``django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher``, and
  327. ``django.contrib.auth.hashers.UnsaltedMD5PasswordHasher`` are removed.
  328. * The model ``django.contrib.postgres.fields.CICharField``,
  329. ``django.contrib.postgres.fields.CIEmailField``, and
  330. ``django.contrib.postgres.fields.CITextField`` are removed, except for
  331. support in historical migrations.
  332. * The ``django.contrib.postgres.fields.CIText`` mixin is removed.
  333. * The ``map_width`` and ``map_height`` attributes of ``BaseGeometryWidget`` are
  334. removed.
  335. * The ``SimpleTestCase.assertFormsetError()`` method is removed.
  336. * The ``TransactionTestCase.assertQuerysetEqual()`` method is removed.
  337. * Support for passing encoded JSON string literals to ``JSONField`` and
  338. associated lookups and expressions is removed.
  339. * Support for passing positional arguments to ``Signer`` and
  340. ``TimestampSigner`` is removed.
  341. * The ``DEFAULT_FILE_STORAGE`` and ``STATICFILES_STORAGE`` settings is removed.
  342. * The ``django.core.files.storage.get_storage_class()`` function is removed.