4.0.txt 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764
  1. ============================================
  2. Django 4.0 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected December 2021*
  5. Welcome to Django 4.0!
  6. These release notes cover the :ref:`new features <whats-new-4.0>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-4.0>` you'll
  8. want to be aware of when upgrading from Django 3.2 or earlier. We've
  9. :ref:`begun the deprecation process for some features
  10. <deprecated-features-4.0>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Python compatibility
  14. ====================
  15. Django 4.0 supports Python 3.8, 3.9, and 3.10. We **highly recommend** and only
  16. officially support the latest release of each series.
  17. The Django 3.2.x series is the last to support Python 3.6 and 3.7.
  18. .. _whats-new-4.0:
  19. What's new in Django 4.0
  20. ========================
  21. ``zoneinfo`` default timezone implementation
  22. --------------------------------------------
  23. The Python standard library's :mod:`zoneinfo` is now the default timezone
  24. implementation in Django.
  25. This is the next step in the migration from using ``pytz`` to using
  26. :mod:`zoneinfo`. Django 3.2 allowed the use of non-``pytz`` time zones. Django
  27. 4.0 makes ``zoneinfo`` the default implementation. Support for ``pytz`` is now
  28. deprecated and will be removed in Django 5.0.
  29. :mod:`zoneinfo` is part of the Python standard library from Python 3.9. The
  30. ``backports.zoneinfo`` package is automatically installed alongside Django if
  31. you are using Python 3.8.
  32. The move to ``zoneinfo`` should be largely transparent. Selection of the
  33. current timezone, conversion of datetime instances to the current timezone in
  34. forms and templates, as well as operations on aware datetimes in UTC are
  35. unaffected.
  36. However, if you are working with non-UTC time zones, and using the ``pytz``
  37. ``normalize()`` and ``localize()`` APIs, possibly with the :setting:`TIME_ZONE
  38. <DATABASE-TIME_ZONE>` setting, you will need to audit your code, since ``pytz``
  39. and ``zoneinfo`` are not entirely equivalent.
  40. To give time for such an audit, the transitional :setting:`USE_DEPRECATED_PYTZ`
  41. setting allows continued use of ``pytz`` during the 4.x release cycle. This
  42. setting will be removed in Django 5.0.
  43. In addition, a `pytz_deprecation_shim`_ package, created by the ``zoneinfo``
  44. author, can be used to assist with the migration from ``pytz``. This package
  45. provides shims to help you safely remove ``pytz``, and has a detailed
  46. `migration guide`_ showing how to move to the new ``zoneinfo`` APIs.
  47. Using `pytz_deprecation_shim`_ and the :setting:`USE_DEPRECATED_PYTZ`
  48. transitional setting is recommended if you need a gradual update path.
  49. .. _pytz_deprecation_shim: https://pytz-deprecation-shim.readthedocs.io/en/latest/index.html
  50. .. _migration guide: https://pytz-deprecation-shim.readthedocs.io/en/latest/migration.html
  51. Functional unique constraints
  52. -----------------------------
  53. The new :attr:`*expressions <django.db.models.UniqueConstraint.expressions>`
  54. positional argument of
  55. :class:`UniqueConstraint() <django.db.models.UniqueConstraint>` enables
  56. creating functional unique constraints on expressions and database functions.
  57. For example::
  58. from django.db import models
  59. from django.db.models import UniqueConstraint
  60. from django.db.models.functions import Lower
  61. class MyModel(models.Model):
  62. first_name = models.CharField(max_length=255)
  63. last_name = models.CharField(max_length=255)
  64. class Meta:
  65. constraints = [
  66. UniqueConstraint(
  67. Lower('first_name'),
  68. Lower('last_name').desc(),
  69. name='first_last_name_unique',
  70. ),
  71. ]
  72. Functional unique constraints are added to models using the
  73. :attr:`Meta.constraints <django.db.models.Options.constraints>` option.
  74. ``scrypt`` password hasher
  75. --------------------------
  76. The new :ref:`scrypt password hasher <scrypt-usage>` is more secure and
  77. recommended over PBKDF2. However, it's not the default as it requires OpenSSL
  78. 1.1+ and more memory.
  79. Redis cache backend
  80. -------------------
  81. The new ``django.core.cache.backends.redis.RedisCache`` cache backend provides
  82. built-in support for caching with Redis. `redis-py`_ 3.0.0 or higher is
  83. required. For more details, see the :ref:`documentation on caching with Redis
  84. in Django <redis>`.
  85. .. _`redis-py`: https://pypi.org/project/redis/
  86. Template based form rendering
  87. -----------------------------
  88. To enhance customization of :class:`Forms <django.forms.Form>`,
  89. :doc:`Formsets </topics/forms/formsets>`, and
  90. :class:`~django.forms.ErrorList` they are now rendered using the template
  91. engine. See the new :meth:`~django.forms.Form.render`,
  92. :meth:`~django.forms.Form.get_context`, and
  93. :attr:`~django.forms.Form.template_name` for ``Form`` and
  94. :ref:`formset rendering <formset-rendering>` for ``Formset``.
  95. Minor features
  96. --------------
  97. :mod:`django.contrib.admin`
  98. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  99. * The ``admin/base.html`` template now has a new block ``header`` which
  100. contains the admin site header.
  101. * The new :meth:`.ModelAdmin.get_formset_kwargs` method allows customizing the
  102. keyword arguments passed to the constructor of a formset.
  103. * The navigation sidebar now has a quick filter toolbar.
  104. * The new context variable ``model`` which contains the model class for each
  105. model is added to the :meth:`.AdminSite.each_context` method.
  106. * The new :attr:`.ModelAdmin.search_help_text` attribute allows specifying a
  107. descriptive text for the search box.
  108. * The :attr:`.InlineModelAdmin.verbose_name_plural` attribute now fallbacks to
  109. the :attr:`.InlineModelAdmin.verbose_name` + ``'s'``.
  110. * jQuery is upgraded from version 3.5.1 to 3.6.0.
  111. :mod:`django.contrib.admindocs`
  112. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  113. * The admindocs now allows esoteric setups where :setting:`ROOT_URLCONF` is not
  114. a string.
  115. * The model section of the ``admindocs`` now shows cached properties.
  116. :mod:`django.contrib.auth`
  117. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  118. * The default iteration count for the PBKDF2 password hasher is increased from
  119. 260,000 to 320,000.
  120. * The new
  121. :attr:`LoginView.next_page <django.contrib.auth.views.LoginView.next_page>`
  122. attribute and
  123. :meth:`~django.contrib.auth.views.LoginView.get_default_redirect_url` method
  124. allow customizing the redirect after login.
  125. :mod:`django.contrib.gis`
  126. ~~~~~~~~~~~~~~~~~~~~~~~~~
  127. * Added support for SpatiaLite 5.
  128. * :class:`~django.contrib.gis.gdal.GDALRaster` now allows creating rasters in
  129. any GDAL virtual filesystem.
  130. * The new :class:`~django.contrib.gis.admin.GISModelAdmin` class allows
  131. customizing the widget used for ``GeometryField``. This is encouraged instead
  132. of deprecated ``GeoModelAdmin`` and ``OSMGeoAdmin``.
  133. :mod:`django.contrib.postgres`
  134. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  135. * The PostgreSQL backend now supports connecting by a service name. See
  136. :ref:`postgresql-connection-settings` for more details.
  137. * The new :class:`~django.contrib.postgres.operations.AddConstraintNotValid`
  138. operation allows creating check constraints on PostgreSQL without verifying
  139. that all existing rows satisfy the new constraint.
  140. * The new :class:`~django.contrib.postgres.operations.ValidateConstraint`
  141. operation allows validating check constraints which were created using
  142. :class:`~django.contrib.postgres.operations.AddConstraintNotValid` on
  143. PostgreSQL.
  144. * The new
  145. :class:`ArraySubquery() <django.contrib.postgres.expressions.ArraySubquery>`
  146. expression allows using subqueries to construct lists of values on
  147. PostgreSQL.
  148. * The new :lookup:`trigram_word_similar` lookup, and the
  149. :class:`TrigramWordDistance()
  150. <django.contrib.postgres.search.TrigramWordDistance>` and
  151. :class:`TrigramWordSimilarity()
  152. <django.contrib.postgres.search.TrigramWordSimilarity>` expressions allow
  153. using trigram word similarity.
  154. :mod:`django.contrib.staticfiles`
  155. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  156. * :class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage` now
  157. replaces paths to JavaScript source map references with their hashed
  158. counterparts.
  159. * The new ``manifest_storage`` argument of
  160. :class:`~django.contrib.staticfiles.storage.ManifestFilesMixin` and
  161. :class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage`
  162. allows customizing the manifest file storage.
  163. Cache
  164. ~~~~~
  165. * The new async API for ``django.core.cache.backends.base.BaseCache`` begins
  166. the process of making cache backends async-compatible. The new async methods
  167. all have ``a`` prefixed names, e.g. ``aadd()``, ``aget()``, ``aset()``,
  168. ``aget_or_set()``, or ``adelete_many()``.
  169. Going forward, the ``a`` prefix will be used for async variants of methods
  170. generally.
  171. CSRF
  172. ~~~~
  173. * CSRF protection now consults the ``Origin`` header, if present. To facilitate
  174. this, :ref:`some changes <csrf-trusted-origins-changes-4.0>` to the
  175. :setting:`CSRF_TRUSTED_ORIGINS` setting are required.
  176. Forms
  177. ~~~~~
  178. * :class:`~django.forms.ModelChoiceField` now includes the provided value in
  179. the ``params`` argument of a raised
  180. :exc:`~django.core.exceptions.ValidationError` for the ``invalid_choice``
  181. error message. This allows custom error messages to use the ``%(value)s``
  182. placeholder.
  183. * :class:`~django.forms.formsets.BaseFormSet` now renders non-form errors with
  184. an additional class of ``nonform`` to help distinguish them from
  185. form-specific errors.
  186. * :class:`~django.forms.formsets.BaseFormSet` now allows customizing the widget
  187. used when deleting forms via
  188. :attr:`~django.forms.formsets.BaseFormSet.can_delete` by setting the
  189. :attr:`~django.forms.formsets.BaseFormSet.deletion_widget` attribute or
  190. overriding :meth:`~django.forms.formsets.BaseFormSet.get_deletion_widget`
  191. method.
  192. Internationalization
  193. ~~~~~~~~~~~~~~~~~~~~
  194. * Added support and translations for the Malay language.
  195. Generic Views
  196. ~~~~~~~~~~~~~
  197. * :class:`~django.views.generic.edit.DeleteView` now uses
  198. :class:`~django.views.generic.edit.FormMixin`, allowing you to provide a
  199. :class:`~django.forms.Form` subclass, with a checkbox for example, to confirm
  200. deletion. In addition, this allows ``DeleteView`` to function with
  201. :class:`django.contrib.messages.views.SuccessMessageMixin`.
  202. In accordance with ``FormMixin``, object deletion for POST requests is
  203. handled in ``form_valid()``. Custom delete logic in ``delete()`` handlers
  204. should be moved to ``form_valid()``, or a shared helper method, as needed.
  205. Logging
  206. ~~~~~~~
  207. * The alias of the database used in an SQL call is now passed as extra context
  208. along with each message to the :ref:`django-db-logger` logger.
  209. Management Commands
  210. ~~~~~~~~~~~~~~~~~~~
  211. * The :djadmin:`runserver` management command now supports the
  212. :option:`--skip-checks` option.
  213. * On PostgreSQL, :djadmin:`dbshell` now supports specifying a password file.
  214. * The :djadmin:`shell` command now respects :py:data:`sys.__interactivehook__`
  215. at startup. This allows loading shell history between interactive sessions.
  216. As a consequence, ``readline`` is no longer loaded if running in *isolated*
  217. mode.
  218. * The new :attr:`BaseCommand.suppressed_base_arguments
  219. <django.core.management.BaseCommand.suppressed_base_arguments>` attribute
  220. allows suppressing unsupported default command options in the help output.
  221. * The new :option:`startapp --exclude` and :option:`startproject --exclude`
  222. options allow excluding directories from the template.
  223. Models
  224. ~~~~~~
  225. * New :meth:`QuerySet.contains(obj) <.QuerySet.contains>` method returns
  226. whether the queryset contains the given object. This tries to perform the
  227. query in the simplest and fastest way possible.
  228. * The new ``precision`` argument of the
  229. :class:`Round() <django.db.models.functions.Round>` database function allows
  230. specifying the number of decimal places after rounding.
  231. * :meth:`.QuerySet.bulk_create` now sets the primary key on objects when using
  232. SQLite 3.35+.
  233. * :class:`~django.db.models.DurationField` now supports multiplying and
  234. dividing by scalar values on SQLite.
  235. * :meth:`.QuerySet.bulk_update` now returns the number of objects updated.
  236. * The new :attr:`.Expression.empty_result_set_value` attribute allows
  237. specifying a value to return when the function is used over an empty result
  238. set.
  239. * The ``skip_locked`` argument of :meth:`.QuerySet.select_for_update()` is now
  240. allowed on MariaDB 10.6+.
  241. * :class:`~django.db.models.Lookup` expressions may now be used in ``QuerySet``
  242. annotations, aggregations, and directly in filters.
  243. * The new :ref:`default <aggregate-default>` argument for built-in aggregates
  244. allows specifying a value to be returned when the queryset (or grouping)
  245. contains no entries, rather than ``None``.
  246. Requests and Responses
  247. ~~~~~~~~~~~~~~~~~~~~~~
  248. * The :class:`~django.middleware.security.SecurityMiddleware` now adds the
  249. :ref:`Cross-Origin Opener Policy <cross-origin-opener-policy>` header with a
  250. value of ``'same-origin'`` to prevent cross-origin popups from sharing the
  251. same browsing context. You can prevent this header from being added by
  252. setting the :setting:`SECURE_CROSS_ORIGIN_OPENER_POLICY` setting to ``None``.
  253. Signals
  254. ~~~~~~~
  255. * The new ``stdout`` argument for :func:`~django.db.models.signals.pre_migrate`
  256. and :func:`~django.db.models.signals.post_migrate` signals allows redirecting
  257. output to a stream-like object. It should be preferred over
  258. :py:data:`sys.stdout` and :py:func:`print` when emitting verbose output in
  259. order to allow proper capture when testing.
  260. Templates
  261. ~~~~~~~~~
  262. * :tfilter:`floatformat` template filter now allows using the ``u`` suffix to
  263. force disabling localization.
  264. Tests
  265. ~~~~~
  266. * The new ``serialized_aliases`` argument of
  267. :func:`django.test.utils.setup_databases` determines which
  268. :setting:`DATABASES` aliases test databases should have their state
  269. serialized to allow usage of the
  270. :ref:`serialized_rollback <test-case-serialized-rollback>` feature.
  271. * Django test runner now supports a :option:`--buffer <test --buffer>` option
  272. with parallel tests.
  273. * The new ``logger`` argument to :class:`~django.test.runner.DiscoverRunner`
  274. allows a Python :py:ref:`logger <logger>` to be used for logging.
  275. * The new :meth:`.DiscoverRunner.log` method provides a way to log messages
  276. that uses the ``DiscoverRunner.logger``, or prints to the console if not set.
  277. * Django test runner now supports a :option:`--shuffle <test --shuffle>` option
  278. to execute tests in a random order.
  279. * The :option:`test --parallel` option now supports the value ``auto`` to run
  280. one test process for each processor core.
  281. * :meth:`.TestCase.captureOnCommitCallbacks` now captures new callbacks added
  282. while executing :func:`.transaction.on_commit` callbacks.
  283. .. _backwards-incompatible-4.0:
  284. Backwards incompatible changes in 4.0
  285. =====================================
  286. Database backend API
  287. --------------------
  288. This section describes changes that may be needed in third-party database
  289. backends.
  290. * ``DatabaseOperations.year_lookup_bounds_for_date_field()`` and
  291. ``year_lookup_bounds_for_datetime_field()`` methods now take the optional
  292. ``iso_year`` argument in order to support bounds for ISO-8601 week-numbering
  293. years.
  294. * The second argument of ``DatabaseSchemaEditor._unique_sql()`` and
  295. ``_create_unique_sql()`` methods is now ``fields`` instead of ``columns``.
  296. :mod:`django.contrib.gis`
  297. -------------------------
  298. * Support for PostGIS 2.3 is removed.
  299. * Support for GDAL 2.0 and GEOS 3.5 is removed.
  300. Dropped support for PostgreSQL 9.6
  301. ----------------------------------
  302. Upstream support for PostgreSQL 9.6 ends in November 2021. Django 4.0 supports
  303. PostgreSQL 10 and higher.
  304. Dropped support for Oracle 12.2 and 18c
  305. ---------------------------------------
  306. Upstream support for Oracle 12.2 ends in March 2022 and for Oracle 18c it ends
  307. in June 2021. Django 3.2 will be supported until April 2024. Django 4.0
  308. officially supports Oracle 19c.
  309. .. _csrf-trusted-origins-changes-4.0:
  310. ``CSRF_TRUSTED_ORIGINS`` changes
  311. --------------------------------
  312. Format change
  313. ~~~~~~~~~~~~~
  314. Values in the :setting:`CSRF_TRUSTED_ORIGINS` setting must include the scheme
  315. (e.g. ``'http://'`` or ``'https://'``) instead of only the hostname.
  316. Also, values that started with a dot, must now also include an asterisk before
  317. the dot. For example, change ``'.example.com'`` to ``'https://*.example.com'``.
  318. A system check detects any required changes.
  319. Configuring it may now be required
  320. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  321. As CSRF protection now consults the ``Origin`` header, you may need to set
  322. :setting:`CSRF_TRUSTED_ORIGINS`, particularly if you allow requests from
  323. subdomains by setting :setting:`CSRF_COOKIE_DOMAIN` (or
  324. :setting:`SESSION_COOKIE_DOMAIN` if :setting:`CSRF_USE_SESSIONS` is enabled) to
  325. a value starting with a dot.
  326. ``SecurityMiddleware`` no longer sets the ``X-XSS-Protection`` header
  327. ---------------------------------------------------------------------
  328. The :class:`~django.middleware.security.SecurityMiddleware` no longer sets the
  329. ``X-XSS-Protection`` header if the ``SECURE_BROWSER_XSS_FILTER`` setting is
  330. ``True``. The setting is removed.
  331. Most modern browsers don't honor the ``X-XSS-Protection`` HTTP header. You can
  332. use Content-Security-Policy_ without allowing ``'unsafe-inline'`` scripts
  333. instead.
  334. If you want to support legacy browsers and set the header, use this line in a
  335. custom middleware::
  336. response.headers.setdefault('X-XSS-Protection', '1; mode=block')
  337. .. _Content-Security-Policy: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
  338. Migrations autodetector changes
  339. -------------------------------
  340. The migrations autodetector now uses model states instead of model classes.
  341. Also, migration operations for ``ForeignKey`` and ``ManyToManyField`` fields no
  342. longer specify attributes which were not passed to the fields during
  343. initialization.
  344. As a side-effect, running ``makemigrations`` might generate no-op
  345. ``AlterField`` operations for ``ManyToManyField`` and ``ForeignKey`` fields in
  346. some cases.
  347. ``DeleteView`` changes
  348. ----------------------
  349. :class:`~django.views.generic.edit.DeleteView` now uses
  350. :class:`~django.views.generic.edit.FormMixin` to handle POST requests. As a
  351. consequence, any custom deletion logic in ``delete()`` handlers should be
  352. moved to ``form_valid()``, or a shared helper method, if required.
  353. Miscellaneous
  354. -------------
  355. * Support for ``cx_Oracle`` < 7.0 is removed.
  356. * To allow serving a Django site on a subpath without changing the value of
  357. :setting:`STATIC_URL`, the leading slash is removed from that setting (now
  358. ``'static/'``) in the default :djadmin:`startproject` template.
  359. * The :class:`~django.contrib.admin.AdminSite` method for the admin ``index``
  360. view is no longer decorated with ``never_cache`` when accessed directly,
  361. rather than via the recommended ``AdminSite.urls`` property, or
  362. ``AdminSite.get_urls()`` method.
  363. * Unsupported operations on a sliced queryset now raise ``TypeError`` instead
  364. of ``AssertionError``.
  365. * The undocumented ``django.test.runner.reorder_suite()`` function is renamed
  366. to ``reorder_tests()``. It now accepts an iterable of tests rather than a
  367. test suite, and returns an iterator of tests.
  368. * Calling ``FileSystemStorage.delete()`` with an empty ``name`` now raises
  369. ``ValueError`` instead of ``AssertionError``.
  370. * Calling ``EmailMultiAlternatives.attach_alternative()`` or
  371. ``EmailMessage.attach()`` with an invalid ``content`` or ``mimetype``
  372. arguments now raise ``ValueError`` instead of ``AssertionError``.
  373. * :meth:`~django.test.SimpleTestCase.assertHTMLEqual` no longer considers a
  374. non-boolean attribute without a value equal to an attribute with the same
  375. name and value.
  376. * Tests that fail to load, for example due to syntax errors, now always match
  377. when using :option:`test --tag`.
  378. * The undocumented ``django.contrib.admin.utils.lookup_needs_distinct()``
  379. function is renamed to ``lookup_spawns_duplicates()``.
  380. * The undocumented ``HttpRequest.get_raw_uri()`` method is removed. The
  381. :meth:`.HttpRequest.build_absolute_uri` method may be a suitable alternative.
  382. * The ``object`` argument of undocumented ``ModelAdmin.log_addition()``,
  383. ``log_change()``, and ``log_deletion()`` methods is renamed to ``obj``.
  384. * :class:`~django.utils.feedgenerator.RssFeed`,
  385. :class:`~django.utils.feedgenerator.Atom1Feed`, and their subclasses now emit
  386. elements with no content as self-closing tags.
  387. * ``NodeList.render()`` no longer casts the output of ``render()`` method for
  388. individual nodes to a string. ``Node.render()`` should always return a string
  389. as documented.
  390. * The ``where_class`` property of ``django.db.models.sql.query.Query`` and the
  391. ``where_class`` argument to the private ``get_extra_restriction()`` method of
  392. ``ForeignObject`` and ``ForeignObjectRel`` are removed. If needed, initialize
  393. ``django.db.models.sql.where.WhereNode`` instead.
  394. * The ``filter_clause`` argument of the undocumented ``Query.add_filter()``
  395. method is replaced by two positional arguments ``filter_lhs`` and
  396. ``filter_rhs``.
  397. * :class:`~django.middleware.csrf.CsrfViewMiddleware` now uses
  398. ``request.META['CSRF_COOKIE_NEEDS_UPDATE']`` in place of
  399. ``request.META['CSRF_COOKIE_USED']``, ``request.csrf_cookie_needs_reset``,
  400. and ``response.csrf_cookie_set`` to track whether the CSRF cookie should be
  401. sent. This is an undocumented, private API.
  402. * The undocumented ``TRANSLATOR_COMMENT_MARK`` constant is moved from
  403. ``django.template.base`` to ``django.utils.translation.template``.
  404. * The ``real_apps`` argument of the undocumented
  405. ``django.db.migrations.state.ProjectState.__init__()`` method must now be a
  406. set if provided.
  407. * :class:`~django.forms.RadioSelect` and
  408. :class:`~django.forms.CheckboxSelectMultiple` widgets are now rendered in
  409. ``<div>`` tags so they are announced more concisely by screen readers. If you
  410. need the previous behavior, :ref:`override the widget template
  411. <overriding-built-in-widget-templates>` with the appropriate template from
  412. Django 3.2.
  413. * The :tfilter:`floatformat` template filter no longer depends on the
  414. ``USE_L10N`` setting and always returns localized output. Use the ``u``
  415. suffix to disable localization.
  416. * The default value of the ``USE_L10N`` setting is changed to ``True``. See the
  417. :ref:`Localization section <use_l10n_deprecation>` above for more details.
  418. * As part of the :ref:`move to zoneinfo <whats-new-4.0>`,
  419. :attr:`django.utils.timezone.utc` is changed to alias
  420. :attr:`datetime.timezone.utc`.
  421. * The minimum supported version of ``asgiref`` is increased from 3.3.2 to
  422. 3.4.1.
  423. .. _deprecated-features-4.0:
  424. Features deprecated in 4.0
  425. ==========================
  426. Use of ``pytz`` time zones
  427. --------------------------
  428. As part of the :ref:`move to zoneinfo <whats-new-4.0>`, use of ``pytz`` time
  429. zones is deprecated.
  430. Accordingly, the ``is_dst`` arguments to the following are also deprecated:
  431. * :meth:`django.db.models.query.QuerySet.datetimes`
  432. * :func:`django.db.models.functions.Trunc`
  433. * :func:`django.db.models.functions.TruncSecond`
  434. * :func:`django.db.models.functions.TruncMinute`
  435. * :func:`django.db.models.functions.TruncHour`
  436. * :func:`django.db.models.functions.TruncDay`
  437. * :func:`django.db.models.functions.TruncWeek`
  438. * :func:`django.db.models.functions.TruncMonth`
  439. * :func:`django.db.models.functions.TruncQuarter`
  440. * :func:`django.db.models.functions.TruncYear`
  441. * :func:`django.utils.timezone.make_aware`
  442. Support for use of ``pytz`` will be removed in Django 5.0.
  443. Time zone support
  444. -----------------
  445. In order to follow good practice, the default value of the :setting:`USE_TZ`
  446. setting will change from ``False`` to ``True``, and time zone support will be
  447. enabled by default, in Django 5.0.
  448. Note that the default :file:`settings.py` file created by
  449. :djadmin:`django-admin startproject <startproject>` includes
  450. :setting:`USE_TZ = True <USE_TZ>` since Django 1.4.
  451. You can set ``USE_TZ`` to ``False`` in your project settings before then to
  452. opt-out.
  453. .. _use_l10n_deprecation:
  454. Localization
  455. ------------
  456. In order to follow good practice, the default value of the ``USE_L10N`` setting
  457. is changed from ``False`` to ``True``.
  458. Moreover ``USE_L10N`` is deprecated as of this release. Starting with Django
  459. 5.0, by default, any date or number displayed by Django will be localized.
  460. The :ttag:`{% localize %} <localize>` tag and the :tfilter:`localize`/
  461. :tfilter:`unlocalize` filters will still be honored by Django.
  462. Miscellaneous
  463. -------------
  464. * ``SERIALIZE`` test setting is deprecated as it can be inferred from the
  465. :attr:`~django.test.TestCase.databases` with the
  466. :ref:`serialized_rollback <test-case-serialized-rollback>` option enabled.
  467. * The undocumented ``django.utils.baseconv`` module is deprecated.
  468. * The undocumented ``django.utils.datetime_safe`` module is deprecated.
  469. * The default sitemap protocol for sitemaps built outside the context of a
  470. request will change from ``'http'`` to ``'https'`` in Django 5.0.
  471. * The ``extra_tests`` argument for :meth:`.DiscoverRunner.build_suite` and
  472. :meth:`.DiscoverRunner.run_tests` is deprecated.
  473. * The :class:`~django.contrib.postgres.aggregates.ArrayAgg`,
  474. :class:`~django.contrib.postgres.aggregates.JSONBAgg`, and
  475. :class:`~django.contrib.postgres.aggregates.StringAgg` aggregates will return
  476. ``None`` when there are no rows instead of ``[]``, ``[]``, and ``''``
  477. respectively in Django 5.0. If you need the previous behavior, explicitly set
  478. ``default`` to ``Value([])``, ``Value('[]')``, or ``Value('')``.
  479. * The ``django.contrib.gis.admin.GeoModelAdmin`` and ``OSMGeoAdmin`` classes
  480. are deprecated. Use :class:`~django.contrib.admin.ModelAdmin` and
  481. :class:`~django.contrib.gis.admin.GISModelAdmin` instead.
  482. * Since form rendering now uses the template engine, the undocumented
  483. ``BaseForm._html_output()`` helper method is deprecated.
  484. * The ability to return a ``str`` from ``ErrorList`` and ``ErrorDict`` is
  485. deprecated. It is expected these methods return a ``SafeString``.
  486. Features removed in 4.0
  487. =======================
  488. These features have reached the end of their deprecation cycle and are removed
  489. in Django 4.0.
  490. See :ref:`deprecated-features-3.0` for details on these changes, including how
  491. to remove usage of these features.
  492. * ``django.utils.http.urlquote()``, ``urlquote_plus()``, ``urlunquote()``, and
  493. ``urlunquote_plus()`` are removed.
  494. * ``django.utils.encoding.force_text()`` and ``smart_text()`` are removed.
  495. * ``django.utils.translation.ugettext()``, ``ugettext_lazy()``,
  496. ``ugettext_noop()``, ``ungettext()``, and ``ungettext_lazy()`` are removed.
  497. * ``django.views.i18n.set_language()`` doesn't set the user language in
  498. ``request.session`` (key ``_language``).
  499. * ``alias=None`` is required in the signature of
  500. ``django.db.models.Expression.get_group_by_cols()`` subclasses.
  501. * ``django.utils.text.unescape_entities()`` is removed.
  502. * ``django.utils.http.is_safe_url()`` is removed.
  503. See :ref:`deprecated-features-3.1` for details on these changes, including how
  504. to remove usage of these features.
  505. * The ``PASSWORD_RESET_TIMEOUT_DAYS`` setting is removed.
  506. * The :lookup:`isnull` lookup no longer allows using non-boolean values as the
  507. right-hand side.
  508. * The ``django.db.models.query_utils.InvalidQuery`` exception class is removed.
  509. * The ``django-admin.py`` entry point is removed.
  510. * The ``HttpRequest.is_ajax()`` method is removed.
  511. * Support for the pre-Django 3.1 encoding format of cookies values used by
  512. ``django.contrib.messages.storage.cookie.CookieStorage`` is removed.
  513. * Support for the pre-Django 3.1 password reset tokens in the admin site (that
  514. use the SHA-1 hashing algorithm) is removed.
  515. * Support for the pre-Django 3.1 encoding format of sessions is removed.
  516. * Support for the pre-Django 3.1 ``django.core.signing.Signer`` signatures
  517. (encoded with the SHA-1 algorithm) is removed.
  518. * Support for the pre-Django 3.1 ``django.core.signing.dumps()`` signatures
  519. (encoded with the SHA-1 algorithm) in ``django.core.signing.loads()`` is
  520. removed.
  521. * Support for the pre-Django 3.1 user sessions (that use the SHA-1 algorithm)
  522. is removed.
  523. * The ``get_response`` argument for
  524. ``django.utils.deprecation.MiddlewareMixin.__init__()`` is required and
  525. doesn't accept ``None``.
  526. * The ``providing_args`` argument for ``django.dispatch.Signal`` is removed.
  527. * The ``length`` argument for ``django.utils.crypto.get_random_string()`` is
  528. required.
  529. * The ``list`` message for ``ModelMultipleChoiceField`` is removed.
  530. * Support for passing raw column aliases to ``QuerySet.order_by()`` is removed.
  531. * The ``NullBooleanField`` model field is removed, except for support in
  532. historical migrations.
  533. * ``django.conf.urls.url()`` is removed.
  534. * The ``django.contrib.postgres.fields.JSONField`` model field is removed,
  535. except for support in historical migrations.
  536. * ``django.contrib.postgres.fields.jsonb.KeyTransform`` and
  537. ``django.contrib.postgres.fields.jsonb.KeyTextTransform`` are removed.
  538. * ``django.contrib.postgres.forms.JSONField`` is removed.
  539. * The ``{% ifequal %}`` and ``{% ifnotequal %}`` template tags are removed.
  540. * The ``DEFAULT_HASHING_ALGORITHM`` transitional setting is removed.