4.2.txt 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. ========================
  2. Django 4.2 release notes
  3. ========================
  4. *April 3, 2023*
  5. Welcome to Django 4.2!
  6. These release notes cover the :ref:`new features <whats-new-4.2>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-4.2>` you'll
  8. want to be aware of when upgrading from Django 4.1 or earlier. We've
  9. :ref:`begun the deprecation process for some features
  10. <deprecated-features-4.2>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Django 4.2 is designated as a :term:`long-term support release
  14. <Long-term support release>`. It will receive security updates for at least
  15. three years after its release. Support for the previous LTS, Django 3.2, will
  16. end in April 2024.
  17. Python compatibility
  18. ====================
  19. Django 4.2 supports Python 3.8, 3.9, 3.10, 3.11, and 3.12 (as of 4.2.8). We
  20. **highly recommend** and only officially support the latest release of each
  21. series.
  22. .. _whats-new-4.2:
  23. What's new in Django 4.2
  24. ========================
  25. Psycopg 3 support
  26. -----------------
  27. Django now supports `psycopg`_ version 3.1.8 or higher. To update your code,
  28. install the :pypi:`psycopg library <psycopg>`, you don't need to change the
  29. :setting:`ENGINE <DATABASE-ENGINE>` as ``django.db.backends.postgresql``
  30. supports both libraries.
  31. Support for ``psycopg2`` is likely to be deprecated and removed at some point
  32. in the future.
  33. Be aware that ``psycopg`` 3 introduces some breaking changes over ``psycopg2``.
  34. As a consequence, you may need to make some changes to account for
  35. `differences from psycopg2`_.
  36. .. _psycopg: https://www.psycopg.org/psycopg3/
  37. .. _differences from psycopg2: https://www.psycopg.org/psycopg3/docs/basic/from_pg2.html
  38. Comments on columns and tables
  39. ------------------------------
  40. The new :attr:`Field.db_comment <django.db.models.Field.db_comment>` and
  41. :attr:`Meta.db_table_comment <django.db.models.Options.db_table_comment>`
  42. options allow creating comments on columns and tables, respectively. For
  43. example::
  44. from django.db import models
  45. class Question(models.Model):
  46. text = models.TextField(db_comment="Poll question")
  47. pub_date = models.DateTimeField(
  48. db_comment="Date and time when the question was published",
  49. )
  50. class Meta:
  51. db_table_comment = "Poll questions"
  52. class Answer(models.Model):
  53. question = models.ForeignKey(
  54. Question,
  55. on_delete=models.CASCADE,
  56. db_comment="Reference to a question",
  57. )
  58. answer = models.TextField(db_comment="Question answer")
  59. class Meta:
  60. db_table_comment = "Question answers"
  61. Also, the new :class:`~django.db.migrations.operations.AlterModelTableComment`
  62. operation allows changing table comments defined in the
  63. :attr:`Meta.db_table_comment <django.db.models.Options.db_table_comment>`.
  64. Mitigation for the BREACH attack
  65. --------------------------------
  66. :class:`~django.middleware.gzip.GZipMiddleware` now includes a mitigation for
  67. the BREACH attack. It will add up to 100 random bytes to gzip responses to make
  68. BREACH attacks harder. Read more about the mitigation technique in the `Heal
  69. The Breach (HTB) paper`_.
  70. .. _Heal The Breach (HTB) paper: https://ieeexplore.ieee.org/document/9754554
  71. In-memory file storage
  72. ----------------------
  73. The new :class:`django.core.files.storage.InMemoryStorage` class provides a
  74. non-persistent storage useful for speeding up tests by avoiding disk access.
  75. Custom file storages
  76. --------------------
  77. The new :setting:`STORAGES` setting allows configuring multiple custom file
  78. storage backends. It also controls storage engines for managing
  79. :doc:`files </topics/files>` (the ``"default"`` key) and :doc:`static files
  80. </ref/contrib/staticfiles>` (the ``"staticfiles"`` key).
  81. The old ``DEFAULT_FILE_STORAGE`` and ``STATICFILES_STORAGE`` settings are
  82. deprecated as of this release.
  83. Minor features
  84. --------------
  85. :mod:`django.contrib.admin`
  86. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  87. * The light or dark color theme of the admin can now be toggled in the UI, as
  88. well as being set to follow the system setting.
  89. * The admin's font stack now prefers system UI fonts and no longer requires
  90. downloading fonts. Additionally, CSS variables are available to more easily
  91. override the default font families.
  92. * The :source:`admin/delete_confirmation.html
  93. <django/contrib/admin/templates/admin/delete_confirmation.html>` template now
  94. has some additional blocks and scripting hooks to ease customization.
  95. * The chosen options of
  96. :attr:`~django.contrib.admin.ModelAdmin.filter_horizontal` and
  97. :attr:`~django.contrib.admin.ModelAdmin.filter_vertical` widgets are now
  98. filterable.
  99. * The ``admin/base.html`` template now has a new block ``nav-breadcrumbs``
  100. which contains the navigation landmark and the ``breadcrumbs`` block.
  101. * :attr:`.ModelAdmin.list_editable` now uses atomic transactions when making
  102. edits.
  103. * jQuery is upgraded from version 3.6.0 to 3.6.4.
  104. :mod:`django.contrib.auth`
  105. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  106. * The default iteration count for the PBKDF2 password hasher is increased from
  107. 390,000 to 600,000.
  108. * :class:`~django.contrib.auth.forms.UserCreationForm` now saves many-to-many
  109. form fields for a custom user model.
  110. * The new :class:`~django.contrib.auth.forms.BaseUserCreationForm` is now the
  111. recommended base class for customizing the user creation form.
  112. :mod:`django.contrib.gis`
  113. ~~~~~~~~~~~~~~~~~~~~~~~~~
  114. * The :doc:`GeoJSON serializer </ref/contrib/gis/serializers>` now outputs the
  115. ``id`` key for serialized features, which defaults to the primary key of
  116. objects.
  117. * The :class:`~django.contrib.gis.gdal.GDALRaster` class now supports
  118. :class:`pathlib.Path`.
  119. * The :class:`~django.contrib.gis.geoip2.GeoIP2` class now supports ``.mmdb``
  120. files downloaded from DB-IP.
  121. * The OpenLayers template widget no longer includes inline CSS (which also
  122. removes the former ``map_css`` block) to better comply with a strict Content
  123. Security Policy.
  124. * :class:`~django.contrib.gis.forms.widgets.OpenLayersWidget` is now based on
  125. OpenLayers 7.2.2 (previously 4.6.5).
  126. * The new :lookup:`isempty` lookup and
  127. :class:`IsEmpty() <django.contrib.gis.db.models.functions.IsEmpty>`
  128. expression allow filtering empty geometries on PostGIS.
  129. * The new :class:`FromWKB() <django.contrib.gis.db.models.functions.FromWKB>`
  130. and :class:`FromWKT() <django.contrib.gis.db.models.functions.FromWKT>`
  131. functions allow creating geometries from Well-known binary (WKB) and
  132. Well-known text (WKT) representations.
  133. :mod:`django.contrib.postgres`
  134. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  135. * The new :lookup:`trigram_strict_word_similar` lookup, and the
  136. :class:`TrigramStrictWordSimilarity()
  137. <django.contrib.postgres.search.TrigramStrictWordSimilarity>` and
  138. :class:`TrigramStrictWordDistance()
  139. <django.contrib.postgres.search.TrigramStrictWordDistance>` expressions allow
  140. using trigram strict word similarity.
  141. * The :lookup:`arrayfield.overlap` lookup now supports ``QuerySet.values()``
  142. and ``values_list()`` as a right-hand side.
  143. :mod:`django.contrib.sitemaps`
  144. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  145. * The new :meth:`.Sitemap.get_languages_for_item` method allows customizing the
  146. list of languages for which the item is displayed.
  147. :mod:`django.contrib.staticfiles`
  148. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  149. * :class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage` now
  150. has experimental support for replacing paths to JavaScript modules in
  151. ``import`` and ``export`` statements with their hashed counterparts. If you
  152. want to try it, subclass ``ManifestStaticFilesStorage`` and set the
  153. ``support_js_module_import_aggregation`` attribute to ``True``.
  154. * The new :attr:`.ManifestStaticFilesStorage.manifest_hash` attribute provides
  155. a hash over all files in the manifest and changes whenever one of the files
  156. changes.
  157. Database backends
  158. ~~~~~~~~~~~~~~~~~
  159. * The new ``"assume_role"`` option is now supported in :setting:`OPTIONS` on
  160. PostgreSQL to allow specifying the :ref:`session role <database-role>`.
  161. * The new ``"server_side_binding"`` option is now supported in
  162. :setting:`OPTIONS` on PostgreSQL with ``psycopg`` 3.1.8+ to allow using
  163. :ref:`server-side binding cursors <database-server-side-parameters-binding>`.
  164. Error Reporting
  165. ~~~~~~~~~~~~~~~
  166. * The debug page now shows :pep:`exception notes <678>` and
  167. :pep:`fine-grained error locations <657>` on Python 3.11+.
  168. * Session cookies are now treated as credentials and therefore hidden and
  169. replaced with stars (``**********``) in error reports.
  170. Forms
  171. ~~~~~
  172. * :class:`~django.forms.ModelForm` now accepts the new ``Meta`` option
  173. ``formfield_callback`` to customize form fields.
  174. * :func:`~django.forms.models.modelform_factory` now respects the
  175. ``formfield_callback`` attribute of the ``form``’s ``Meta``.
  176. Internationalization
  177. ~~~~~~~~~~~~~~~~~~~~
  178. * Added support and translations for the Central Kurdish (Sorani) language.
  179. Logging
  180. ~~~~~~~
  181. * The :ref:`django-db-logger` logger now logs transaction management queries
  182. (``BEGIN``, ``COMMIT``, and ``ROLLBACK``) at the ``DEBUG`` level.
  183. Management Commands
  184. ~~~~~~~~~~~~~~~~~~~
  185. * :djadmin:`makemessages` command now supports locales with private sub-tags
  186. such as ``nl_NL-x-informal``.
  187. * The new :option:`makemigrations --update` option merges model changes into
  188. the latest migration and optimizes the resulting operations.
  189. Migrations
  190. ~~~~~~~~~~
  191. * Migrations now support serialization of ``enum.Flag`` objects.
  192. Models
  193. ~~~~~~
  194. * ``QuerySet`` now extensively supports filtering against
  195. :ref:`window-functions` with the exception of disjunctive filter lookups
  196. against window functions when performing aggregation.
  197. * :meth:`~.QuerySet.prefetch_related` now supports
  198. :class:`~django.db.models.Prefetch` objects with sliced querysets.
  199. * :ref:`Registering lookups <lookup-registration-api>` on
  200. :class:`~django.db.models.Field` instances is now supported.
  201. * The new ``robust`` argument for :func:`~django.db.transaction.on_commit`
  202. allows performing actions that can fail after a database transaction is
  203. successfully committed.
  204. * The new :class:`KT() <django.db.models.fields.json.KT>` expression represents
  205. the text value of a key, index, or path transform of
  206. :class:`~django.db.models.JSONField`.
  207. * :class:`~django.db.models.functions.Now` now supports microsecond precision
  208. on MySQL and millisecond precision on SQLite.
  209. * :class:`F() <django.db.models.F>` expressions that output ``BooleanField``
  210. can now be negated using ``~F()`` (inversion operator).
  211. * ``Model`` now provides asynchronous versions of some methods that use the
  212. database, using an ``a`` prefix: :meth:`~.Model.adelete`,
  213. :meth:`~.Model.arefresh_from_db`, and :meth:`~.Model.asave`.
  214. * Related managers now provide asynchronous versions of methods that change a
  215. set of related objects, using an ``a`` prefix: :meth:`~.RelatedManager.aadd`,
  216. :meth:`~.RelatedManager.aclear`, :meth:`~.RelatedManager.aremove`, and
  217. :meth:`~.RelatedManager.aset`.
  218. * :attr:`CharField.max_length <django.db.models.CharField.max_length>` is no
  219. longer required to be set on PostgreSQL, which supports unlimited ``VARCHAR``
  220. columns.
  221. Requests and Responses
  222. ~~~~~~~~~~~~~~~~~~~~~~
  223. * :class:`~django.http.StreamingHttpResponse` now supports async iterators
  224. when Django is served via ASGI.
  225. Tests
  226. ~~~~~
  227. * The :option:`test --debug-sql` option now formats SQL queries with
  228. ``sqlparse``.
  229. * The :class:`~django.test.RequestFactory`,
  230. :class:`~django.test.AsyncRequestFactory`, :class:`~django.test.Client`, and
  231. :class:`~django.test.AsyncClient` classes now support the ``headers``
  232. parameter, which accepts a dictionary of header names and values. This allows
  233. a more natural syntax for declaring headers.
  234. .. code-block:: python
  235. # Before:
  236. self.client.get("/home/", HTTP_ACCEPT_LANGUAGE="fr")
  237. await self.async_client.get("/home/", ACCEPT_LANGUAGE="fr")
  238. # After:
  239. self.client.get("/home/", headers={"accept-language": "fr"})
  240. await self.async_client.get("/home/", headers={"accept-language": "fr"})
  241. Utilities
  242. ~~~~~~~~~
  243. * The new ``encoder`` parameter for :meth:`django.utils.html.json_script`
  244. function allows customizing a JSON encoder class.
  245. * The private internal vendored copy of ``urllib.parse.urlsplit()`` now strips
  246. ``'\r'``, ``'\n'``, and ``'\t'`` (see :cve:`2022-0391` and :bpo:`43882`).
  247. This is to protect projects that may be incorrectly using the internal
  248. ``url_has_allowed_host_and_scheme()`` function, instead of using one of the
  249. documented functions for handling URL redirects. The Django functions were
  250. not affected.
  251. * The new :func:`django.utils.http.content_disposition_header` function returns
  252. a ``Content-Disposition`` HTTP header value as specified by :rfc:`6266`.
  253. Validators
  254. ~~~~~~~~~~
  255. * The list of common passwords used by ``CommonPasswordValidator`` is updated
  256. to the most recent version.
  257. .. _backwards-incompatible-4.2:
  258. Backwards incompatible changes in 4.2
  259. =====================================
  260. Database backend API
  261. --------------------
  262. This section describes changes that may be needed in third-party database
  263. backends.
  264. * ``DatabaseFeatures.allows_group_by_pk`` is removed as it only remained to
  265. accommodate a MySQL extension that has been supplanted by proper functional
  266. dependency detection in MySQL 5.7.15. Note that
  267. ``DatabaseFeatures.allows_group_by_selected_pks`` is still supported and
  268. should be enabled if your backend supports functional dependency detection in
  269. ``GROUP BY`` clauses as specified by the ``SQL:1999`` standard.
  270. * :djadmin:`inspectdb` now uses ``display_size`` from
  271. ``DatabaseIntrospection.get_table_description()`` rather than
  272. ``internal_size`` for ``CharField``.
  273. Dropped support for MariaDB 10.3
  274. --------------------------------
  275. Upstream support for MariaDB 10.3 ends in May 2023. Django 4.2 supports MariaDB
  276. 10.4 and higher.
  277. Dropped support for MySQL 5.7
  278. -----------------------------
  279. Upstream support for MySQL 5.7 ends in October 2023. Django 4.2 supports MySQL
  280. 8 and higher.
  281. Dropped support for PostgreSQL 11
  282. ---------------------------------
  283. Upstream support for PostgreSQL 11 ends in November 2023. Django 4.2 supports
  284. PostgreSQL 12 and higher.
  285. Setting ``update_fields`` in ``Model.save()`` may now be required
  286. -----------------------------------------------------------------
  287. In order to avoid updating unnecessary columns,
  288. :meth:`.QuerySet.update_or_create` now passes ``update_fields`` to the
  289. :meth:`Model.save() <django.db.models.Model.save>` calls. As a consequence, any
  290. fields modified in the custom ``save()`` methods should be added to the
  291. ``update_fields`` keyword argument before calling ``super()``. See
  292. :ref:`overriding-model-methods` for more details.
  293. Miscellaneous
  294. -------------
  295. * The undocumented ``django.http.multipartparser.parse_header()`` function is
  296. removed. Use ``django.utils.http.parse_header_parameters()`` instead.
  297. * :ttag:`{% blocktranslate asvar … %}<blocktranslate>` result is now marked as
  298. safe for (HTML) output purposes.
  299. * The ``autofocus`` HTML attribute in the admin search box is removed as it can
  300. be confusing for screen readers.
  301. * The :option:`makemigrations --check` option no longer creates missing
  302. migration files.
  303. * The ``alias`` argument for :meth:`.Expression.get_group_by_cols` is removed.
  304. * The minimum supported version of ``sqlparse`` is increased from 0.2.2 to
  305. 0.3.1.
  306. * The undocumented ``negated`` parameter of the
  307. :class:`~django.db.models.Exists` expression is removed.
  308. * The ``is_summary`` argument of the undocumented ``Query.add_annotation()``
  309. method is removed.
  310. * The minimum supported version of SQLite is increased from 3.9.0 to 3.21.0.
  311. * The minimum supported version of ``asgiref`` is increased from 3.5.2 to
  312. 3.6.0.
  313. * :class:`~django.contrib.auth.forms.UserCreationForm` now rejects usernames
  314. that differ only in case. If you need the previous behavior, use
  315. :class:`~django.contrib.auth.forms.BaseUserCreationForm` instead.
  316. * The minimum supported version of ``mysqlclient`` is increased from 1.4.0 to
  317. 1.4.3.
  318. * The minimum supported version of ``argon2-cffi`` is increased from 19.1.0 to
  319. 19.2.0.
  320. * The minimum supported version of ``Pillow`` is increased from 6.2.0 to 6.2.1.
  321. * The minimum supported version of ``jinja2`` is increased from 2.9.2 to
  322. 2.11.0.
  323. * The minimum supported version of :pypi:`redis-py <redis>` is increased from
  324. 3.0.0 to 3.4.0.
  325. * Manually instantiated ``WSGIRequest`` objects must be provided a file-like
  326. object for ``wsgi.input``. Previously, Django was more lax than the expected
  327. behavior as specified by the WSGI specification.
  328. * Support for ``PROJ`` < 5 is removed.
  329. * :class:`~django.core.mail.backends.smtp.EmailBackend` now verifies a
  330. :py:attr:`hostname <ssl.SSLContext.check_hostname>` and
  331. :py:attr:`certificates <ssl.SSLContext.verify_mode>`. If you need the
  332. previous behavior that is less restrictive and not recommended, subclass
  333. ``EmailBackend`` and override the ``ssl_context`` property.
  334. .. _deprecated-features-4.2:
  335. Features deprecated in 4.2
  336. ==========================
  337. ``index_together`` option is deprecated in favor of ``indexes``
  338. ---------------------------------------------------------------
  339. The :attr:`Meta.index_together <django.db.models.Options.index_together>`
  340. option is deprecated in favor of the :attr:`~django.db.models.Options.indexes`
  341. option.
  342. Migrating existing ``index_together`` should be handled as a migration. For
  343. example::
  344. class Author(models.Model):
  345. rank = models.IntegerField()
  346. name = models.CharField(max_length=30)
  347. class Meta:
  348. index_together = [["rank", "name"]]
  349. Should become::
  350. class Author(models.Model):
  351. rank = models.IntegerField()
  352. name = models.CharField(max_length=30)
  353. class Meta:
  354. indexes = [models.Index(fields=["rank", "name"])]
  355. Running the :djadmin:`makemigrations` command will generate a migration
  356. containing a :class:`~django.db.migrations.operations.RenameIndex` operation
  357. which will rename the existing index. Next, consider squashing migrations to
  358. remove ``index_together`` from historical migrations.
  359. The ``AlterIndexTogether`` migration operation is now officially supported only
  360. for pre-Django 4.2 migration files. For backward compatibility reasons, it's
  361. still part of the public API, and there's no plan to deprecate or remove it,
  362. but it should not be used for new migrations. Use
  363. :class:`~django.db.migrations.operations.AddIndex` and
  364. :class:`~django.db.migrations.operations.RemoveIndex` operations instead.
  365. Passing encoded JSON string literals to ``JSONField`` is deprecated
  366. -------------------------------------------------------------------
  367. ``JSONField`` and its associated lookups and aggregates used to allow passing
  368. JSON encoded string literals which caused ambiguity on whether string literals
  369. were already encoded from database backend's perspective.
  370. During the deprecation period string literals will be attempted to be JSON
  371. decoded and a warning will be emitted on success that points at passing
  372. non-encoded forms instead.
  373. Code that used to pass JSON encoded string literals::
  374. Document.objects.bulk_create(
  375. Document(data=Value("null")),
  376. Document(data=Value("[]")),
  377. Document(data=Value('"foo-bar"')),
  378. )
  379. Document.objects.annotate(
  380. JSONBAgg("field", default=Value("[]")),
  381. )
  382. Should become::
  383. Document.objects.bulk_create(
  384. Document(data=Value(None, JSONField())),
  385. Document(data=[]),
  386. Document(data="foo-bar"),
  387. )
  388. Document.objects.annotate(
  389. JSONBAgg("field", default=[]),
  390. )
  391. From Django 5.1+ string literals will be implicitly interpreted as JSON string
  392. literals.
  393. Miscellaneous
  394. -------------
  395. * The ``BaseUserManager.make_random_password()`` method is deprecated. See
  396. `recipes and best practices
  397. <https://docs.python.org/3/library/secrets.html#recipes-and-best-practices>`_
  398. for using Python's :py:mod:`secrets` module to generate passwords.
  399. * The ``length_is`` template filter is deprecated in favor of :tfilter:`length`
  400. and the ``==`` operator within an :ttag:`{% if %}<if>` tag. For example
  401. .. code-block:: html+django
  402. {% if value|length == 4 %}…{% endif %}
  403. {% if value|length == 4 %}True{% else %}False{% endif %}
  404. instead of:
  405. .. code-block:: html+django
  406. {% if value|length_is:4 %}…{% endif %}
  407. {{ value|length_is:4 }}
  408. * ``django.contrib.auth.hashers.SHA1PasswordHasher``,
  409. ``django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher``, and
  410. ``django.contrib.auth.hashers.UnsaltedMD5PasswordHasher`` are deprecated.
  411. * ``django.contrib.postgres.fields.CICharField`` is deprecated in favor of
  412. ``CharField(db_collation="…")`` with a case-insensitive non-deterministic
  413. collation.
  414. * ``django.contrib.postgres.fields.CIEmailField`` is deprecated in favor of
  415. ``EmailField(db_collation="…")`` with a case-insensitive non-deterministic
  416. collation.
  417. * ``django.contrib.postgres.fields.CITextField`` is deprecated in favor of
  418. ``TextField(db_collation="…")`` with a case-insensitive non-deterministic
  419. collation.
  420. * ``django.contrib.postgres.fields.CIText`` mixin is deprecated.
  421. * The ``map_height`` and ``map_width`` attributes of ``BaseGeometryWidget`` are
  422. deprecated, use CSS to size map widgets instead.
  423. * ``SimpleTestCase.assertFormsetError()`` is deprecated in favor of
  424. ``assertFormSetError()``.
  425. * ``TransactionTestCase.assertQuerysetEqual()`` is deprecated in favor of
  426. ``assertQuerySetEqual()``.
  427. * Passing positional arguments to ``Signer`` and ``TimestampSigner`` is
  428. deprecated in favor of keyword-only arguments.
  429. * The ``DEFAULT_FILE_STORAGE`` setting is deprecated in favor of
  430. ``STORAGES["default"]``.
  431. * The ``STATICFILES_STORAGE`` setting is deprecated in favor of
  432. ``STORAGES["staticfiles"]``.
  433. * The ``django.core.files.storage.get_storage_class()`` function is deprecated.