6.0.txt 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. ============================================
  2. Django 6.0 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected December 2025*
  5. Welcome to Django 6.0!
  6. These release notes cover the :ref:`new features <whats-new-6.0>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-6.0>` you'll
  8. want to be aware of when upgrading from Django 5.2 or earlier. We've
  9. :ref:`begun the deprecation process for some features
  10. <deprecated-features-6.0>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Python compatibility
  14. ====================
  15. Django 6.0 supports Python 3.12 and 3.13. We **highly recommend** and only
  16. officially support the latest release of each series.
  17. The Django 5.2.x series is the last to support Python 3.10 and 3.11.
  18. Third-party library support for older version of Django
  19. =======================================================
  20. Following the release of Django 6.0, we suggest that third-party app authors
  21. drop support for all versions of Django prior to 5.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 6.0.
  25. .. _whats-new-6.0:
  26. What's new in Django 6.0
  27. ========================
  28. Minor features
  29. --------------
  30. :mod:`django.contrib.admin`
  31. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  32. * ...
  33. :mod:`django.contrib.admindocs`
  34. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  35. * The new :attr:`.AdminSite.password_change_form` attribute allows customizing
  36. the form used in the admin site password change view.
  37. :mod:`django.contrib.auth`
  38. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  39. * The default iteration count for the PBKDF2 password hasher is increased from
  40. 1,000,000 to 1,200,000.
  41. :mod:`django.contrib.contenttypes`
  42. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  43. * ...
  44. :mod:`django.contrib.gis`
  45. ~~~~~~~~~~~~~~~~~~~~~~~~~
  46. * The new :attr:`.GEOSGeometry.hasm` property checks whether the geometry has
  47. the M dimension.
  48. :mod:`django.contrib.messages`
  49. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  50. * ...
  51. :mod:`django.contrib.postgres`
  52. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  53. * ...
  54. :mod:`django.contrib.redirects`
  55. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  56. * ...
  57. :mod:`django.contrib.sessions`
  58. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59. * ...
  60. :mod:`django.contrib.sitemaps`
  61. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  62. * ...
  63. :mod:`django.contrib.sites`
  64. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  65. * ...
  66. :mod:`django.contrib.staticfiles`
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  68. * ...
  69. :mod:`django.contrib.syndication`
  70. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  71. * ...
  72. Cache
  73. ~~~~~
  74. * ...
  75. CSRF
  76. ~~~~
  77. * ...
  78. Decorators
  79. ~~~~~~~~~~
  80. * ...
  81. Email
  82. ~~~~~
  83. * ...
  84. Error Reporting
  85. ~~~~~~~~~~~~~~~
  86. * ...
  87. File Storage
  88. ~~~~~~~~~~~~
  89. * ...
  90. File Uploads
  91. ~~~~~~~~~~~~
  92. * ...
  93. Forms
  94. ~~~~~
  95. * ...
  96. Generic Views
  97. ~~~~~~~~~~~~~
  98. * ...
  99. Internationalization
  100. ~~~~~~~~~~~~~~~~~~~~
  101. * ...
  102. Logging
  103. ~~~~~~~
  104. * ...
  105. Management Commands
  106. ~~~~~~~~~~~~~~~~~~~
  107. * ...
  108. Migrations
  109. ~~~~~~~~~~
  110. * Squashed migrations can now themselves be squashed before being transitioned
  111. to normal migrations.
  112. Models
  113. ~~~~~~
  114. * ...
  115. Requests and Responses
  116. ~~~~~~~~~~~~~~~~~~~~~~
  117. * ...
  118. Security
  119. ~~~~~~~~
  120. * ...
  121. Serialization
  122. ~~~~~~~~~~~~~
  123. * ...
  124. Signals
  125. ~~~~~~~
  126. * ...
  127. Templates
  128. ~~~~~~~~~
  129. * ...
  130. Tests
  131. ~~~~~
  132. * ...
  133. URLs
  134. ~~~~
  135. * ...
  136. Utilities
  137. ~~~~~~~~~
  138. * ...
  139. Validators
  140. ~~~~~~~~~~
  141. * ...
  142. .. _backwards-incompatible-6.0:
  143. Backwards incompatible changes in 6.0
  144. =====================================
  145. Database backend API
  146. --------------------
  147. This section describes changes that may be needed in third-party database
  148. backends.
  149. * ...
  150. Dropped support for Python < 3.12
  151. ---------------------------------
  152. Because Python 3.12 is now the minimum supported version for Django, any
  153. optional dependencies must also meet that requirement. The following versions
  154. of each library are the first to add or confirm compatibility with Python 3.12:
  155. * ``aiosmtpd`` 1.4.5
  156. * ``argon2-cffi`` 23.1.0
  157. * ``bcrypt`` 4.1.1
  158. * ``geoip2`` 4.8.0
  159. * ``Pillow`` 10.1.0
  160. * ``mysqlclient`` 2.2.1
  161. * ``numpy`` 1.26.0
  162. * ``PyYAML`` 6.0.2
  163. * ``psycopg`` 3.1.12
  164. * ``psycopg2`` 2.9.9
  165. * ``redis-py`` 5.1.0
  166. * ``selenium`` 4.23.0
  167. * ``sqlparse`` 0.5.0
  168. * ``tblib`` 3.0.0
  169. Miscellaneous
  170. -------------
  171. * ...
  172. .. _deprecated-features-6.0:
  173. Features deprecated in 6.0
  174. ==========================
  175. Miscellaneous
  176. -------------
  177. * ...
  178. Features removed in 6.0
  179. =======================
  180. These features have reached the end of their deprecation cycle and are removed
  181. in Django 6.0.
  182. See :ref:`deprecated-features-5.0` for details on these changes, including how
  183. to remove usage of these features.
  184. * Support for passing positional arguments to ``BaseConstraint`` is removed.
  185. * The ``DjangoDivFormRenderer`` and ``Jinja2DivFormRenderer`` transitional form
  186. renderers are removed.
  187. * ``BaseDatabaseOperations.field_cast_sql()`` is removed.
  188. * ``request`` is required in the signature of ``ModelAdmin.lookup_allowed()``
  189. subclasses.
  190. * Support for calling ``format_html()`` without passing args or kwargs is
  191. removed.
  192. * The default scheme for ``forms.URLField`` changed from ``"http"`` to
  193. ``"https"``.
  194. * The ``FORMS_URLFIELD_ASSUME_HTTPS`` transitional setting is removed.
  195. * The ``django.db.models.sql.datastructures.Join`` no longer fallback to
  196. ``get_joining_columns()``.
  197. * The ``get_joining_columns()`` method of ``ForeignObject`` and
  198. ``ForeignObjectRel`` is removed.
  199. * The ``ForeignObject.get_reverse_joining_columns()`` method is be removed.
  200. * Support for ``cx_Oracle`` is removed.
  201. * The ``ChoicesMeta`` alias to ``django.db.models.enums.ChoicesType`` is
  202. removed.
  203. * The ``Prefetch.get_current_queryset()`` method is removed.
  204. * The ``get_prefetch_queryset()`` method of related managers and descriptors is
  205. removed.
  206. * ``get_prefetcher()`` and ``prefetch_related_objects()`` no longer fallback to
  207. ``get_prefetch_queryset()``.
  208. See :ref:`deprecated-features-5.1` for details on these changes, including how
  209. to remove usage of these features.
  210. * ``django.urls.register_converter()`` no longer allows overriding existing
  211. converters.
  212. * The ``ModelAdmin.log_deletion()`` and ``LogEntryManager.log_action()``
  213. methods are removed.
  214. * The undocumented ``django.utils.itercompat.is_iterable()`` function and the
  215. ``django.utils.itercompat`` module is removed.
  216. * The ``django.contrib.gis.geoip2.GeoIP2.coords()`` method is removed.
  217. * The ``django.contrib.gis.geoip2.GeoIP2.open()`` method is removed.
  218. * Support for passing positional arguments to ``Model.save()`` and
  219. ``Model.asave()`` is removed.
  220. * The setter for ``django.contrib.gis.gdal.OGRGeometry.coord_dim`` is removed.
  221. * The ``check`` keyword argument of ``CheckConstraint`` is removed.
  222. * The ``get_cache_name()`` method of ``FieldCacheMixin`` is removed.
  223. * The ``OS_OPEN_FLAGS`` attribute of
  224. :class:`~django.core.files.storage.FileSystemStorage` is removed.