2.2.txt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. ========================
  2. Django 2.2 release notes
  3. ========================
  4. *April 1, 2019*
  5. Welcome to Django 2.2!
  6. These release notes cover the :ref:`new features <whats-new-2.2>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-2.2>` you'll
  8. want to be aware of when upgrading from Django 2.1 or earlier. We've
  9. :ref:`begun the deprecation process for some features
  10. <deprecated-features-2.2>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Django 2.2 is designated as a :term:`long-term support release`. It will
  14. receive security updates for at least three years after its release. Support
  15. for the previous LTS, Django 1.11, will end in April 2020.
  16. Python compatibility
  17. ====================
  18. Django 2.2 supports Python 3.5, 3.6, 3.7, and 3.8 (as of 2.2.8). We
  19. **highly recommend** and only officially support the latest release of each
  20. series.
  21. .. _whats-new-2.2:
  22. What's new in Django 2.2
  23. ========================
  24. Constraints
  25. -----------
  26. The new :class:`~django.db.models.CheckConstraint` and
  27. :class:`~django.db.models.UniqueConstraint` classes enable adding custom
  28. database constraints. Constraints are added to models using the
  29. :attr:`Meta.constraints <django.db.models.Options.constraints>` option.
  30. Minor features
  31. --------------
  32. :mod:`django.contrib.admin`
  33. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  34. * Added a CSS class to the column headers of
  35. :class:`~django.contrib.admin.TabularInline`.
  36. :mod:`django.contrib.auth`
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. * The ``HttpRequest`` is now passed as the first positional argument to
  39. :meth:`.RemoteUserBackend.configure_user`, if it accepts it.
  40. :mod:`django.contrib.gis`
  41. ~~~~~~~~~~~~~~~~~~~~~~~~~
  42. * Added Oracle support for the
  43. :class:`~django.contrib.gis.db.models.functions.Envelope` function.
  44. * Added SpatiaLite support for the :lookup:`coveredby` and :lookup:`covers`
  45. lookups.
  46. :mod:`django.contrib.postgres`
  47. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. * The new ``ordering`` argument for
  49. :class:`~django.contrib.postgres.aggregates.ArrayAgg` and
  50. :class:`~django.contrib.postgres.aggregates.StringAgg` determines the
  51. ordering of the aggregated elements.
  52. * The new :class:`~django.contrib.postgres.indexes.BTreeIndex`,
  53. :class:`~django.contrib.postgres.indexes.HashIndex` and
  54. :class:`~django.contrib.postgres.indexes.SpGistIndex` classes allow
  55. creating ``B-Tree``, ``hash``, and ``SP-GiST`` indexes in the database.
  56. * :class:`~django.contrib.postgres.indexes.BrinIndex` now has the
  57. ``autosummarize`` parameter.
  58. * The new ``search_type`` parameter of
  59. :class:`~django.contrib.postgres.search.SearchQuery` allows searching for
  60. a phrase or raw expression.
  61. :mod:`django.contrib.staticfiles`
  62. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  63. * Added path matching to the :option:`collectstatic --ignore` option so that
  64. patterns like ``/vendor/*.js`` can be used.
  65. Database backends
  66. ~~~~~~~~~~~~~~~~~
  67. * Added result streaming for :meth:`.QuerySet.iterator` on SQLite.
  68. Generic Views
  69. ~~~~~~~~~~~~~
  70. * The new :meth:`View.setup <django.views.generic.base.View.setup>` hook
  71. initializes view attributes before calling
  72. :meth:`~django.views.generic.base.View.dispatch`. It allows mixins to setup
  73. instance attributes for reuse in child classes.
  74. Internationalization
  75. ~~~~~~~~~~~~~~~~~~~~
  76. * Added support and translations for the Armenian language.
  77. Management Commands
  78. ~~~~~~~~~~~~~~~~~~~
  79. * The new :option:`--force-color` option forces colorization of the command
  80. output.
  81. * :djadmin:`inspectdb` now creates models for foreign tables on PostgreSQL.
  82. * :option:`inspectdb --include-views` now creates models for materialized views
  83. on Oracle and PostgreSQL.
  84. * The new :option:`inspectdb --include-partitions` option allows creating
  85. models for partition tables on PostgreSQL. In older versions, models are
  86. created child tables instead the parent.
  87. * :djadmin:`inspectdb` now introspects :class:`~django.db.models.DurationField`
  88. for Oracle and PostgreSQL, and :class:`~django.db.models.AutoField` for
  89. SQLite.
  90. * On Oracle, :djadmin:`dbshell` is wrapped with ``rlwrap``, if available.
  91. ``rlwrap`` provides a command history and editing of keyboard input.
  92. * The new :option:`makemigrations --no-header` option avoids writing header
  93. comments in generated migration file(s). This option is also available for
  94. :djadmin:`squashmigrations`.
  95. * :djadmin:`runserver` can now use `Watchman
  96. <https://facebook.github.io/watchman/>`_ to improve the performance of
  97. watching a large number of files for changes.
  98. Migrations
  99. ~~~~~~~~~~
  100. * The new :option:`migrate --plan` option prints the list of migration
  101. operations that will be performed.
  102. * ``NoneType`` can now be serialized in migrations.
  103. * You can now :ref:`register custom serializers <custom-migration-serializers>`
  104. for migrations.
  105. Models
  106. ~~~~~~
  107. * Added support for PostgreSQL operator classes (:attr:`.Index.opclasses`).
  108. * Added support for partial indexes (:attr:`.Index.condition`).
  109. * Added the :class:`~django.db.models.functions.NullIf` and
  110. :class:`~django.db.models.functions.Reverse` database functions, as well as
  111. many :ref:`math database functions <math-functions>`.
  112. * Setting the new ``ignore_conflicts`` parameter of
  113. :meth:`.QuerySet.bulk_create` to ``True`` tells the database to ignore
  114. failure to insert rows that fail uniqueness constraints or other checks.
  115. * The new :class:`~django.db.models.functions.ExtractIsoYear` function extracts
  116. ISO-8601 week-numbering years from :class:`~django.db.models.DateField` and
  117. :class:`~django.db.models.DateTimeField`, and the new :lookup:`iso_year`
  118. lookup allows querying by an ISO-8601 week-numbering year.
  119. * The new :meth:`.QuerySet.bulk_update` method allows efficiently updating
  120. specific fields on multiple model instances.
  121. * Django no longer always starts a transaction when a single query is being
  122. performed, such as ``Model.save()``, ``QuerySet.update()``, and
  123. ``Model.delete()``. This improves the performance of autocommit by reducing
  124. the number of database round trips.
  125. * Added SQLite support for the :class:`~django.db.models.StdDev` and
  126. :class:`~django.db.models.Variance` functions.
  127. * The handling of ``DISTINCT`` aggregation is added to the
  128. :class:`~django.db.models.Aggregate` class. Adding :attr:`allow_distinct =
  129. True <django.db.models.Aggregate.allow_distinct>` as a class attribute on
  130. ``Aggregate`` subclasses allows a ``distinct`` keyword argument to be
  131. specified on initialization to ensure that the aggregate function is only
  132. called for each distinct value of ``expressions``.
  133. * The :meth:`.RelatedManager.add`, :meth:`~.RelatedManager.create`,
  134. :meth:`~.RelatedManager.remove`, :meth:`~.RelatedManager.set`,
  135. ``get_or_create()``, and ``update_or_create()`` methods are now allowed on
  136. many-to-many relationships with intermediate models. The new
  137. ``through_defaults`` argument is used to specify values for new intermediate
  138. model instance(s).
  139. Requests and Responses
  140. ~~~~~~~~~~~~~~~~~~~~~~
  141. * Added :attr:`.HttpRequest.headers` to allow simple access to a request's
  142. headers.
  143. Serialization
  144. ~~~~~~~~~~~~~
  145. * You can now deserialize data using natural keys containing :ref:`forward
  146. references <natural-keys-and-forward-references>` by passing
  147. ``handle_forward_references=True`` to ``serializers.deserialize()``.
  148. Additionally, :djadmin:`loaddata` handles forward references automatically.
  149. Tests
  150. ~~~~~
  151. * The new :meth:`.SimpleTestCase.assertURLEqual` assertion checks for a given
  152. URL, ignoring the ordering of the query string.
  153. :meth:`~.SimpleTestCase.assertRedirects` uses the new assertion.
  154. * The test :class:`~.django.test.Client` now supports automatic JSON
  155. serialization of list and tuple ``data`` when
  156. ``content_type='application/json'``.
  157. * The new :setting:`ORACLE_MANAGED_FILES <TEST_ORACLE_MANAGED_FILES>` test
  158. database setting allows using Oracle Managed Files (OMF) tablespaces.
  159. * Deferrable database constraints are now checked at the end of each
  160. :class:`~django.test.TestCase` test on SQLite 3.20+, just like on other
  161. backends that support deferrable constraints. These checks aren't implemented
  162. for older versions of SQLite because they would require expensive table
  163. introspection there.
  164. * :class:`~django.test.runner.DiscoverRunner` now skips the setup of databases
  165. not :ref:`referenced by tests<testing-multi-db>`.
  166. URLs
  167. ~~~~
  168. * The new :attr:`.ResolverMatch.route` attribute stores the route of the
  169. matching URL pattern.
  170. Validators
  171. ~~~~~~~~~~
  172. * :class:`.MaxValueValidator`, :class:`.MinValueValidator`,
  173. :class:`.MinLengthValidator`, and :class:`.MaxLengthValidator` now accept
  174. a callable ``limit_value``.
  175. .. _backwards-incompatible-2.2:
  176. Backwards incompatible changes in 2.2
  177. =====================================
  178. Database backend API
  179. --------------------
  180. This section describes changes that may be needed in third-party database
  181. backends.
  182. * Third-party database backends must implement support for table check
  183. constraints or set ``DatabaseFeatures.supports_table_check_constraints`` to
  184. ``False``.
  185. * Third party database backends must implement support for ignoring
  186. constraints or uniqueness errors while inserting or set
  187. ``DatabaseFeatures.supports_ignore_conflicts`` to ``False``.
  188. * Third party database backends must implement introspection for
  189. ``DurationField`` or set ``DatabaseFeatures.can_introspect_duration_field``
  190. to ``False``.
  191. * ``DatabaseFeatures.uses_savepoints`` now defaults to ``True``.
  192. * Third party database backends must implement support for partial indexes or
  193. set ``DatabaseFeatures.supports_partial_indexes`` to ``False``.
  194. * ``DatabaseIntrospection.table_name_converter()`` and
  195. ``column_name_converter()`` are removed. Third party database backends may
  196. need to instead implement ``DatabaseIntrospection.identifier_converter()``.
  197. In that case, the constraint names that
  198. ``DatabaseIntrospection.get_constraints()`` returns must be normalized by
  199. ``identifier_converter()``.
  200. * SQL generation for indexes is moved from :class:`~django.db.models.Index` to
  201. ``SchemaEditor`` and these ``SchemaEditor`` methods are added:
  202. * ``_create_primary_key_sql()`` and ``_delete_primary_key_sql()``
  203. * ``_delete_index_sql()`` (to pair with ``_create_index_sql()``)
  204. * ``_delete_unique_sql`` (to pair with ``_create_unique_sql()``)
  205. * ``_delete_fk_sql()`` (to pair with ``_create_fk_sql()``)
  206. * ``_create_check_sql()`` and ``_delete_check_sql()``
  207. * The third argument of ``DatabaseWrapper.__init__()``,
  208. ``allow_thread_sharing``, is removed.
  209. Admin actions are no longer collected from base ``ModelAdmin`` classes
  210. ----------------------------------------------------------------------
  211. For example, in older versions of Django::
  212. from django.contrib import admin
  213. class BaseAdmin(admin.ModelAdmin):
  214. actions = ['a']
  215. class SubAdmin(BaseAdmin):
  216. actions = ['b']
  217. ``SubAdmin`` would have actions ``'a'`` and ``'b'``.
  218. Now ``actions`` follows standard Python inheritance. To get the same result as
  219. before::
  220. class SubAdmin(BaseAdmin):
  221. actions = BaseAdmin.actions + ['b']
  222. :mod:`django.contrib.gis`
  223. -------------------------
  224. * Support for GDAL 1.9 and 1.10 is dropped.
  225. ``TransactionTestCase`` serialized data loading
  226. -----------------------------------------------
  227. Initial data migrations are now loaded in
  228. :class:`~django.test.TransactionTestCase` at the end of the test, after the
  229. database flush. In older versions, this data was loaded at the beginning of the
  230. test, but this prevents the :option:`test --keepdb` option from working
  231. properly (the database was empty at the end of the whole test suite). This
  232. change shouldn't have an impact on your tests unless you've customized
  233. :class:`~django.test.TransactionTestCase`'s internals.
  234. ``sqlparse`` is required dependency
  235. -----------------------------------
  236. To simplify a few parts of Django's database handling, `sqlparse
  237. <https://pypi.org/project/sqlparse/>`_ is now a required dependency. It's
  238. automatically installed along with Django.
  239. ``cached_property`` aliases
  240. ---------------------------
  241. In usage like::
  242. from django.utils.functional import cached_property
  243. class A:
  244. @cached_property
  245. def base(self):
  246. return ...
  247. alias = base
  248. ``alias`` is not cached. Where the problem can be detected (Python 3.6 and
  249. later), such usage now raises ``TypeError: Cannot assign the same
  250. cached_property to two different names ('base' and 'alias').``
  251. Use this instead::
  252. import operator
  253. class A:
  254. ...
  255. alias = property(operator.attrgetter('base'))
  256. Permissions for proxy models
  257. ----------------------------
  258. :ref:`Permissions for proxy models <proxy-models-permissions-topic>` are now
  259. created using the content type of the proxy model rather than the content type
  260. of the concrete model. A migration will update existing permissions when you
  261. run :djadmin:`migrate`.
  262. In the admin, the change is transparent for proxy models having the same
  263. ``app_label`` as their concrete model. However, in older versions, users with
  264. permissions for a proxy model with a *different* ``app_label`` than its
  265. concrete model couldn't access the model in the admin. That's now fixed, but
  266. you might want to audit the permissions assignments for such proxy models
  267. (``[add|view|change|delete]_myproxy``) prior to upgrading to ensure the new
  268. access is appropriate.
  269. Finally, proxy model permission strings must be updated to use their own
  270. ``app_label``. For example, for ``app.MyProxyModel`` inheriting from
  271. ``other_app.ConcreteModel``, update
  272. ``user.has_perm('other_app.add_myproxymodel')`` to
  273. ``user.has_perm('app.add_myproxymodel')``.
  274. Merging of form ``Media`` assets
  275. --------------------------------
  276. Form ``Media`` assets are now merged using a topological sort algorithm, as the
  277. old pairwise merging algorithm is insufficient for some cases. CSS and
  278. JavaScript files which don't include their dependencies may now be sorted
  279. incorrectly (where the old algorithm produced results correctly by
  280. coincidence).
  281. Audit all ``Media`` classes for any missing dependencies. For example,
  282. widgets depending on ``django.jQuery`` must specify
  283. ``js=['admin/js/jquery.init.js', ...]`` when :ref:`declaring form media assets
  284. <assets-as-a-static-definition>`.
  285. Miscellaneous
  286. -------------
  287. * To improve readability, the ``UUIDField`` form field now displays values with
  288. dashes, e.g. ``550e8400-e29b-41d4-a716-446655440000`` instead of
  289. ``550e8400e29b41d4a716446655440000``.
  290. * On SQLite, ``PositiveIntegerField`` and ``PositiveSmallIntegerField`` now
  291. include a check constraint to prevent negative values in the database. If you
  292. have existing invalid data and run a migration that recreates a table, you'll
  293. see ``CHECK constraint failed``.
  294. * For consistency with WSGI servers, the test client now sets the
  295. ``Content-Length`` header to a string rather than an integer.
  296. * The return value of :func:`django.utils.text.slugify` is no longer marked as
  297. HTML safe.
  298. * The default truncation character used by the :tfilter:`urlizetrunc`,
  299. :tfilter:`truncatechars`, :tfilter:`truncatechars_html`,
  300. :tfilter:`truncatewords`, and :tfilter:`truncatewords_html` template filters
  301. is now the real ellipsis character (``…``) instead of 3 dots. You may have to
  302. adapt some test output comparisons.
  303. * Support for bytestring paths in the template filesystem loader is removed.
  304. * :func:`django.utils.http.urlsafe_base64_encode` now returns a string instead
  305. of a bytestring, and :func:`django.utils.http.urlsafe_base64_decode` may no
  306. longer be passed a bytestring.
  307. * Support for ``cx_Oracle`` < 6.0 is removed.
  308. * The minimum supported version of ``mysqlclient`` is increased from 1.3.7 to
  309. 1.3.13.
  310. * The minimum supported version of SQLite is increased from 3.7.15 to 3.8.3.
  311. * In an attempt to provide more semantic query data, ``NullBooleanSelect`` now
  312. renders ``<option>`` values of ``unknown``, ``true``, and ``false`` instead
  313. of ``1``, ``2``, and ``3``. For backwards compatibility, the old values are
  314. still accepted as data.
  315. * :attr:`Group.name <django.contrib.auth.models.Group.name>` ``max_length``
  316. is increased from 80 to 150 characters.
  317. * Tests that violate deferrable database constraints now error when run on
  318. SQLite 3.20+, just like on other backends that support such constraints.
  319. * To catch usage mistakes, the test :class:`~django.test.Client` and
  320. :func:`django.utils.http.urlencode` now raise ``TypeError`` if ``None`` is
  321. passed as a value to encode because ``None`` can't be encoded in GET and POST
  322. data. Either pass an empty string or omit the value.
  323. * The :djadmin:`ping_google` management command now defaults to ``https``
  324. instead of ``http`` for the sitemap's URL. If your site uses http, use the
  325. new :option:`ping_google --sitemap-uses-http` option. If you use the
  326. :func:`~django.contrib.sitemaps.ping_google` function, set the new
  327. ``sitemap_uses_https`` argument to ``False``.
  328. * :djadmin:`runserver` no longer supports `pyinotify` (replaced by Watchman).
  329. * The :class:`~django.db.models.Avg`, :class:`~django.db.models.StdDev`, and
  330. :class:`~django.db.models.Variance` aggregate functions now return a
  331. ``Decimal`` instead of a ``float`` when the input is ``Decimal``.
  332. * Tests will fail on SQLite if apps without migrations have relations to apps
  333. with migrations. This has been a documented restriction since migrations were
  334. added in Django 1.7, but it fails more reliably now. You'll see tests failing
  335. with errors like ``no such table: <app_label>_<model>``. This was observed
  336. with several third-party apps that had models in tests without migrations.
  337. You must add migrations for such models.
  338. .. _deprecated-features-2.2:
  339. Features deprecated in 2.2
  340. ==========================
  341. Model ``Meta.ordering`` will no longer affect ``GROUP BY`` queries
  342. ------------------------------------------------------------------
  343. A model's ``Meta.ordering`` affecting ``GROUP BY`` queries (such as
  344. ``.annotate().values()``) is a common source of confusion. Such queries now
  345. issue a deprecation warning with the advice to add an ``order_by()`` to retain
  346. the current query. ``Meta.ordering`` will be ignored in such queries starting
  347. in Django 3.1.
  348. Miscellaneous
  349. -------------
  350. * ``django.utils.timezone.FixedOffset`` is deprecated in favor of
  351. :class:`datetime.timezone`.
  352. * The undocumented ``QuerySetPaginator`` alias of
  353. ``django.core.paginator.Paginator`` is deprecated.
  354. * The ``FloatRangeField`` model and form fields in ``django.contrib.postgres``
  355. are deprecated in favor of a new name, ``DecimalRangeField``, to match the
  356. underlying ``numrange`` data type used in the database.
  357. * The ``FILE_CHARSET`` setting is deprecated. Starting with Django 3.1, files
  358. read from disk must be UTF-8 encoded.
  359. * ``django.contrib.staticfiles.storage.CachedStaticFilesStorage`` is
  360. deprecated due to the intractable problems that it has. Use
  361. :class:`.ManifestStaticFilesStorage` or a third-party cloud storage instead.
  362. * :meth:`.RemoteUserBackend.configure_user` is now passed ``request`` as the
  363. first positional argument, if it accepts it. Support for overrides that don't
  364. accept it will be removed in Django 3.1.
  365. * The ``SimpleTestCase.allow_database_queries``,
  366. ``TransactionTestCase.multi_db``, and ``TestCase.multi_db``
  367. attributes are deprecated in favor of :attr:`.SimpleTestCase.databases`,
  368. :attr:`.TransactionTestCase.databases`, and :attr:`.TestCase.databases`.
  369. These new attributes allow databases dependencies to be declared in order to
  370. prevent unexpected queries against non-default databases to leak state
  371. between tests. The previous behavior of ``allow_database_queries=True`` and
  372. ``multi_db=True`` can be achieved by setting ``databases='__all__'``.