5.0.txt 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. ============================================
  2. Django 5.0 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected December 2023*
  5. Welcome to Django 5.0!
  6. These release notes cover the :ref:`new features <whats-new-5.0>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-5.0>` you'll
  8. want to be aware of when upgrading from Django 4.2 or earlier. We've
  9. :ref:`begun the deprecation process for some features
  10. <deprecated-features-5.0>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Python compatibility
  14. ====================
  15. Django 5.0 supports Python 3.10, 3.11, and 3.12. We **highly recommend** and
  16. only officially support the latest release of each series.
  17. The Django 4.2.x series is the last to support Python 3.8 and 3.9.
  18. Third-party library support for older version of Django
  19. =======================================================
  20. Following the release of Django 5.0, we suggest that third-party app authors
  21. drop support for all versions of Django prior to 4.2. At that time, you should
  22. be able to run your package's tests using ``python -Wd`` so that deprecation
  23. warnings appear. After making the deprecation warning fixes, your app should be
  24. compatible with Django 5.0.
  25. .. _whats-new-5.0:
  26. What's new in Django 5.0
  27. ========================
  28. Minor features
  29. --------------
  30. :mod:`django.contrib.admin`
  31. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  32. * ...
  33. :mod:`django.contrib.admindocs`
  34. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  35. * The default iteration count for the PBKDF2 password hasher is increased from
  36. 480,000 to 580,000.
  37. :mod:`django.contrib.auth`
  38. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  39. * ...
  40. :mod:`django.contrib.contenttypes`
  41. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  42. * ...
  43. :mod:`django.contrib.gis`
  44. ~~~~~~~~~~~~~~~~~~~~~~~~~
  45. * ...
  46. :mod:`django.contrib.messages`
  47. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. * ...
  49. :mod:`django.contrib.postgres`
  50. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  51. * ...
  52. :mod:`django.contrib.redirects`
  53. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  54. * ...
  55. :mod:`django.contrib.sessions`
  56. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  57. * ...
  58. :mod:`django.contrib.sitemaps`
  59. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  60. * ...
  61. :mod:`django.contrib.sites`
  62. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  63. * ...
  64. :mod:`django.contrib.staticfiles`
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. * ...
  67. :mod:`django.contrib.syndication`
  68. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. * ...
  70. Cache
  71. ~~~~~
  72. * ...
  73. CSRF
  74. ~~~~
  75. * ...
  76. Decorators
  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. * ...
  94. Generic Views
  95. ~~~~~~~~~~~~~
  96. * ...
  97. Internationalization
  98. ~~~~~~~~~~~~~~~~~~~~
  99. * ...
  100. Logging
  101. ~~~~~~~
  102. * ...
  103. Management Commands
  104. ~~~~~~~~~~~~~~~~~~~
  105. * ...
  106. Migrations
  107. ~~~~~~~~~~
  108. * ...
  109. Models
  110. ~~~~~~
  111. * ...
  112. Requests and Responses
  113. ~~~~~~~~~~~~~~~~~~~~~~
  114. * ...
  115. Security
  116. ~~~~~~~~
  117. * ...
  118. Serialization
  119. ~~~~~~~~~~~~~
  120. * ...
  121. Signals
  122. ~~~~~~~
  123. * ...
  124. Templates
  125. ~~~~~~~~~
  126. * ...
  127. Tests
  128. ~~~~~
  129. * ...
  130. URLs
  131. ~~~~
  132. * ...
  133. Utilities
  134. ~~~~~~~~~
  135. * ...
  136. Validators
  137. ~~~~~~~~~~
  138. * ...
  139. .. _backwards-incompatible-5.0:
  140. Backwards incompatible changes in 5.0
  141. =====================================
  142. Database backend API
  143. --------------------
  144. This section describes changes that may be needed in third-party database
  145. backends.
  146. * ...
  147. Miscellaneous
  148. -------------
  149. * ...
  150. .. _deprecated-features-5.0:
  151. Features deprecated in 5.0
  152. ==========================
  153. Miscellaneous
  154. -------------
  155. * The ``DjangoDivFormRenderer`` and ``Jinja2DivFormRenderer`` transitional form
  156. renderers are deprecated.
  157. Features removed in 5.0
  158. =======================
  159. These features have reached the end of their deprecation cycle and are removed
  160. in Django 5.0.
  161. See :ref:`deprecated-features-4.0` for details on these changes, including how
  162. to remove usage of these features.
  163. * The ``SERIALIZE`` test setting is removed.
  164. * The undocumented ``django.utils.baseconv`` module is removed.
  165. * The undocumented ``django.utils.datetime_safe`` module is removed.
  166. * The default value of the ``USE_TZ`` setting is changed from ``False`` to
  167. ``True``.
  168. * The default sitemap protocol for sitemaps built outside the context of a
  169. request is changed from ``'http'`` to ``'https'``.
  170. * The ``extra_tests`` argument for ``DiscoverRunner.build_suite()`` and
  171. ``DiscoverRunner.run_tests()`` is removed.
  172. * The ``django.contrib.postgres.aggregates.ArrayAgg``, ``JSONBAgg``, and
  173. ``StringAgg`` aggregates no longer return ``[]``, ``[]``, and ``''``,
  174. respectively, when there are no rows.
  175. * The ``USE_L10N`` setting is removed.
  176. * The ``USE_DEPRECATED_PYTZ`` transitional setting is removed.
  177. * Support for ``pytz`` timezones is removed.
  178. * The ``is_dst`` argument is removed from:
  179. * ``QuerySet.datetimes()``
  180. * ``django.utils.timezone.make_aware()``
  181. * ``django.db.models.functions.Trunc()``
  182. * ``django.db.models.functions.TruncSecond()``
  183. * ``django.db.models.functions.TruncMinute()``
  184. * ``django.db.models.functions.TruncHour()``
  185. * ``django.db.models.functions.TruncDay()``
  186. * ``django.db.models.functions.TruncWeek()``
  187. * ``django.db.models.functions.TruncMonth()``
  188. * ``django.db.models.functions.TruncQuarter()``
  189. * ``django.db.models.functions.TruncYear()``
  190. * The ``django.contrib.gis.admin.GeoModelAdmin`` and ``OSMGeoAdmin`` classes
  191. are removed.
  192. * The undocumented ``BaseForm._html_output()`` method is removed.
  193. * The ability to return a ``str``, rather than a ``SafeString``, when rendering
  194. an ``ErrorDict`` and ``ErrorList`` is removed.
  195. See :ref:`deprecated-features-4.1` for details on these changes, including how
  196. to remove usage of these features.
  197. * The ``SitemapIndexItem.__str__()`` method is removed.
  198. * The ``CSRF_COOKIE_MASKED`` transitional setting is removed.
  199. * The ``name`` argument of ``django.utils.functional.cached_property()`` is
  200. removed.
  201. * The ``opclasses`` argument of
  202. ``django.contrib.postgres.constraints.ExclusionConstraint`` is removed.
  203. * The undocumented ability to pass ``errors=None`` to
  204. ``SimpleTestCase.assertFormError()`` and ``assertFormsetError()`` is removed.
  205. * ``django.contrib.sessions.serializers.PickleSerializer`` is removed.
  206. * The usage of ``QuerySet.iterator()`` on a queryset that prefetches related
  207. objects without providing the ``chunk_size`` argument is no longer allowed.
  208. * Passing unsaved model instances to related filters is no longer allowed.
  209. * ``created=True`` is required in the signature of
  210. ``RemoteUserBackend.configure_user()`` subclasses.
  211. * Support for logging out via ``GET`` requests in the
  212. ``django.contrib.auth.views.LogoutView`` and
  213. ``django.contrib.auth.views.logout_then_login()`` is removed.
  214. * The ``django.utils.timezone.utc`` alias to ``datetime.timezone.utc`` is
  215. removed.
  216. * Passing a response object and a form/formset name to
  217. ``SimpleTestCase.assertFormError()`` and ``assertFormSetError()`` is no
  218. longer allowed.
  219. * The ``django.contrib.gis.admin.OpenLayersWidget`` is removed.
  220. + The ``django.contrib.auth.hashers.CryptPasswordHasher`` is removed.
  221. * The ``"django/forms/default.html"`` and
  222. ``"django/forms/formsets/default.html"`` templates are removed.
  223. * The default form and formset rendering style is changed to the div-based.
  224. * Passing ``nulls_first=False`` or ``nulls_last=False`` to ``Expression.asc()``
  225. and ``Expression.desc()`` methods, and the ``OrderBy`` expression is no
  226. longer allowed.