4.2.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. ============================================
  2. Django 4.2 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected April 2023*
  5. Welcome to Django 4.2!
  6. These release notes cover the :ref:`new features <whats-new-4.2>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-4.2>` you'll
  8. want to be aware of when upgrading from Django 4.1 or earlier. We've
  9. :ref:`begun the deprecation process for some features
  10. <deprecated-features-4.2>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Python compatibility
  14. ====================
  15. Django 4.2 supports Python 3.8, 3.9, 3.10, and 3.11. We **highly recommend**
  16. and only officially support the latest release of each series.
  17. .. _whats-new-4.2:
  18. What's new in Django 4.2
  19. ========================
  20. Minor features
  21. --------------
  22. :mod:`django.contrib.admin`
  23. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  24. * The light or dark color theme of the admin can now be toggled in the UI, as
  25. well as being set to follow the system setting.
  26. * The admin's font stack now prefers system UI fonts and no longer requires
  27. downloading fonts. Additionally, CSS variables are available to more easily
  28. override the default font families.
  29. * The :source:`admin/delete_confirmation.html
  30. <django/contrib/admin/templates/admin/delete_confirmation.html>` template now
  31. has some additional blocks and scripting hooks to ease customization.
  32. * The chosen options of
  33. :attr:`~django.contrib.admin.ModelAdmin.filter_horizontal` and
  34. :attr:`~django.contrib.admin.ModelAdmin.filter_vertical` widgets are now
  35. filterable.
  36. * The ``admin/base.html`` template now has a new block ``nav-breadcrumbs``
  37. which contains the navigation landmark and the ``breadcrumbs`` block.
  38. * :attr:`.ModelAdmin.list_editable` now uses atomic transactions when making
  39. edits.
  40. :mod:`django.contrib.admindocs`
  41. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  42. * ...
  43. :mod:`django.contrib.auth`
  44. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  45. * The default iteration count for the PBKDF2 password hasher is increased from
  46. 390,000 to 480,000.
  47. * :class:`~django.contrib.auth.forms.UserCreationForm` now saves many-to-many
  48. form fields for a custom user model.
  49. :mod:`django.contrib.contenttypes`
  50. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  51. * ...
  52. :mod:`django.contrib.gis`
  53. ~~~~~~~~~~~~~~~~~~~~~~~~~
  54. * The :doc:`GeoJSON serializer </ref/contrib/gis/serializers>` now outputs the
  55. ``id`` key for serialized features, which defaults to the primary key of
  56. objects.
  57. * The :class:`~django.contrib.gis.gdal.GDALRaster` class now supports
  58. :class:`pathlib.Path`.
  59. * The :class:`~django.contrib.gis.geoip2.GeoIP2` class now supports ``.mmdb``
  60. files downloaded from DB-IP.
  61. * The OpenLayers template widget no longer includes inline CSS (which also
  62. removes the former ``map_css`` block) to better comply with a strict Content
  63. Security Policy.
  64. :mod:`django.contrib.messages`
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. * ...
  67. :mod:`django.contrib.postgres`
  68. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. * The new :lookup:`trigram_strict_word_similar` lookup, and the
  70. :class:`TrigramStrictWordSimilarity()
  71. <django.contrib.postgres.search.TrigramStrictWordSimilarity>` and
  72. :class:`TrigramStrictWordDistance()
  73. <django.contrib.postgres.search.TrigramStrictWordDistance>` expressions allow
  74. using trigram strict word similarity.
  75. * The :lookup:`arrayfield.overlap` lookup now supports ``QuerySet.values()``
  76. and ``values_list()`` as a right-hand side.
  77. :mod:`django.contrib.redirects`
  78. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  79. * ...
  80. :mod:`django.contrib.sessions`
  81. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  82. * ...
  83. :mod:`django.contrib.sitemaps`
  84. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  85. * ...
  86. :mod:`django.contrib.sites`
  87. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  88. * ...
  89. :mod:`django.contrib.staticfiles`
  90. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  91. * ...
  92. :mod:`django.contrib.syndication`
  93. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  94. * ...
  95. Cache
  96. ~~~~~
  97. * ...
  98. CSRF
  99. ~~~~
  100. * ...
  101. Decorators
  102. ~~~~~~~~~~
  103. * ...
  104. Email
  105. ~~~~~
  106. * ...
  107. Error Reporting
  108. ~~~~~~~~~~~~~~~
  109. * The debug page now shows :pep:`exception notes <678>` and
  110. :pep:`fine-grained error locations <657>` on Python 3.11+.
  111. File Storage
  112. ~~~~~~~~~~~~
  113. * ...
  114. File Uploads
  115. ~~~~~~~~~~~~
  116. * ...
  117. Forms
  118. ~~~~~
  119. * :class:`~django.forms.ModelForm` now accepts the new ``Meta`` option
  120. ``formfield_callback`` to customize form fields.
  121. * :func:`~django.forms.models.modelform_factory` now respects the
  122. ``formfield_callback`` attribute of the ``form``’s ``Meta``.
  123. * Session cookies are now treated as credentials and therefore hidden and
  124. replaced with stars (``**********``) in error reports.
  125. Generic Views
  126. ~~~~~~~~~~~~~
  127. * ...
  128. Internationalization
  129. ~~~~~~~~~~~~~~~~~~~~
  130. * Added support and translations for the Central Kurdish (Sorani) language.
  131. * The :class:`~django.middleware.locale.LocaleMiddleware` now respects a
  132. language from the request when :func:`~django.conf.urls.i18n.i18n_patterns`
  133. is used with the ``prefix_default_language`` argument set to ``False``.
  134. Logging
  135. ~~~~~~~
  136. * The :ref:`django-db-logger` logger now logs transaction management queries
  137. (``BEGIN``, ``COMMIT``, and ``ROLLBACK``) at the ``DEBUG`` level.
  138. Management Commands
  139. ~~~~~~~~~~~~~~~~~~~
  140. * :djadmin:`makemessages` command now supports locales with private sub-tags
  141. such as ``nl_NL-x-informal``.
  142. * The new :option:`makemigrations --update` option merges model changes into
  143. the latest migration and optimizes the resulting operations.
  144. Migrations
  145. ~~~~~~~~~~
  146. * Migrations now support serialization of ``enum.Flag`` objects.
  147. Models
  148. ~~~~~~
  149. * ``QuerySet`` now extensively supports filtering against
  150. :ref:`window-functions` with the exception of disjunctive filter lookups
  151. against window functions when performing aggregation.
  152. * :meth:`~.QuerySet.prefetch_related` now supports
  153. :class:`~django.db.models.Prefetch` objects with sliced querysets.
  154. * :ref:`Registering lookups <lookup-registration-api>` on
  155. :class:`~django.db.models.Field` instances is now supported.
  156. * The new ``robust`` argument for :func:`~django.db.transaction.on_commit`
  157. allows performing actions that can fail after a database transaction is
  158. successfully committed.
  159. * The new :class:`KT() <django.db.models.fields.json.KT>` expression represents
  160. the text value of a key, index, or path transform of
  161. :class:`~django.db.models.JSONField`.
  162. * :class:`~django.db.models.functions.Now` now supports microsecond precision
  163. on MySQL and millisecond precision on SQLite.
  164. * :class:`F() <django.db.models.F>` expressions that output ``BooleanField``
  165. can now be negated using ``~F()`` (inversion operator).
  166. * ``Model`` now provides asynchronous versions of some methods that use the
  167. database, using an ``a`` prefix: :meth:`~.Model.adelete`,
  168. :meth:`~.Model.arefresh_from_db`, and :meth:`~.Model.asave`.
  169. * Related managers now provide asynchronous versions of methods that change a
  170. set of related objects, using an ``a`` prefix: :meth:`~.RelatedManager.aadd`,
  171. :meth:`~.RelatedManager.aclear`, :meth:`~.RelatedManager.aremove`, and
  172. :meth:`~.RelatedManager.aset`.
  173. Requests and Responses
  174. ~~~~~~~~~~~~~~~~~~~~~~
  175. * ...
  176. Security
  177. ~~~~~~~~
  178. * ...
  179. Serialization
  180. ~~~~~~~~~~~~~
  181. * ...
  182. Signals
  183. ~~~~~~~
  184. * ...
  185. Templates
  186. ~~~~~~~~~
  187. * ...
  188. Tests
  189. ~~~~~
  190. * The :option:`test --debug-sql` option now formats SQL queries with
  191. ``sqlparse``.
  192. * The :class:`~django.test.RequestFactory`,
  193. :class:`~django.test.AsyncRequestFactory`, :class:`~django.test.Client`, and
  194. :class:`~django.test.AsyncClient` classes now support the ``headers``
  195. parameter, which accepts a dictionary of header names and values. This allows
  196. a more natural syntax for declaring headers.
  197. .. code-block:: python
  198. # Before:
  199. self.client.get("/home/", HTTP_ACCEPT_LANGUAGE="fr")
  200. await self.async_client.get("/home/", ACCEPT_LANGUAGE="fr")
  201. # After:
  202. self.client.get("/home/", headers={"accept-language": "fr"})
  203. await self.async_client.get("/home/", headers={"accept-language": "fr"})
  204. URLs
  205. ~~~~
  206. * ...
  207. Utilities
  208. ~~~~~~~~~
  209. * The new ``encoder`` parameter for :meth:`django.utils.html.json_script`
  210. function allows customizing a JSON encoder class.
  211. * The private internal vendored copy of ``urllib.parse.urlsplit()`` now strips
  212. ``'\r'``, ``'\n'``, and ``'\t'`` (see :cve:`2022-0391` and :bpo:`43882`).
  213. This is to protect projects that may be incorrectly using the internal
  214. ``url_has_allowed_host_and_scheme()`` function, instead of using one of the
  215. documented functions for handling URL redirects. The Django functions were
  216. not affected.
  217. Validators
  218. ~~~~~~~~~~
  219. * The list of common passwords used by ``CommonPasswordValidator`` is updated
  220. to the most recent version.
  221. .. _backwards-incompatible-4.2:
  222. Backwards incompatible changes in 4.2
  223. =====================================
  224. Database backend API
  225. --------------------
  226. This section describes changes that may be needed in third-party database
  227. backends.
  228. * ``DatabaseFeatures.allows_group_by_pk`` is removed as it only remained to
  229. accommodate a MySQL extension that has been supplanted by proper functional
  230. dependency detection in MySQL 5.7.15. Note that
  231. ``DatabaseFeatures.allows_group_by_selected_pks`` is still supported and
  232. should be enabled if your backend supports functional dependency detection in
  233. ``GROUP BY`` clauses as specified by the ``SQL:1999`` standard.
  234. Dropped support for MariaDB 10.3
  235. --------------------------------
  236. Upstream support for MariaDB 10.3 ends in May 2023. Django 4.2 supports MariaDB
  237. 10.4 and higher.
  238. Dropped support for MySQL 5.7
  239. -----------------------------
  240. Upstream support for MySQL 5.7 ends in October 2023. Django 4.2 supports MySQL
  241. 8 and higher.
  242. Dropped support for PostgreSQL 11
  243. ---------------------------------
  244. Upstream support for PostgreSQL 11 ends in November 2023. Django 4.2 supports
  245. PostgreSQL 12 and higher.
  246. Setting ``update_fields`` in ``Model.save()`` may now be required
  247. -----------------------------------------------------------------
  248. In order to avoid updating unnecessary columns,
  249. :meth:`.QuerySet.update_or_create` now passes ``update_fields`` to the
  250. :meth:`Model.save() <django.db.models.Model.save>` calls. As a consequence, any
  251. fields modified in the custom ``save()`` methods should be added to the
  252. ``update_fields`` keyword argument before calling ``super()``. See
  253. :ref:`overriding-model-methods` for more details.
  254. Miscellaneous
  255. -------------
  256. * The undocumented ``SimpleTemplateResponse.rendering_attrs`` and
  257. ``TemplateResponse.rendering_attrs`` are renamed to ``non_picklable_attrs``.
  258. * The undocumented ``django.http.multipartparser.parse_header()`` function is
  259. removed. Use ``django.utils.http.parse_header_parameters()`` instead.
  260. * :ttag:`{% blocktranslate asvar … %}<blocktranslate>` result is now marked as
  261. safe for (HTML) output purposes.
  262. * The ``autofocus`` HTML attribute in the admin search box is removed as it can
  263. be confusing for screen readers.
  264. * The :option:`makemigrations --check` option no longer creates missing
  265. migration files.
  266. * The ``alias`` argument for :meth:`.Expression.get_group_by_cols` is removed.
  267. * The minimum supported version of ``sqlparse`` is increased from 0.2.2 to
  268. 0.2.3.
  269. * The undocumented ``negated`` parameter of the
  270. :class:`~django.db.models.Exists` expression is removed.
  271. * The ``is_summary`` argument of the undocumented ``Query.add_annotation()``
  272. method is removed.
  273. .. _deprecated-features-4.2:
  274. Features deprecated in 4.2
  275. ==========================
  276. ``index_together`` option is deprecated in favor of ``indexes``
  277. ---------------------------------------------------------------
  278. The :attr:`Meta.index_together <django.db.models.Options.index_together>`
  279. option is deprecated in favor of the :attr:`~django.db.models.Options.indexes`
  280. option.
  281. Migrating existing ``index_together`` should be handled as a migration. For
  282. example::
  283. class Author(models.Model):
  284. rank = models.IntegerField()
  285. name = models.CharField(max_length=30)
  286. class Meta:
  287. index_together = [["rank", "name"]]
  288. Should become::
  289. class Author(models.Model):
  290. rank = models.IntegerField()
  291. name = models.CharField(max_length=30)
  292. class Meta:
  293. indexes = [models.Index(fields=["rank", "name"])]
  294. Running the :djadmin:`makemigrations` command will generate a migration
  295. containing a :class:`~django.db.migrations.operations.RenameIndex` operation
  296. which will rename the existing index.
  297. The ``AlterIndexTogether`` migration operation is now officially supported only
  298. for pre-Django 4.2 migration files. For backward compatibility reasons, it's
  299. still part of the public API, and there's no plan to deprecate or remove it,
  300. but it should not be used for new migrations. Use
  301. :class:`~django.db.migrations.operations.AddIndex` and
  302. :class:`~django.db.migrations.operations.RemoveIndex` operations instead.
  303. Passing encoded JSON string literals to ``JSONField`` is deprecated
  304. -------------------------------------------------------------------
  305. ``JSONField`` and its associated lookups and aggregates use to allow passing
  306. JSON encoded string literals which caused ambiguity on whether string literals
  307. were already encoded from database backend's perspective.
  308. During the deprecation period string literals will be attempted to be JSON
  309. decoded and a warning will be emitted on success that points at passing
  310. non-encoded forms instead.
  311. Code that use to pass JSON encoded string literals::
  312. Document.objects.bulk_create(
  313. Document(data=Value("null")),
  314. Document(data=Value("[]")),
  315. Document(data=Value('"foo-bar"')),
  316. )
  317. Document.objects.annotate(
  318. JSONBAgg("field", default=Value('[]')),
  319. )
  320. Should become::
  321. Document.objects.bulk_create(
  322. Document(data=Value(None, JSONField())),
  323. Document(data=[]),
  324. Document(data="foo-bar"),
  325. )
  326. Document.objects.annotate(
  327. JSONBAgg("field", default=[]),
  328. )
  329. From Django 5.1+ string literals will be implicitly interpreted as JSON string
  330. literals.
  331. Miscellaneous
  332. -------------
  333. * The ``BaseUserManager.make_random_password()`` method is deprecated. See
  334. `recipes and best practices
  335. <https://docs.python.org/3/library/secrets.html#recipes-and-best-practices>`_
  336. for using Python's :py:mod:`secrets` module to generate passwords.
  337. * The ``length_is`` template filter is deprecated in favor of :tfilter:`length`
  338. and the ``==`` operator within an :ttag:`{% if %}<if>` tag. For example
  339. .. code-block:: html+django
  340. {% if value|length == 4 %}…{% endif %}
  341. {% if value|length == 4 %}True{% else %}False{% endif %}
  342. instead of:
  343. .. code-block:: html+django
  344. {% if value|length_is:4 %}…{% endif %}
  345. {{ value|length_is:4 }}
  346. * ``django.contrib.auth.hashers.SHA1PasswordHasher``,
  347. ``django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher``, and
  348. ``django.contrib.auth.hashers.UnsaltedMD5PasswordHasher`` are deprecated.
  349. * ``django.contrib.postgres.fields.CICharField`` is deprecated in favor of
  350. ``CharField(db_collation="…")`` with a case-insensitive non-deterministic
  351. collation.
  352. * ``django.contrib.postgres.fields.CIEmailField`` is deprecated in favor of
  353. ``EmailField(db_collation="…")`` with a case-insensitive non-deterministic
  354. collation.
  355. * ``django.contrib.postgres.fields.CITextField`` is deprecated in favor of
  356. ``TextField(db_collation="…")`` with a case-insensitive non-deterministic
  357. collation.
  358. * ``django.contrib.postgres.fields.CIText`` mixin is deprecated.
  359. * The ``map_height`` and ``map_width`` attributes of ``BaseGeometryWidget`` are
  360. deprecated, use CSS to size map widgets instead.
  361. * ``SimpleTestCase.assertFormsetError()`` is deprecated in favor of
  362. ``assertFormSetError()``.
  363. * ``TransactionTestCase.assertQuerysetEqual()`` is deprecated in favor of
  364. ``assertQuerySetEqual()``.