3.0.txt 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. ============================================
  2. Django 3.0 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected December 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. Minor features
  57. --------------
  58. :mod:`django.contrib.admin`
  59. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  60. * Added support for the ``admin_order_field`` attribute on properties in
  61. :attr:`.ModelAdmin.list_display`.
  62. * The new :meth:`ModelAdmin.get_inlines()
  63. <django.contrib.admin.ModelAdmin.get_inlines>` method allows specifying the
  64. inlines based on the request or model instance.
  65. * Select2 library is upgraded from version 4.0.3 to 4.0.7.
  66. * jQuery is upgraded from version 3.3.1 to 3.4.1.
  67. :mod:`django.contrib.admindocs`
  68. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. * ...
  70. :mod:`django.contrib.auth`
  71. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  72. * The new ``reset_url_token`` attribute in
  73. :class:`~django.contrib.auth.views.PasswordResetConfirmView` allows specifying
  74. a token parameter displayed as a component of password reset URLs.
  75. * Added :class:`~django.contrib.auth.backends.BaseBackend` class to ease
  76. customization of authentication backends.
  77. * Added :meth:`~django.contrib.auth.models.User.get_user_permissions()` method
  78. to mirror the existing
  79. :meth:`~django.contrib.auth.models.User.get_group_permissions()` method.
  80. * Added HTML ``autocomplete`` attribute to widgets of username, email, and
  81. password fields in :mod:`django.contrib.auth.forms` for better interaction
  82. with browser password managers.
  83. * :djadmin:`createsuperuser` now falls back to environment variables for
  84. password and required fields, when a corresponding command line argument
  85. isn't provided in non-interactive mode.
  86. * :attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS` now supports
  87. :class:`~django.db.models.ManyToManyField`\s.
  88. :mod:`django.contrib.contenttypes`
  89. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  90. * ...
  91. :mod:`django.contrib.gis`
  92. ~~~~~~~~~~~~~~~~~~~~~~~~~
  93. * Allowed MySQL spatial lookup functions to operate on real geometries.
  94. Previous support was limited to bounding boxes.
  95. * Added the :class:`~django.contrib.gis.db.models.functions.GeometryDistance`
  96. function, supported on PostGIS.
  97. * Added support for the ``furlong`` unit in
  98. :class:`~django.contrib.gis.measure.Distance`.
  99. * The :setting:`GEOIP_PATH` setting now supports :class:`pathlib.Path`.
  100. * The :class:`~django.contrib.gis.geoip2.GeoIP2` class now accepts
  101. :class:`pathlib.Path` ``path``.
  102. :mod:`django.contrib.messages`
  103. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  104. * ...
  105. :mod:`django.contrib.postgres`
  106. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  107. * The new :class:`~django.contrib.postgres.fields.RangeOperators` helps to
  108. avoid typos in SQL operators that can be used together with
  109. :class:`~django.contrib.postgres.fields.RangeField`.
  110. * The new :class:`~django.contrib.postgres.fields.RangeBoundary` expression
  111. represents the range boundaries.
  112. * The new :class:`~django.contrib.postgres.operations.AddIndexConcurrently`
  113. and :class:`~django.contrib.postgres.operations.RemoveIndexConcurrently`
  114. classes allow creating and dropping indexes ``CONCURRENTLY`` on PostgreSQL.
  115. :mod:`django.contrib.redirects`
  116. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  117. * ...
  118. :mod:`django.contrib.sessions`
  119. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  120. * The new
  121. :meth:`~django.contrib.sessions.backends.base.SessionBase.get_session_cookie_age()`
  122. methods allows dynamically specifying the session cookie age.
  123. :mod:`django.contrib.sitemaps`
  124. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  125. * ...
  126. :mod:`django.contrib.sites`
  127. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  128. * ...
  129. :mod:`django.contrib.staticfiles`
  130. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  131. * ...
  132. :mod:`django.contrib.syndication`
  133. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  134. * Added the ``language`` class attribute to the
  135. :class:`django.contrib.syndication.views.Feed` to customize a feed language.
  136. The default value is :func:`~django.utils.translation.get_language()` instead
  137. of :setting:`LANGUAGE_CODE`.
  138. Cache
  139. ~~~~~
  140. * :func:`~django.utils.cache.add_never_cache_headers` and
  141. :func:`~django.views.decorators.cache.never_cache` now adds ``private``
  142. directive to a ``Cache-Control`` header.
  143. CSRF
  144. ~~~~
  145. * ...
  146. Email
  147. ~~~~~
  148. * ...
  149. File Storage
  150. ~~~~~~~~~~~~
  151. * ...
  152. File Uploads
  153. ~~~~~~~~~~~~
  154. * ...
  155. Forms
  156. ~~~~~
  157. * Formsets may control the widget used when ordering forms via
  158. :attr:`~django.forms.formsets.BaseFormSet.can_order` by setting the
  159. :attr:`~django.forms.formsets.BaseFormSet.ordering_widget` attribute or
  160. overriding :attr:`~django.forms.formsets.BaseFormSet.get_ordering_widget()`.
  161. Generic Views
  162. ~~~~~~~~~~~~~
  163. * ...
  164. Internationalization
  165. ~~~~~~~~~~~~~~~~~~~~
  166. * Added the :setting:`LANGUAGE_COOKIE_HTTPONLY`,
  167. :setting:`LANGUAGE_COOKIE_SAMESITE`, and :setting:`LANGUAGE_COOKIE_SECURE`
  168. settings to set the ``HttpOnly``, ``SameSite``, and ``Secure`` flags on
  169. language cookies. The default values of these settings preserve the previous
  170. behavior.
  171. Management Commands
  172. ~~~~~~~~~~~~~~~~~~~
  173. * The new :option:`compilemessages --ignore` option allows ignoring specific
  174. directories when searching for ``.po`` files to compile.
  175. * :option:`showmigrations --list` now shows the applied datetimes when
  176. ``--verbosity`` is 2 and above.
  177. * On PostgreSQL, :djadmin:`dbshell` now supports client-side TLS certificates.
  178. * :djadmin:`inspectdb` now introspects :class:`~django.db.models.OneToOneField`
  179. when a foreign key has a unique or primary key constraint.
  180. * The new :option:`--skip-checks` option skips running system checks prior to
  181. running the command.
  182. * The :option:`startapp --template` and :option:`startproject --template`
  183. options now support templates stored in XZ archives (``.tar.xz``, ``.txz``)
  184. and LZMA archives (``.tar.lzma``, ``.tlz``).
  185. Migrations
  186. ~~~~~~~~~~
  187. * ...
  188. Models
  189. ~~~~~~
  190. * Added hash database functions :class:`~django.db.models.functions.MD5`,
  191. :class:`~django.db.models.functions.SHA1`,
  192. :class:`~django.db.models.functions.SHA224`,
  193. :class:`~django.db.models.functions.SHA256`,
  194. :class:`~django.db.models.functions.SHA384`, and
  195. :class:`~django.db.models.functions.SHA512`.
  196. * Added the :class:`~django.db.models.functions.Sign` database function.
  197. * The new ``is_dst`` parameter of the
  198. :class:`~django.db.models.functions.Trunc` database functions determines the
  199. treatment of nonexistent and ambiguous datetimes.
  200. * ``connection.queries`` now shows ``COPY … TO`` statements on PostgreSQL.
  201. * :class:`~django.db.models.FilePathField` now accepts a callable ``path``.
  202. * Allowed symmetrical intermediate table for self-referential
  203. :class:`~django.db.models.ManyToManyField`.
  204. * The ``name`` attributes of :class:`~django.db.models.CheckConstraint`,
  205. :class:`~django.db.models.UniqueConstraint`, and
  206. :class:`~django.db.models.Index` now support app label and class
  207. interpolation using the ``'%(app_label)s'`` and ``'%(class)s'`` placeholders.
  208. * The new :attr:`.Field.descriptor_class` attribute allows model fields to
  209. customize the get and set behavior by overriding their
  210. :py:ref:`descriptors <descriptors>`.
  211. * :class:`~django.db.models.Avg` and :class:`~django.db.models.Sum` now support
  212. the ``distinct`` argument.
  213. * Added :class:`~django.db.models.SmallAutoField` which acts much like an
  214. :class:`~django.db.models.AutoField` except that it only allows values under
  215. a certain (database-dependent) limit. Values from ``1`` to ``32767`` are safe
  216. in all databases supported by Django.
  217. * :class:`~django.db.models.AutoField`,
  218. :class:`~django.db.models.BigAutoField`, and
  219. :class:`~django.db.models.SmallAutoField` now inherit from
  220. ``IntegerField``, ``BigIntegerField`` and ``SmallIntegerField`` respectively.
  221. System checks and validators are now also properly inherited.
  222. * :attr:`.FileField.upload_to` now supports :class:`pathlib.Path`.
  223. Requests and Responses
  224. ~~~~~~~~~~~~~~~~~~~~~~
  225. * Allowed :class:`~django.http.HttpResponse` to be initialized with
  226. :class:`memoryview` content.
  227. * For use in, for example, Django templates, :attr:`.HttpRequest.headers` now
  228. allows look ups using underscores (e.g. ``user_agent``) in place of hyphens.
  229. Serialization
  230. ~~~~~~~~~~~~~
  231. * ...
  232. Signals
  233. ~~~~~~~
  234. * ...
  235. Templates
  236. ~~~~~~~~~
  237. * ...
  238. Tests
  239. ~~~~~
  240. * The new test :class:`~django.test.Client` argument
  241. ``raise_request_exception`` allows controlling whether or not exceptions
  242. raised during the request should also be raised in the test. The value
  243. defaults to ``True`` for backwards compatibility. If it is ``False`` and an
  244. exception occurs, the test client will return a 500 response with the
  245. attribute :attr:`~django.test.Response.exc_info`, a tuple providing
  246. information of the exception that occurred.
  247. * Tests and test cases to run can be selected by test name pattern using the
  248. new :option:`test -k` option.
  249. * HTML comparison, as used by
  250. :meth:`~django.test.SimpleTestCase.assertHTMLEqual`, now treats text, character
  251. references, and entity references that refer to the same character as
  252. equivalent.
  253. * Django test runner now supports headless mode for selenium tests on supported
  254. browsers. Add the ``--headless`` option to enable this mode.
  255. * Django test runner now supports ``--start-at`` and ``--start-after`` options
  256. to run tests starting from a specific top-level module.
  257. * Django test runner now supports a ``--pdb`` option to spawn a debugger at
  258. each error or failure.
  259. URLs
  260. ~~~~
  261. * ...
  262. Validators
  263. ~~~~~~~~~~
  264. * ...
  265. .. _backwards-incompatible-3.0:
  266. Backwards incompatible changes in 3.0
  267. =====================================
  268. Database backend API
  269. --------------------
  270. This section describes changes that may be needed in third-party database
  271. backends.
  272. * The second argument of ``DatabaseIntrospection.get_geometry_type()`` is now
  273. the row description instead of the column name.
  274. * ``DatabaseIntrospection.get_field_type()`` may no longer return tuples.
  275. * If the database can create foreign keys in the same SQL statement that adds a
  276. field, add ``SchemaEditor.sql_create_column_inline_fk`` with the appropriate
  277. SQL; otherwise, set ``DatabaseFeatures.can_create_inline_fk = False``.
  278. * ``DatabaseFeatures.can_return_id_from_insert`` and
  279. ``can_return_ids_from_bulk_insert`` are renamed to
  280. ``can_return_columns_from_insert`` and ``can_return_rows_from_bulk_insert``.
  281. * Database functions now handle :class:`datetime.timezone` formats when created
  282. using :class:`datetime.timedelta` instances (e.g.
  283. ``timezone(timedelta(hours=5))``, which would output ``'UTC+05:00'``).
  284. Third-party backends should handle this format when preparing
  285. :class:`~django.db.models.DateTimeField` in ``datetime_cast_date_sql()``,
  286. ``datetime_extract_sql()``, etc.
  287. * ``DatabaseOperations.return_insert_id()`` now requires an additional
  288. ``field`` argument with the model field.
  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. :mod:`django.contrib.admin`
  294. ---------------------------
  295. * Admin's model history change messages now prefers more readable field labels
  296. instead of field names.
  297. :mod:`django.contrib.gis`
  298. -------------------------
  299. * Support for PostGIS 2.1 is removed.
  300. * Support for SpatiaLite 4.1 and 4.2 is removed.
  301. * Support for GDAL 1.11 and GEOS 3.4 is removed.
  302. Dropped support for PostgreSQL 9.4
  303. ----------------------------------
  304. Upstream support for PostgreSQL 9.4 ends in December 2019. Django 3.0 supports
  305. PostgreSQL 9.5 and higher.
  306. Dropped support for Oracle 12.1
  307. -------------------------------
  308. Upstream support for Oracle 12.1 ends in July 2021. Django 2.2 will be
  309. supported until April 2022. Django 3.0 officially supports Oracle 12.2 and 18c.
  310. Removed private Python 2 compatibility APIs
  311. -------------------------------------------
  312. While Python 2 support was removed in Django 2.0, some private APIs weren't
  313. removed from Django so that third party apps could continue using them until
  314. the Python 2 end-of-life.
  315. Since we expect apps to drop Python 2 compatibility when adding support for
  316. Django 3.0, we're removing these APIs at this time.
  317. * ``django.test.utils.str_prefix()`` - Strings don't have 'u' prefixes in
  318. Python 3.
  319. * ``django.test.utils.patch_logger()`` - Use
  320. :meth:`unittest.TestCase.assertLogs` instead.
  321. * ``django.utils.lru_cache.lru_cache()`` - Alias of
  322. :func:`functools.lru_cache`.
  323. * ``django.utils.decorators.available_attrs()`` - This function returns
  324. ``functools.WRAPPER_ASSIGNMENTS``.
  325. * ``django.utils.decorators.ContextDecorator`` - Alias of
  326. :class:`contextlib.ContextDecorator`.
  327. * ``django.utils._os.abspathu()`` - Alias of :func:`os.path.abspath`.
  328. * ``django.utils._os.upath()`` and ``npath()`` - These functions do nothing on
  329. Python 3.
  330. * ``django.utils.six`` - Remove usage of this vendored library or switch to
  331. `six <https://pypi.org/project/six/>`_.
  332. * ``django.utils.encoding.python_2_unicode_compatible()`` - Alias of
  333. ``six.python_2_unicode_compatible()``.
  334. * ``django.utils.functional.curry()`` - Use :func:`functools.partial` or
  335. :class:`functools.partialmethod`. See :commit:`5b1c389603a353625ae1603`.
  336. * ``django.utils.safestring.SafeBytes`` - Unused since Django 2.0.
  337. New default value for the ``FILE_UPLOAD_PERMISSIONS`` setting
  338. -------------------------------------------------------------
  339. In older versions, the :setting:`FILE_UPLOAD_PERMISSIONS` setting defaults to
  340. ``None``. With the default :setting:`FILE_UPLOAD_HANDLERS`, this results in
  341. uploaded files having different permissions depending on their size and which
  342. upload handler is used.
  343. ``FILE_UPLOAD_PERMISSION`` now defaults to ``0o644`` to avoid this
  344. inconsistency.
  345. Miscellaneous
  346. -------------
  347. * ``ContentType.__str__()`` now includes the model's ``app_label`` to
  348. disambiguate model's with the same name in different apps.
  349. * Because accessing the language in the session rather than in the cookie is
  350. deprecated, ``LocaleMiddleware`` no longer looks for the user's language in
  351. the session and :func:`django.contrib.auth.logout` no longer preserves the
  352. session's language after logout.
  353. * :func:`django.utils.html.escape` now uses :func:`html.escape` to escape HTML.
  354. This converts ``'`` to ``&#x27;`` instead of the previous equivalent decimal
  355. code ``&#39;``.
  356. * The ``django-admin test -k`` option now works as the :option:`unittest
  357. -k<unittest.-k>` option rather than as a shortcut for ``--keepdb``.
  358. * Support for ``pywatchman`` < 1.2.0 is removed.
  359. * HTML rendered by :class:`~django.forms.SelectDateWidget` for required fields
  360. now have the ``placeholder`` attribute, which mainly may require some
  361. adjustments in tests that compare HTML.
  362. * :func:`~django.utils.http.urlencode` now encodes iterable values as they are
  363. when ``doseq=False``, rather than iterating them, bringing it into line with
  364. the standard library :func:`urllib.parse.urlencode` function.
  365. * ``intword`` template filter now translates ``1.0`` as a singular phrase and
  366. all other numeric values as plural. This may be incorrect for some languages.
  367. * Assigning a value to a model's :class:`~django.db.models.ForeignKey` or
  368. :class:`~django.db.models.OneToOneField` ``'_id'`` attribute now unsets the
  369. corresponding field. Accessing the field afterwards will result in a query.
  370. * :func:`~django.utils.cache.patch_vary_headers` now handles an asterisk
  371. ``'*'`` according to :rfc:`7231#section-7.1.4`, i.e. if a list of header
  372. field names contains an asterisk, then the ``Vary`` header will consist of a
  373. single asterisk ``'*'``.
  374. * :setting:`SECURE_CONTENT_TYPE_NOSNIFF` setting now defaults to ``True``. With
  375. the enabled :setting:`SECURE_CONTENT_TYPE_NOSNIFF`, the
  376. :class:`~django.middleware.security.SecurityMiddleware` sets the
  377. :ref:`x-content-type-options` header on all responses that do not already
  378. have it.
  379. .. _deprecated-features-3.0:
  380. Features deprecated in 3.0
  381. ==========================
  382. ``django.utils.encoding.force_text()`` and ``smart_text()``
  383. -----------------------------------------------------------
  384. The ``smart_text()`` and ``force_text()`` aliases (since Django 2.0) of
  385. ``smart_str()`` and ``force_str()`` are deprecated. Ignore this deprecation if
  386. your code supports Python 2 as the behavior of ``smart_str()`` and
  387. ``force_str()`` is different there.
  388. Miscellaneous
  389. -------------
  390. * ``django.utils.http.urlquote()``, ``urlquote_plus()``, ``urlunquote()``, and
  391. ``urlunquote_plus()`` are deprecated in favor of the functions that they're
  392. aliases for: :func:`urllib.parse.quote`, :func:`~urllib.parse.quote_plus`,
  393. :func:`~urllib.parse.unquote`, and :func:`~urllib.parse.unquote_plus`.
  394. * ``django.utils.translation.ugettext()``, ``ugettext_lazy()``,
  395. ``ugettext_noop()``, ``ungettext()``, and ``ungettext_lazy()`` are deprecated
  396. in favor of the functions that they're aliases for:
  397. :func:`django.utils.translation.gettext`,
  398. :func:`~django.utils.translation.gettext_lazy`,
  399. :func:`~django.utils.translation.gettext_noop`,
  400. :func:`~django.utils.translation.ngettext`, and
  401. :func:`~django.utils.translation.ngettext_lazy`.
  402. * To limit creation of sessions and hence favor some caching strategies,
  403. :func:`django.views.i18n.set_language` will stop setting the user's language
  404. in the session in Django 4.0. Since Django 2.1, the language is always stored
  405. in the :setting:`LANGUAGE_COOKIE_NAME` cookie.
  406. * ``alias=None`` is added to the signature of
  407. :meth:`.Expression.get_group_by_cols`.
  408. * ``django.utils.text.unescape_entities()`` is deprecated in favor of
  409. :func:`html.unescape`. Note that unlike ``unescape_entities()``,
  410. ``html.unescape()`` evaluates lazy strings immediately.
  411. .. _removed-features-3.0:
  412. Features removed in 3.0
  413. =======================
  414. These features have reached the end of their deprecation cycle and are removed
  415. in Django 3.0.
  416. See :ref:`deprecated-features-2.0` for details on these changes, including how
  417. to remove usage of these features.
  418. * The ``django.db.backends.postgresql_psycopg2`` module is removed.
  419. * ``django.shortcuts.render_to_response()`` is removed.
  420. * The ``DEFAULT_CONTENT_TYPE`` setting is removed.
  421. * ``HttpRequest.xreadlines()`` is removed.
  422. * Support for the ``context`` argument of ``Field.from_db_value()`` and
  423. ``Expression.convert_value()`` is removed.
  424. * The ``field_name`` keyword argument of ``QuerySet.earliest()`` and
  425. ``latest()`` is removed.
  426. See :ref:`deprecated-features-2.1` for details on these changes, including how
  427. to remove usage of these features.
  428. * The ``ForceRHR`` GIS function is removed.
  429. * ``django.utils.http.cookie_date()`` is removed.
  430. * The ``staticfiles`` and ``admin_static`` template tag libraries are removed.
  431. * ``django.contrib.staticfiles.templatetags.staticfiles.static()`` is removed.