3.0.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. ========================
  2. Django 3.0 release notes
  3. ========================
  4. *December 2, 2019*
  5. Welcome to Django 3.0!
  6. These release notes cover the :ref:`new features <whats-new-3.0>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-3.0>` you'll
  8. want to be aware of when upgrading from Django 2.2 or earlier. We've
  9. :ref:`dropped some features<removed-features-3.0>` 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.0>`.
  12. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  13. project.
  14. Python compatibility
  15. ====================
  16. Django 3.0 supports Python 3.6, 3.7, and 3.8. We **highly recommend** and only
  17. officially support the latest release of each series.
  18. The Django 2.2.x series is the last to support Python 3.5.
  19. Third-party library support for older version of Django
  20. =======================================================
  21. Following the release of Django 3.0, we suggest that third-party app authors
  22. drop support for all versions of Django prior to 2.2. At that time, you should
  23. be able to run your package's tests using ``python -Wd`` so that deprecation
  24. warnings appear. After making the deprecation warning fixes, your app should be
  25. compatible with Django 3.0.
  26. .. _whats-new-3.0:
  27. What's new in Django 3.0
  28. ========================
  29. MariaDB support
  30. ---------------
  31. Django now officially supports `MariaDB <https://mariadb.org/>`_ 10.1 and
  32. higher. See :ref:`MariaDB notes <mariadb-notes>` for more details.
  33. ASGI support
  34. ------------
  35. Django 3.0 begins our journey to making Django fully async-capable by providing
  36. support for running as an `ASGI <https://asgi.readthedocs.io/>`_ application.
  37. This is in addition to our existing WSGI support. Django intends to support
  38. both for the foreseeable future. Async features will only be available to
  39. applications that run under ASGI, however.
  40. There is no need to switch your applications over unless you want to start
  41. experimenting with asynchronous code, but we have
  42. :doc:`documentation on deploying with ASGI </howto/deployment/asgi/index>` if
  43. you want to learn more.
  44. Note that as a side-effect of this change, Django is now aware of asynchronous
  45. event loops and will block you calling code marked as "async unsafe" - such as
  46. ORM operations - from an asynchronous context. If you were using Django from
  47. async code before, this may trigger if you were doing it incorrectly. If you
  48. see a ``SynchronousOnlyOperation`` error, then closely examine your code and
  49. move any database operations to be in a synchronous child thread.
  50. Exclusion constraints on PostgreSQL
  51. -----------------------------------
  52. The new :class:`~django.contrib.postgres.constraints.ExclusionConstraint` class
  53. enable adding exclusion constraints on PostgreSQL. Constraints are added to
  54. models using the
  55. :attr:`Meta.constraints <django.db.models.Options.constraints>` option.
  56. Filter expressions
  57. ------------------
  58. Expressions that output :class:`~django.db.models.BooleanField` may now be
  59. used directly in ``QuerySet`` filters, without having to first annotate and
  60. then filter against the annotation.
  61. Enumerations for model field choices
  62. ------------------------------------
  63. Custom enumeration types ``TextChoices``, ``IntegerChoices``, and ``Choices``
  64. are now available as a way to define :attr:`.Field.choices`. ``TextChoices``
  65. and ``IntegerChoices`` types are provided for text and integer fields. The
  66. ``Choices`` class allows defining a compatible enumeration for other concrete
  67. data types. These custom enumeration types support human-readable labels that
  68. can be translated and accessed via a property on the enumeration or its
  69. members. See :ref:`Enumeration types <field-choices-enum-types>` for more
  70. details and examples.
  71. Minor features
  72. --------------
  73. :mod:`django.contrib.admin`
  74. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  75. * Added support for the ``admin_order_field`` attribute on properties in
  76. :attr:`.ModelAdmin.list_display`.
  77. * The new :meth:`ModelAdmin.get_inlines()
  78. <django.contrib.admin.ModelAdmin.get_inlines>` method allows specifying the
  79. inlines based on the request or model instance.
  80. * Select2 library is upgraded from version 4.0.3 to 4.0.7.
  81. * jQuery is upgraded from version 3.3.1 to 3.4.1.
  82. :mod:`django.contrib.auth`
  83. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  84. * The new ``reset_url_token`` attribute in
  85. :class:`~django.contrib.auth.views.PasswordResetConfirmView` allows
  86. specifying a token parameter displayed as a component of password reset
  87. URLs.
  88. * Added :class:`~django.contrib.auth.backends.BaseBackend` class to ease
  89. customization of authentication backends.
  90. * Added :meth:`~django.contrib.auth.models.User.get_user_permissions()` method
  91. to mirror the existing
  92. :meth:`~django.contrib.auth.models.User.get_group_permissions()` method.
  93. * Added HTML ``autocomplete`` attribute to widgets of username, email, and
  94. password fields in :mod:`django.contrib.auth.forms` for better interaction
  95. with browser password managers.
  96. * :djadmin:`createsuperuser` now falls back to environment variables for
  97. password and required fields, when a corresponding command line argument
  98. isn't provided in non-interactive mode.
  99. * :attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS` now supports
  100. :class:`~django.db.models.ManyToManyField`\s.
  101. * The new :meth:`.UserManager.with_perm` method returns users that have the
  102. specified permission.
  103. * The default iteration count for the PBKDF2 password hasher is increased from
  104. 150,000 to 180,000.
  105. :mod:`django.contrib.gis`
  106. ~~~~~~~~~~~~~~~~~~~~~~~~~
  107. * Allowed MySQL spatial lookup functions to operate on real geometries.
  108. Previous support was limited to bounding boxes.
  109. * Added the :class:`~django.contrib.gis.db.models.functions.GeometryDistance`
  110. function, supported on PostGIS.
  111. * Added support for the ``furlong`` unit in
  112. :class:`~django.contrib.gis.measure.Distance`.
  113. * The :setting:`GEOIP_PATH` setting now supports :class:`pathlib.Path`.
  114. * The :class:`~django.contrib.gis.geoip2.GeoIP2` class now accepts
  115. :class:`pathlib.Path` ``path``.
  116. :mod:`django.contrib.postgres`
  117. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  118. * The new :class:`~django.contrib.postgres.fields.RangeOperators` helps to
  119. avoid typos in SQL operators that can be used together with
  120. :class:`~django.contrib.postgres.fields.RangeField`.
  121. * The new :class:`~django.contrib.postgres.fields.RangeBoundary` expression
  122. represents the range boundaries.
  123. * The new :class:`~django.contrib.postgres.operations.AddIndexConcurrently`
  124. and :class:`~django.contrib.postgres.operations.RemoveIndexConcurrently`
  125. classes allow creating and dropping indexes ``CONCURRENTLY`` on PostgreSQL.
  126. :mod:`django.contrib.sessions`
  127. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  128. * The new
  129. :meth:`~django.contrib.sessions.backends.base.SessionBase.get_session_cookie_age()`
  130. method allows dynamically specifying the session cookie age.
  131. :mod:`django.contrib.syndication`
  132. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  133. * Added the ``language`` class attribute to the
  134. :class:`django.contrib.syndication.views.Feed` to customize a feed language.
  135. The default value is :func:`~django.utils.translation.get_language()` instead
  136. of :setting:`LANGUAGE_CODE`.
  137. Cache
  138. ~~~~~
  139. * :func:`~django.utils.cache.add_never_cache_headers` and
  140. :func:`~django.views.decorators.cache.never_cache` now add the ``private``
  141. directive to ``Cache-Control`` headers.
  142. File Storage
  143. ~~~~~~~~~~~~
  144. * The new :meth:`.Storage.get_alternative_name` method allows customizing the
  145. algorithm for generating filenames if a file with the uploaded name already
  146. exists.
  147. Forms
  148. ~~~~~
  149. * Formsets may control the widget used when ordering forms via
  150. :attr:`~django.forms.formsets.BaseFormSet.can_order` by setting the
  151. :attr:`~django.forms.formsets.BaseFormSet.ordering_widget` attribute or
  152. overriding :attr:`~django.forms.formsets.BaseFormSet.get_ordering_widget()`.
  153. Internationalization
  154. ~~~~~~~~~~~~~~~~~~~~
  155. * Added the :setting:`LANGUAGE_COOKIE_HTTPONLY`,
  156. :setting:`LANGUAGE_COOKIE_SAMESITE`, and :setting:`LANGUAGE_COOKIE_SECURE`
  157. settings to set the ``HttpOnly``, ``SameSite``, and ``Secure`` flags on
  158. language cookies. The default values of these settings preserve the previous
  159. behavior.
  160. * Added support and translations for the Uzbek language.
  161. Logging
  162. ~~~~~~~
  163. * The new ``reporter_class`` parameter of
  164. :class:`~django.utils.log.AdminEmailHandler` allows providing an
  165. ``django.views.debug.ExceptionReporter`` subclass to customize the traceback
  166. text sent to site :setting:`ADMINS` when :setting:`DEBUG` is ``False``.
  167. Management Commands
  168. ~~~~~~~~~~~~~~~~~~~
  169. * The new :option:`compilemessages --ignore` option allows ignoring specific
  170. directories when searching for ``.po`` files to compile.
  171. * :option:`showmigrations --list` now shows the applied datetimes when
  172. ``--verbosity`` is 2 and above.
  173. * On PostgreSQL, :djadmin:`dbshell` now supports client-side TLS certificates.
  174. * :djadmin:`inspectdb` now introspects :class:`~django.db.models.OneToOneField`
  175. when a foreign key has a unique or primary key constraint.
  176. * The new :option:`--skip-checks` option skips running system checks prior to
  177. running the command.
  178. * The :option:`startapp --template` and :option:`startproject --template`
  179. options now support templates stored in XZ archives (``.tar.xz``, ``.txz``)
  180. and LZMA archives (``.tar.lzma``, ``.tlz``).
  181. Models
  182. ~~~~~~
  183. * Added hash database functions :class:`~django.db.models.functions.MD5`,
  184. :class:`~django.db.models.functions.SHA1`,
  185. :class:`~django.db.models.functions.SHA224`,
  186. :class:`~django.db.models.functions.SHA256`,
  187. :class:`~django.db.models.functions.SHA384`, and
  188. :class:`~django.db.models.functions.SHA512`.
  189. * Added the :class:`~django.db.models.functions.Sign` database function.
  190. * The new ``is_dst`` parameter of the
  191. :class:`~django.db.models.functions.Trunc` database functions determines the
  192. treatment of nonexistent and ambiguous datetimes.
  193. * ``connection.queries`` now shows ``COPY … TO`` statements on PostgreSQL.
  194. * :class:`~django.db.models.FilePathField` now accepts a callable for ``path``.
  195. * Allowed symmetrical intermediate table for self-referential
  196. :class:`~django.db.models.ManyToManyField`.
  197. * The ``name`` attributes of :class:`~django.db.models.CheckConstraint`,
  198. :class:`~django.db.models.UniqueConstraint`, and
  199. :class:`~django.db.models.Index` now support app label and class
  200. interpolation using the ``'%(app_label)s'`` and ``'%(class)s'`` placeholders.
  201. * The new :attr:`.Field.descriptor_class` attribute allows model fields to
  202. customize the get and set behavior by overriding their
  203. :py:ref:`descriptors <descriptors>`.
  204. * :class:`~django.db.models.Avg` and :class:`~django.db.models.Sum` now support
  205. the ``distinct`` argument.
  206. * Added :class:`~django.db.models.SmallAutoField` which acts much like an
  207. :class:`~django.db.models.AutoField` except that it only allows values under
  208. a certain (database-dependent) limit. Values from ``1`` to ``32767`` are safe
  209. in all databases supported by Django.
  210. * :class:`~django.db.models.AutoField`,
  211. :class:`~django.db.models.BigAutoField`, and
  212. :class:`~django.db.models.SmallAutoField` now inherit from
  213. ``IntegerField``, ``BigIntegerField`` and ``SmallIntegerField`` respectively.
  214. System checks and validators are now also properly inherited.
  215. * :attr:`.FileField.upload_to` now supports :class:`pathlib.Path`.
  216. * :class:`~django.db.models.CheckConstraint` is now supported on MySQL 8.0.16+.
  217. * The new ``allows_group_by_selected_pks_on_model()`` method of
  218. ``django.db.backends.base.BaseDatabaseFeatures`` allows optimization of
  219. ``GROUP BY`` clauses to require only the selected models' primary keys. By
  220. default, it's supported only for managed models on PostgreSQL.
  221. To enable the ``GROUP BY`` primary key-only optimization for unmanaged
  222. models, you have to subclass the PostgreSQL database engine, overriding the
  223. features class ``allows_group_by_selected_pks_on_model()`` method as you
  224. require. See :ref:`Subclassing the built-in database backends
  225. <subclassing-database-backends>` for an example.
  226. Requests and Responses
  227. ~~~~~~~~~~~~~~~~~~~~~~
  228. * Allowed :class:`~django.http.HttpResponse` to be initialized with
  229. :class:`memoryview` content.
  230. * For use in, for example, Django templates, :attr:`.HttpRequest.headers` now
  231. allows lookups using underscores (e.g. ``user_agent``) in place of hyphens.
  232. .. _whats-new-security-3.0:
  233. Security
  234. ~~~~~~~~
  235. * :setting:`X_FRAME_OPTIONS` now defaults to ``'DENY'``. In older versions, the
  236. :setting:`X_FRAME_OPTIONS` setting defaults to ``'SAMEORIGIN'``. If your site
  237. uses frames of itself, you will need to explicitly set ``X_FRAME_OPTIONS =
  238. 'SAMEORIGIN'`` for them to continue working.
  239. * :setting:`SECURE_CONTENT_TYPE_NOSNIFF` setting now defaults to ``True``. With
  240. the enabled :setting:`SECURE_CONTENT_TYPE_NOSNIFF`, the
  241. :class:`~django.middleware.security.SecurityMiddleware` sets the
  242. :ref:`x-content-type-options` header on all responses that do not already
  243. have it.
  244. * :class:`~django.middleware.security.SecurityMiddleware` can now send the
  245. :ref:`Referrer-Policy <referrer-policy>` header.
  246. Tests
  247. ~~~~~
  248. * The new test :class:`~django.test.Client` argument
  249. ``raise_request_exception`` allows controlling whether or not exceptions
  250. raised during the request should also be raised in the test. The value
  251. defaults to ``True`` for backwards compatibility. If it is ``False`` and an
  252. exception occurs, the test client will return a 500 response with the
  253. attribute :attr:`~django.test.Response.exc_info`, a tuple providing
  254. information of the exception that occurred.
  255. * Tests and test cases to run can be selected by test name pattern using the
  256. new :option:`test -k` option.
  257. * HTML comparison, as used by
  258. :meth:`~django.test.SimpleTestCase.assertHTMLEqual`, now treats text, character
  259. references, and entity references that refer to the same character as
  260. equivalent.
  261. * Django test runner now supports headless mode for selenium tests on supported
  262. browsers. Add the ``--headless`` option to enable this mode.
  263. * Django test runner now supports ``--start-at`` and ``--start-after`` options
  264. to run tests starting from a specific top-level module.
  265. * Django test runner now supports a ``--pdb`` option to spawn a debugger at
  266. each error or failure.
  267. .. _backwards-incompatible-3.0:
  268. Backwards incompatible changes in 3.0
  269. =====================================
  270. Database backend API
  271. --------------------
  272. This section describes changes that may be needed in third-party database
  273. backends.
  274. * The second argument of ``DatabaseIntrospection.get_geometry_type()`` is now
  275. the row description instead of the column name.
  276. * ``DatabaseIntrospection.get_field_type()`` may no longer return tuples.
  277. * If the database can create foreign keys in the same SQL statement that adds a
  278. field, add ``SchemaEditor.sql_create_column_inline_fk`` with the appropriate
  279. SQL; otherwise, set ``DatabaseFeatures.can_create_inline_fk = False``.
  280. * ``DatabaseFeatures.can_return_id_from_insert`` and
  281. ``can_return_ids_from_bulk_insert`` are renamed to
  282. ``can_return_columns_from_insert`` and ``can_return_rows_from_bulk_insert``.
  283. * Database functions now handle :class:`datetime.timezone` formats when created
  284. using :class:`datetime.timedelta` instances (e.g.
  285. ``timezone(timedelta(hours=5))``, which would output ``'UTC+05:00'``).
  286. Third-party backends should handle this format when preparing
  287. :class:`~django.db.models.DateTimeField` in ``datetime_cast_date_sql()``,
  288. ``datetime_extract_sql()``, etc.
  289. * Entries for ``AutoField``, ``BigAutoField``, and ``SmallAutoField`` are added
  290. to ``DatabaseOperations.integer_field_ranges`` to support the integer range
  291. validators on these field types. Third-party backends may need to customize
  292. the default entries.
  293. * ``DatabaseOperations.fetch_returned_insert_id()`` is replaced by
  294. ``fetch_returned_insert_columns()`` which returns a list of values returned
  295. by the ``INSERT … RETURNING`` statement, instead of a single value.
  296. * ``DatabaseOperations.return_insert_id()`` is replaced by
  297. ``return_insert_columns()`` that accepts a ``fields``
  298. argument, which is an iterable of fields to be returned after insert. Usually
  299. this is only the auto-generated primary key.
  300. :mod:`django.contrib.admin`
  301. ---------------------------
  302. * Admin's model history change messages now prefers more readable field labels
  303. instead of field names.
  304. :mod:`django.contrib.gis`
  305. -------------------------
  306. * Support for PostGIS 2.1 is removed.
  307. * Support for SpatiaLite 4.1 and 4.2 is removed.
  308. * Support for GDAL 1.11 and GEOS 3.4 is removed.
  309. Dropped support for PostgreSQL 9.4
  310. ----------------------------------
  311. Upstream support for PostgreSQL 9.4 ends in December 2019. Django 3.0 supports
  312. PostgreSQL 9.5 and higher.
  313. Dropped support for Oracle 12.1
  314. -------------------------------
  315. Upstream support for Oracle 12.1 ends in July 2021. Django 2.2 will be
  316. supported until April 2022. Django 3.0 officially supports Oracle 12.2 and 18c.
  317. Removed private Python 2 compatibility APIs
  318. -------------------------------------------
  319. While Python 2 support was removed in Django 2.0, some private APIs weren't
  320. removed from Django so that third party apps could continue using them until
  321. the Python 2 end-of-life.
  322. Since we expect apps to drop Python 2 compatibility when adding support for
  323. Django 3.0, we're removing these APIs at this time.
  324. * ``django.test.utils.str_prefix()`` - Strings don't have 'u' prefixes in
  325. Python 3.
  326. * ``django.test.utils.patch_logger()`` - Use
  327. :meth:`unittest.TestCase.assertLogs` instead.
  328. * ``django.utils.lru_cache.lru_cache()`` - Alias of
  329. :func:`functools.lru_cache`.
  330. * ``django.utils.decorators.available_attrs()`` - This function returns
  331. ``functools.WRAPPER_ASSIGNMENTS``.
  332. * ``django.utils.decorators.ContextDecorator`` - Alias of
  333. :class:`contextlib.ContextDecorator`.
  334. * ``django.utils._os.abspathu()`` - Alias of :func:`os.path.abspath`.
  335. * ``django.utils._os.upath()`` and ``npath()`` - These functions do nothing on
  336. Python 3.
  337. * ``django.utils.six`` - Remove usage of this vendored library or switch to
  338. `six <https://pypi.org/project/six/>`_.
  339. * ``django.utils.encoding.python_2_unicode_compatible()`` - Alias of
  340. ``six.python_2_unicode_compatible()``.
  341. * ``django.utils.functional.curry()`` - Use :func:`functools.partial` or
  342. :class:`functools.partialmethod`. See :commit:`5b1c389603a353625ae1603`.
  343. * ``django.utils.safestring.SafeBytes`` - Unused since Django 2.0.
  344. New default value for the ``FILE_UPLOAD_PERMISSIONS`` setting
  345. -------------------------------------------------------------
  346. In older versions, the :setting:`FILE_UPLOAD_PERMISSIONS` setting defaults to
  347. ``None``. With the default :setting:`FILE_UPLOAD_HANDLERS`, this results in
  348. uploaded files having different permissions depending on their size and which
  349. upload handler is used.
  350. ``FILE_UPLOAD_PERMISSION`` now defaults to ``0o644`` to avoid this
  351. inconsistency.
  352. New default values for security settings
  353. ----------------------------------------
  354. To make Django projects more secure by default, some security settings now have
  355. more secure default values:
  356. * :setting:`X_FRAME_OPTIONS` now defaults to ``'DENY'``.
  357. * :setting:`SECURE_CONTENT_TYPE_NOSNIFF` now defaults to ``True``.
  358. See the *What's New* :ref:`Security section <whats-new-security-3.0>` above for
  359. more details on these changes.
  360. Miscellaneous
  361. -------------
  362. * ``ContentType.__str__()`` now includes the model's ``app_label`` to
  363. disambiguate models with the same name in different apps.
  364. * Because accessing the language in the session rather than in the cookie is
  365. deprecated, ``LocaleMiddleware`` no longer looks for the user's language in
  366. the session and :func:`django.contrib.auth.logout` no longer preserves the
  367. session's language after logout.
  368. * :func:`django.utils.html.escape` now uses :func:`html.escape` to escape HTML.
  369. This converts ``'`` to ``&#x27;`` instead of the previous equivalent decimal
  370. code ``&#39;``.
  371. * The ``django-admin test -k`` option now works as the :option:`unittest
  372. -k<unittest.-k>` option rather than as a shortcut for ``--keepdb``.
  373. * Support for ``pywatchman`` < 1.2.0 is removed.
  374. * :func:`~django.utils.http.urlencode` now encodes iterable values as they are
  375. when ``doseq=False``, rather than iterating them, bringing it into line with
  376. the standard library :func:`urllib.parse.urlencode` function.
  377. * ``intword`` template filter now translates ``1.0`` as a singular phrase and
  378. all other numeric values as plural. This may be incorrect for some languages.
  379. * Assigning a value to a model's :class:`~django.db.models.ForeignKey` or
  380. :class:`~django.db.models.OneToOneField` ``'_id'`` attribute now unsets the
  381. corresponding field. Accessing the field afterwards will result in a query.
  382. * :func:`~django.utils.cache.patch_vary_headers` now handles an asterisk
  383. ``'*'`` according to :rfc:`7231#section-7.1.4`, i.e. if a list of header
  384. field names contains an asterisk, then the ``Vary`` header will consist of a
  385. single asterisk ``'*'``.
  386. * On MySQL 8.0.16+, ``PositiveIntegerField`` and ``PositiveSmallIntegerField``
  387. now include a check constraint to prevent negative values in the database.
  388. * ``alias=None`` is added to the signature of
  389. :meth:`.Expression.get_group_by_cols`.
  390. * Support for ``sqlparse`` < 0.2.2 is removed.
  391. * ``RegexPattern``, used by :func:`~django.urls.re_path`, no longer returns
  392. keyword arguments with ``None`` values to be passed to the view for the
  393. optional named groups that are missing.
  394. .. _deprecated-features-3.0:
  395. Features deprecated in 3.0
  396. ==========================
  397. ``django.utils.encoding.force_text()`` and ``smart_text()``
  398. -----------------------------------------------------------
  399. The ``smart_text()`` and ``force_text()`` aliases (since Django 2.0) of
  400. ``smart_str()`` and ``force_str()`` are deprecated. Ignore this deprecation if
  401. your code supports Python 2 as the behavior of ``smart_str()`` and
  402. ``force_str()`` is different there.
  403. Miscellaneous
  404. -------------
  405. * ``django.utils.http.urlquote()``, ``urlquote_plus()``, ``urlunquote()``, and
  406. ``urlunquote_plus()`` are deprecated in favor of the functions that they're
  407. aliases for: :func:`urllib.parse.quote`, :func:`~urllib.parse.quote_plus`,
  408. :func:`~urllib.parse.unquote`, and :func:`~urllib.parse.unquote_plus`.
  409. * ``django.utils.translation.ugettext()``, ``ugettext_lazy()``,
  410. ``ugettext_noop()``, ``ungettext()``, and ``ungettext_lazy()`` are deprecated
  411. in favor of the functions that they're aliases for:
  412. :func:`django.utils.translation.gettext`,
  413. :func:`~django.utils.translation.gettext_lazy`,
  414. :func:`~django.utils.translation.gettext_noop`,
  415. :func:`~django.utils.translation.ngettext`, and
  416. :func:`~django.utils.translation.ngettext_lazy`.
  417. * To limit creation of sessions and hence favor some caching strategies,
  418. :func:`django.views.i18n.set_language` will stop setting the user's language
  419. in the session in Django 4.0. Since Django 2.1, the language is always stored
  420. in the :setting:`LANGUAGE_COOKIE_NAME` cookie.
  421. * ``django.utils.text.unescape_entities()`` is deprecated in favor of
  422. :func:`html.unescape`. Note that unlike ``unescape_entities()``,
  423. ``html.unescape()`` evaluates lazy strings immediately.
  424. * To avoid possible confusion as to effective scope, the private internal
  425. utility ``is_safe_url()`` is renamed to
  426. ``url_has_allowed_host_and_scheme()``. That a URL has an allowed host and
  427. scheme doesn't in general imply that it's "safe". It may still be quoted
  428. incorrectly, for example. Ensure to also use
  429. :func:`~django.utils.encoding.iri_to_uri` on the path component of untrusted
  430. URLs.
  431. .. _removed-features-3.0:
  432. Features removed in 3.0
  433. =======================
  434. These features have reached the end of their deprecation cycle and are removed
  435. in Django 3.0.
  436. See :ref:`deprecated-features-2.0` for details on these changes, including how
  437. to remove usage of these features.
  438. * The ``django.db.backends.postgresql_psycopg2`` module is removed.
  439. * ``django.shortcuts.render_to_response()`` is removed.
  440. * The ``DEFAULT_CONTENT_TYPE`` setting is removed.
  441. * ``HttpRequest.xreadlines()`` is removed.
  442. * Support for the ``context`` argument of ``Field.from_db_value()`` and
  443. ``Expression.convert_value()`` is removed.
  444. * The ``field_name`` keyword argument of ``QuerySet.earliest()`` and
  445. ``latest()`` is removed.
  446. See :ref:`deprecated-features-2.1` for details on these changes, including how
  447. to remove usage of these features.
  448. * The ``ForceRHR`` GIS function is removed.
  449. * ``django.utils.http.cookie_date()`` is removed.
  450. * The ``staticfiles`` and ``admin_static`` template tag libraries are removed.
  451. * ``django.contrib.staticfiles.templatetags.staticfiles.static()`` is removed.