2
0

4.2.txt 20 KB

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