3.1.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. ============================================
  2. Django 3.1 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected August 2020*
  5. Welcome to Django 3.1!
  6. These release notes cover the :ref:`new features <whats-new-3.1>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-3.1>` you'll
  8. want to be aware of when upgrading from Django 3.0 or earlier. We've
  9. :ref:`dropped some features<removed-features-3.1>` that have reached the end of
  10. their deprecation cycle, and we've :ref:`begun the deprecation process for
  11. some features <deprecated-features-3.1>`.
  12. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  13. project.
  14. Python compatibility
  15. ====================
  16. Django 3.1 supports Python 3.6, 3.7, and 3.8. We **highly recommend** and only
  17. officially support the latest release of each series.
  18. .. _whats-new-3.1:
  19. What's new in Django 3.1
  20. ========================
  21. Asynchronous views and middleware support
  22. -----------------------------------------
  23. Django now supports a fully asynchronous request path, including:
  24. * :ref:`Asynchronous views <async-views>`
  25. * :ref:`Asynchronous middleware <async-middleware>`
  26. * :ref:`Asynchronous tests and test client <async-tests>`
  27. To get started with async views, you need to declare a view using
  28. ``async def``::
  29. async def my_view(request):
  30. await asyncio.sleep(0.5)
  31. return HttpResponse('Hello, async world!')
  32. All asynchronous features are supported whether you are running under WSGI or
  33. ASGI mode. However, there will be performance penalties using async code in
  34. WSGI mode. You can read more about the specifics in :doc:`/topics/async`
  35. documentation.
  36. You are free to mix async and sync views, middleware, and tests as much as you
  37. want. Django will ensure that you always end up with the right execution
  38. context. We expect most projects will keep the majority of their views
  39. synchronous, and only have a select few running in async mode - but it is
  40. entirely your choice.
  41. Django's ORM, cache layer, and other pieces of code that do long-running
  42. network calls do not yet support async access. We expect to add support for
  43. them in upcoming releases. Async views are ideal, however, if you are doing a
  44. lot of API or HTTP calls inside your view, you can now natively do all those
  45. HTTP calls in parallel to considerably speed up your view's execution.
  46. Asynchronous support should be entirely backwards-compatible and we have tried
  47. to ensure that it has no speed regressions for your existing, synchronous code.
  48. It should have no noticeable effect on any existing Django projects.
  49. Minor features
  50. --------------
  51. :mod:`django.contrib.admin`
  52. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  53. * The new ``django.contrib.admin.EmptyFieldListFilter`` for
  54. :attr:`.ModelAdmin.list_filter` allows filtering on empty values (empty
  55. strings and nulls) in the admin changelist view.
  56. * Filters in the right sidebar of the admin changelist view now contains a link
  57. to clear all filters.
  58. :mod:`django.contrib.admindocs`
  59. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  60. * ...
  61. :mod:`django.contrib.auth`
  62. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  63. * The default iteration count for the PBKDF2 password hasher is increased from
  64. 180,000 to 216,000.
  65. * Added the :setting:`PASSWORD_RESET_TIMEOUT` setting to define the minimum
  66. number of seconds a password reset link is valid for. This is encouraged
  67. instead of deprecated ``PASSWORD_RESET_TIMEOUT_DAYS``, which will be removed
  68. in Django 4.0.
  69. * The password reset mechanism now uses the SHA-256 hashing algorithm. Support
  70. for tokens that use the old hashing algorithm remains until Django 4.0.
  71. :mod:`django.contrib.contenttypes`
  72. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  73. * The new :option:`remove_stale_contenttypes --include-stale-apps` option
  74. allows removing stale content types from previously installed apps that have
  75. been removed from :setting:`INSTALLED_APPS`.
  76. :mod:`django.contrib.gis`
  77. ~~~~~~~~~~~~~~~~~~~~~~~~~
  78. * :lookup:`relate` lookup is now supported on MariaDB.
  79. * Added the :attr:`.LinearRing.is_counterclockwise` property.
  80. * :class:`~django.contrib.gis.db.models.functions.AsGeoJSON` is now supported
  81. on Oracle.
  82. * Added the :class:`~django.contrib.gis.db.models.functions.AsWKB` and
  83. :class:`~django.contrib.gis.db.models.functions.AsWKT` functions.
  84. :mod:`django.contrib.humanize`
  85. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  86. * :tfilter:`intword` template filter now supports negative integers.
  87. :mod:`django.contrib.messages`
  88. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  89. * ...
  90. :mod:`django.contrib.postgres`
  91. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  92. * The new :class:`~django.contrib.postgres.indexes.BloomIndex` class allows
  93. creating ``bloom`` indexes in the database. The new
  94. :class:`~django.contrib.postgres.operations.BloomExtension` migration
  95. operation installs the ``bloom`` extension to add support for this index.
  96. * :meth:`~django.db.models.Model.get_FOO_display` now supports
  97. :class:`~django.contrib.postgres.fields.ArrayField` and
  98. :class:`~django.contrib.postgres.fields.RangeField`.
  99. * The new :lookup:`rangefield.lower_inc`, :lookup:`rangefield.lower_inf`,
  100. :lookup:`rangefield.upper_inc`, and :lookup:`rangefield.upper_inf` allows
  101. querying :class:`~django.contrib.postgres.fields.RangeField` by a bound type.
  102. * :lookup:`rangefield.contained_by` now supports
  103. :class:`~django.db.models.SmallAutoField`,
  104. :class:`~django.db.models.AutoField`,
  105. :class:`~django.db.models.BigAutoField`,
  106. :class:`~django.db.models.SmallIntegerField`, and
  107. :class:`~django.db.models.DecimalField`.
  108. * :class:`~django.contrib.postgres.search.SearchQuery` now supports
  109. ``'websearch'`` search type on PostgreSQL 11+.
  110. * :class:`SearchQuery.value <django.contrib.postgres.search.SearchQuery>` now
  111. supports query expressions.
  112. * The new :class:`~django.contrib.postgres.search.SearchHeadline` class allows
  113. highlighting search results.
  114. * :lookup:`search` lookup now supports query expressions.
  115. * The new ``cover_density`` parameter of
  116. :class:`~django.contrib.postgres.search.SearchRank` allows ranking by cover
  117. density.
  118. * The new ``normalization`` parameter of
  119. :class:`~django.contrib.postgres.search.SearchRank` allows rank
  120. normalization.
  121. :mod:`django.contrib.redirects`
  122. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  123. * ...
  124. :mod:`django.contrib.sessions`
  125. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  126. * The :setting:`SESSION_COOKIE_SAMESITE` setting now allows ``'None'`` (string)
  127. value to explicitly state that the cookie is sent with all same-site and
  128. cross-site requests.
  129. :mod:`django.contrib.sitemaps`
  130. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  131. * ...
  132. :mod:`django.contrib.sites`
  133. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  134. * ...
  135. :mod:`django.contrib.staticfiles`
  136. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  137. * The :setting:`STATICFILES_DIRS` setting now supports :class:`pathlib.Path`.
  138. :mod:`django.contrib.syndication`
  139. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  140. * ...
  141. Cache
  142. ~~~~~
  143. * The :func:`~django.views.decorators.cache.cache_control` decorator and
  144. :func:`~django.utils.cache.patch_cache_control` method now support multiple
  145. field names in the ``no-cache`` directive for the ``Cache-Control`` header,
  146. according to :rfc:`7234#section-5.2.2.2`.
  147. * :meth:`~django.core.caches.cache.delete` now returns ``True`` if the key was
  148. successfully deleted, ``False`` otherwise.
  149. CSRF
  150. ~~~~
  151. * The :setting:`CSRF_COOKIE_SAMESITE` setting now allows ``'None'`` (string)
  152. value to explicitly state that the cookie is sent with all same-site and
  153. cross-site requests.
  154. Email
  155. ~~~~~
  156. * The :setting:`EMAIL_FILE_PATH` setting, used by the :ref:`file email backend
  157. <topic-email-file-backend>`, now supports :class:`pathlib.Path`.
  158. Error Reporting
  159. ~~~~~~~~~~~~~~~
  160. * :class:`django.views.debug.SafeExceptionReporterFilter` now filters sensitive
  161. values from ``request.META`` in exception reports.
  162. * The new :attr:`.SafeExceptionReporterFilter.cleansed_substitute` and
  163. :attr:`.SafeExceptionReporterFilter.hidden_settings` attributes allow
  164. customization of sensitive settings and ``request.META`` filtering in
  165. exception reports.
  166. * The technical 404 debug view now respects
  167. :setting:`DEFAULT_EXCEPTION_REPORTER_FILTER` when applying settings
  168. filtering.
  169. * The new :setting:`DEFAULT_EXCEPTION_REPORTER` allows providing a
  170. :class:`django.views.debug.ExceptionReporter` subclass to customize exception
  171. report generation. See :ref:`custom-error-reports` for details.
  172. File Storage
  173. ~~~~~~~~~~~~
  174. * ``FileSystemStorage.save()`` method now supports :class:`pathlib.Path`.
  175. File Uploads
  176. ~~~~~~~~~~~~
  177. * ...
  178. Forms
  179. ~~~~~
  180. * :class:`~django.forms.ModelChoiceIterator`, used by
  181. :class:`~django.forms.ModelChoiceField` and
  182. :class:`~django.forms.ModelMultipleChoiceField`, now uses
  183. :class:`~django.forms.ModelChoiceIteratorValue` that can be used by widgets
  184. to access model instances. See :ref:`iterating-relationship-choices` for
  185. details.
  186. * :class:`django.forms.DateTimeField` now accepts dates in a subset of ISO 8601
  187. datetime formats, including optional timezone (e.g. ``2019-10-10T06:47``,
  188. ``2019-10-10T06:47:23+04:00``, or ``2019-10-10T06:47:23Z``). Additionally, it
  189. now uses ``DATE_INPUT_FORMATS`` in addition to ``DATETIME_INPUT_FORMATS``
  190. when converting a field input to a ``datetime`` value.
  191. * :attr:`.MultiWidget.widgets` now accepts a dictionary which allows
  192. customizing subwidget ``name`` attributes.
  193. Generic Views
  194. ~~~~~~~~~~~~~
  195. * ...
  196. Internationalization
  197. ~~~~~~~~~~~~~~~~~~~~
  198. * The :setting:`LANGUAGE_COOKIE_SAMESITE` setting now allows ``'None'``
  199. (string) value to explicitly state that the cookie is sent with all same-site
  200. and cross-site requests.
  201. * Added support and translations for the Algerian Arabic language.
  202. Logging
  203. ~~~~~~~
  204. * ...
  205. Management Commands
  206. ~~~~~~~~~~~~~~~~~~~
  207. * The new :option:`check --database` option allows specifying database aliases
  208. for running the ``database`` system checks. Previously these checks were
  209. enabled for all configured :setting:`DATABASES` by passing the ``database``
  210. tag to the command.
  211. Migrations
  212. ~~~~~~~~~~
  213. * Migrations are now loaded also from directories without ``__init__.py``
  214. files.
  215. Models
  216. ~~~~~~
  217. * The new :class:`~django.db.models.functions.ExtractIsoWeekDay` function
  218. extracts ISO-8601 week days from :class:`~django.db.models.DateField` and
  219. :class:`~django.db.models.DateTimeField`, and the new :lookup:`iso_week_day`
  220. lookup allows querying by an ISO-8601 day of week.
  221. * :meth:`.QuerySet.explain` now supports:
  222. * ``TREE`` format on MySQL 8.0.16+,
  223. * ``analyze`` option on MySQL 8.0.18+ and MariaDB.
  224. * Added :class:`~django.db.models.PositiveBigIntegerField` which acts much like
  225. a :class:`~django.db.models.PositiveIntegerField` except that it only allows
  226. values under a certain (database-dependent) limit. Values from ``0`` to
  227. ``9223372036854775807`` are safe in all databases supported by Django.
  228. * The new :class:`~django.db.models.RESTRICT` option for
  229. :attr:`~django.db.models.ForeignKey.on_delete` argument of ``ForeignKey`` and
  230. ``OneToOneField`` emulates the behavior of the SQL constraint ``ON DELETE
  231. RESTRICT``.
  232. * :attr:`.CheckConstraint.check` now supports boolean expressions.
  233. * The :meth:`.RelatedManager.add`, :meth:`~.RelatedManager.create`, and
  234. :meth:`~.RelatedManager.set` methods now accept callables as values in the
  235. ``through_defaults`` argument.
  236. * The new ``is_dst`` parameter of the :meth:`.QuerySet.datetimes` determines
  237. the treatment of nonexistent and ambiguous datetimes.
  238. * The new :class:`~django.db.models.F` expression ``bitxor()`` method allows
  239. :ref:`bitwise XOR operation <using-f-expressions-in-filters>`.
  240. Pagination
  241. ~~~~~~~~~~
  242. * :class:`~django.core.paginator.Paginator` can now be iterated over to yield
  243. its pages.
  244. Requests and Responses
  245. ~~~~~~~~~~~~~~~~~~~~~~
  246. * If :setting:`ALLOWED_HOSTS` is empty and ``DEBUG=True``, subdomains of
  247. localhost are now allowed in the ``Host`` header, e.g. ``static.localhost``.
  248. * :meth:`.HttpResponse.set_cookie` and :meth:`.HttpResponse.set_signed_cookie`
  249. now allow using ``samesite='None'`` (string) to explicitly state that the
  250. cookie is sent with all same-site and cross-site requests.
  251. * The new :meth:`.HttpRequest.accepts` method returns whether the request
  252. accepts the given MIME type according to the ``Accept`` HTTP header.
  253. .. _whats-new-security-3.1:
  254. Security
  255. ~~~~~~~~
  256. * The :setting:`SECURE_REFERRER_POLICY` setting now defaults to
  257. ``'same-origin'``. With this configured,
  258. :class:`~django.middleware.security.SecurityMiddleware` sets the
  259. :ref:`referrer-policy` header to ``same-origin`` on all responses that do not
  260. already have it. This prevents the ``Referer`` header being sent to other
  261. origins. If you need the previous behavior, explicitly set
  262. :setting:`SECURE_REFERRER_POLICY` to ``None``.
  263. Serialization
  264. ~~~~~~~~~~~~~
  265. * ...
  266. Signals
  267. ~~~~~~~
  268. * ...
  269. Templates
  270. ~~~~~~~~~
  271. * The renamed :ttag:`translate` and :ttag:`blocktranslate` template tags are
  272. introduced for internationalization in template code. The older :ttag:`trans`
  273. and :ttag:`blocktrans` template tags aliases continue to work, and will be
  274. retained for the foreseeable future.
  275. * The :ttag:`include` template tag now accepts iterables of template names.
  276. Tests
  277. ~~~~~
  278. * :class:`~django.test.SimpleTestCase` now implements the ``debug()`` method to
  279. allow running a test without collecting the result and catching exceptions.
  280. This can be used to support running tests under a debugger.
  281. * The new :setting:`MIGRATE <TEST_MIGRATE>` test database setting allows
  282. disabling of migrations during a test database creation.
  283. * Django test runner now supports a :option:`test --buffer` option to discard
  284. output for passing tests.
  285. * :class:`~django.test.runner.DiscoverRunner` now skips running the system
  286. checks on databases not :ref:`referenced by tests<testing-multi-db>`.
  287. URLs
  288. ~~~~
  289. * :ref:`Path converters <registering-custom-path-converters>` can now raise
  290. ``ValueError`` in ``to_url()`` to indicate no match when reversing URLs.
  291. Utilities
  292. ~~~~~~~~~
  293. * :func:`~django.utils.encoding.filepath_to_uri` now supports
  294. :class:`pathlib.Path`.
  295. * :func:`~django.utils.dateparse.parse_duration` now supports comma separators
  296. for decimal fractions in the ISO 8601 format.
  297. * :func:`~django.utils.dateparse.parse_datetime`,
  298. :func:`~django.utils.dateparse.parse_duration`, and
  299. :func:`~django.utils.dateparse.parse_time` now support comma separators for
  300. milliseconds.
  301. Validators
  302. ~~~~~~~~~~
  303. * ...
  304. Miscellaneous
  305. ~~~~~~~~~~~~~
  306. * The SQLite backend now supports :class:`pathlib.Path` for the ``NAME``
  307. setting.
  308. * The ``settings.py`` generated by the :djadmin:`startproject` command now uses
  309. :class:`pathlib.Path` instead of :mod:`os.path` for building filesystem
  310. paths.
  311. * The :setting:`TIME_ZONE <DATABASE-TIME_ZONE>` setting is now allowed on
  312. databases that support time zones.
  313. .. _backwards-incompatible-3.1:
  314. Backwards incompatible changes in 3.1
  315. =====================================
  316. Database backend API
  317. --------------------
  318. This section describes changes that may be needed in third-party database
  319. backends.
  320. * ``DatabaseOperations.fetch_returned_insert_columns()`` now requires an
  321. additional ``returning_params`` argument.
  322. * ``connection.timezone`` property is now ``'UTC'`` by default, or the
  323. :setting:`TIME_ZONE <DATABASE-TIME_ZONE>` when :setting:`USE_TZ` is ``True``
  324. on databases that support time zones. Previously, it was ``None`` on
  325. databases that support time zones.
  326. * ``connection._nodb_connection`` property is changed to the
  327. ``connection._nodb_cursor()`` method and now returns a context manager that
  328. yields a cursor and automatically closes the cursor and connection upon
  329. exiting the ``with`` statement.
  330. Dropped support for MariaDB 10.1
  331. --------------------------------
  332. Upstream support for MariaDB 10.1 ends in October 2020. Django 3.1 supports
  333. MariaDB 10.2 and higher.
  334. ``contrib.admin`` browser support
  335. ---------------------------------
  336. The admin no longer supports the legacy Internet Explorer browser. See
  337. :ref:`the admin FAQ <admin-browser-support>` for details on supported browsers.
  338. :attr:`AbstractUser.first_name <django.contrib.auth.models.User.first_name>` ``max_length`` increased to 150
  339. ------------------------------------------------------------------------------------------------------------
  340. A migration for :attr:`django.contrib.auth.models.User.first_name` is included.
  341. If you have a custom user model inheriting from ``AbstractUser``, you'll need
  342. to generate and apply a database migration for your user model.
  343. If you want to preserve the 30 character limit for first names, use a custom
  344. form::
  345. from django import forms
  346. from django.contrib.auth.forms import UserChangeForm
  347. class MyUserChangeForm(UserChangeForm):
  348. first_name = forms.CharField(max_length=30, required=False)
  349. If you wish to keep this restriction in the admin when editing users, set
  350. ``UserAdmin.form`` to use this form::
  351. from django.contrib.auth.admin import UserAdmin
  352. from django.contrib.auth.models import User
  353. class MyUserAdmin(UserAdmin):
  354. form = MyUserChangeForm
  355. admin.site.unregister(User)
  356. admin.site.register(User, MyUserAdmin)
  357. Miscellaneous
  358. -------------
  359. * The cache keys used by :ttag:`cache` and generated by
  360. :func:`~django.core.cache.utils.make_template_fragment_key` are different
  361. from the keys generated by older versions of Django. After upgrading to
  362. Django 3.1, the first request to any previously cached template fragment will
  363. be a cache miss.
  364. * The logic behind the decision to return a redirection fallback or a 204 HTTP
  365. response from the :func:`~django.views.i18n.set_language` view is now based
  366. on the ``Accept`` HTTP header instead of the ``X-Requested-With`` HTTP header
  367. presence.
  368. * The compatibility imports of ``django.core.exceptions.EmptyResultSet`` in
  369. ``django.db.models.query``, ``django.db.models.sql``, and
  370. ``django.db.models.sql.datastructures`` are removed.
  371. * The compatibility import of ``django.core.exceptions.FieldDoesNotExist`` in
  372. ``django.db.models.fields`` is removed.
  373. * The compatibility imports of ``django.forms.utils.pretty_name()`` and
  374. ``django.forms.boundfield.BoundField`` in ``django.forms.forms`` are removed.
  375. * The compatibility imports of ``Context``, ``ContextPopException``, and
  376. ``RequestContext`` in ``django.template.base`` are removed.
  377. * The compatibility import of
  378. ``django.contrib.admin.helpers.ACTION_CHECKBOX_NAME`` in
  379. ``django.contrib.admin`` is removed.
  380. * The :setting:`STATIC_URL` and :setting:`MEDIA_URL` settings set to relative
  381. paths are now prefixed by the server-provided value of ``SCRIPT_NAME`` (or
  382. ``/`` if not set). This change should not affect settings set to valid URLs
  383. or absolute paths.
  384. * :class:`~django.middleware.http.ConditionalGetMiddleware` no longer adds the
  385. ``ETag`` header to responses with an empty
  386. :attr:`~django.http.HttpResponse.content`.
  387. * ``django.utils.decorators.classproperty()`` decorator is moved to
  388. ``django.utils.functional.classproperty()``.
  389. * :tfilter:`floatformat` template filter now outputs (positive) ``0`` for
  390. negative numbers which round to zero.
  391. * :attr:`Meta.ordering <django.db.models.Options.ordering>` and
  392. :attr:`Meta.unique_together <django.db.models.Options.unique_together>`
  393. options on models in ``django.contrib`` modules that were formerly tuples are
  394. now lists.
  395. * The admin calendar widget now handles two-digit years according to the Open
  396. Group Specification, i.e. values between 69 and 99 are mapped to the previous
  397. century, and values between 0 and 68 are mapped to the current century.
  398. * Date-only formats are removed from the default list for
  399. :setting:`DATETIME_INPUT_FORMATS`.
  400. * The :class:`~django.forms.FileInput` widget no longer renders with the
  401. ``required`` HTML attribute when initial data exists.
  402. * The undocumented ``django.views.debug.ExceptionReporterFilter`` class is
  403. removed. As per the :ref:`custom-error-reports` documentation, classes to be
  404. used with :setting:`DEFAULT_EXCEPTION_REPORTER_FILTER` needs to inherit from
  405. :class:`django.views.debug.SafeExceptionReporterFilter`.
  406. * The cache timeout set by :func:`~django.views.decorators.cache.cache_page`
  407. decorator now takes precedence over the ``max-age`` directive from the
  408. ``Cache-Control`` header.
  409. * Providing a non-local remote field in the :attr:`.ForeignKey.to_field`
  410. argument now raises :class:`~django.core.exceptions.FieldError`.
  411. * :setting:`SECURE_REFERRER_POLICY` now defaults to ``'same-origin'``. See the
  412. *What's New* :ref:`Security section <whats-new-security-3.1>` above for more
  413. details.
  414. * :djadmin:`check` management command now runs the ``database`` system checks
  415. only for database aliases specified using :option:`check --database` option.
  416. * :djadmin:`migrate` management command now runs the ``database`` system checks
  417. only for a database to migrate.
  418. * The admin CSS classes ``row1`` and ``row2`` are removed in favor of
  419. ``:nth-child(odd)`` and ``:nth-child(even)`` pseudo-classes.
  420. .. _deprecated-features-3.1:
  421. Features deprecated in 3.1
  422. ==========================
  423. Miscellaneous
  424. -------------
  425. * ``PASSWORD_RESET_TIMEOUT_DAYS`` setting is deprecated in favor of
  426. :setting:`PASSWORD_RESET_TIMEOUT`.
  427. * The undocumented usage of the :lookup:`isnull` lookup with non-boolean values
  428. as the right-hand side is deprecated, use ``True`` or ``False`` instead.
  429. * The barely documented ``django.db.models.query_utils.InvalidQuery`` exception
  430. class is deprecated in favor of
  431. :class:`~django.core.exceptions.FieldDoesNotExist` and
  432. :class:`~django.core.exceptions.FieldError`.
  433. * The ``django-admin.py`` entry point is deprecated in favor of
  434. ``django-admin``.
  435. * The ``HttpRequest.is_ajax()`` method is deprecated as it relied on a
  436. jQuery-specific way of signifying AJAX calls, while current usage tends to
  437. use the JavaScript `Fetch API
  438. <https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API>`_. Depending on
  439. your use case, you can either write your own AJAX detection method, or use
  440. the new :meth:`.HttpRequest.accepts` method if your code depends on the
  441. client ``Accept`` HTTP header.
  442. If you are writing your own AJAX detection method, ``request.is_ajax()`` can
  443. be reproduced exactly as
  444. ``request.headers.get('x-requested-with') == 'XMLHttpRequest'``.
  445. * Passing ``None`` as the first argument to
  446. ``django.utils.deprecation.MiddlewareMixin.__init__()`` is deprecated.
  447. * The encoding format of cookies values used by
  448. :class:`~django.contrib.messages.storage.cookie.CookieStorage` is different
  449. from the format generated by older versions of Django. Support for the old
  450. format remains until Django 4.0.
  451. * The encoding format of sessions is different from the format generated by
  452. older versions of Django. Support for the old format remains until Django
  453. 4.0.
  454. * The purely documentational ``providing_args`` argument for
  455. :class:`~django.dispatch.Signal` is deprecated. If you rely on this
  456. argument as documentation, you can move the text to a code comment or
  457. docstring.
  458. * Calling ``django.utils.crypto.get_random_string()`` without a ``length``
  459. argument is deprecated.
  460. * The ``list`` message for :class:`~django.forms.ModelMultipleChoiceField` is
  461. deprecated in favor of ``invalid_list``.
  462. * The passing of URL kwargs directly to the context by
  463. :class:`~django.views.generic.base.TemplateView` is deprecated. Reference
  464. them in the template with ``view.kwargs`` instead.
  465. .. _removed-features-3.1:
  466. Features removed in 3.1
  467. =======================
  468. These features have reached the end of their deprecation cycle and are removed
  469. in Django 3.1.
  470. See :ref:`deprecated-features-2.2` for details on these changes, including how
  471. to remove usage of these features.
  472. * ``django.utils.timezone.FixedOffset`` is removed.
  473. * ``django.core.paginator.QuerySetPaginator`` is removed.
  474. * A model's ``Meta.ordering`` doesn't affect ``GROUP BY`` queries.
  475. * ``django.contrib.postgres.fields.FloatRangeField`` and
  476. ``django.contrib.postgres.forms.FloatRangeField`` are removed.
  477. * The ``FILE_CHARSET`` setting is removed.
  478. * ``django.contrib.staticfiles.storage.CachedStaticFilesStorage`` is removed.
  479. * The ``RemoteUserBackend.configure_user()`` method requires ``request`` as the
  480. first positional argument.
  481. * Support for ``SimpleTestCase.allow_database_queries`` and
  482. ``TransactionTestCase.multi_db`` is removed.