2.2.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. ============================================
  2. Django 2.2 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. *Expected April 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, and 3.7. We **highly recommend** and only
  19. officially support the latest release of each series.
  20. .. _whats-new-2.2:
  21. What's new in Django 2.2
  22. ========================
  23. Constraints
  24. -----------
  25. The new :class:`~django.db.models.CheckConstraint` and
  26. :class:`~django.db.models.UniqueConstraint` classes enable adding custom
  27. database constraints. Constraints are added to models using the
  28. :attr:`Meta.constraints <django.db.models.Options.constraints>` option.
  29. Minor features
  30. --------------
  31. :mod:`django.contrib.admin`
  32. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  33. * Added a CSS class to the column headers of
  34. :class:`~django.contrib.admin.TabularInline`.
  35. :mod:`django.contrib.admindocs`
  36. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  37. * ...
  38. :mod:`django.contrib.auth`
  39. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  40. * ...
  41. :mod:`django.contrib.contenttypes`
  42. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  43. * ...
  44. :mod:`django.contrib.gis`
  45. ~~~~~~~~~~~~~~~~~~~~~~~~~
  46. * Added Oracle support for the
  47. :class:`~django.contrib.gis.db.models.functions.Envelope` function.
  48. * Added SpatiaLite support for the :lookup:`coveredby` and :lookup:`covers`
  49. lookups.
  50. :mod:`django.contrib.messages`
  51. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  52. * ...
  53. :mod:`django.contrib.postgres`
  54. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  55. * The new ``ordering`` argument for
  56. :class:`~django.contrib.postgres.aggregates.ArrayAgg` and
  57. :class:`~django.contrib.postgres.aggregates.StringAgg` determines the
  58. ordering of the aggregated elements.
  59. * The new :class:`~django.contrib.postgres.indexes.BTreeIndex`,
  60. :class:`~django.contrib.postgres.indexes.HashIndex` and
  61. :class:`~django.contrib.postgres.indexes.SpGistIndex` classes allow
  62. creating ``B-Tree``, ``hash``, and ``SP-GiST`` indexes in the database.
  63. * :class:`~django.contrib.postgres.indexes.BrinIndex` now has the
  64. ``autosummarize`` parameter.
  65. * The new ``search_type`` parameter of
  66. :class:`~django.contrib.postgres.search.SearchQuery` allows searching for
  67. a phrase or raw expression.
  68. :mod:`django.contrib.redirects`
  69. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  70. * ...
  71. :mod:`django.contrib.sessions`
  72. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  73. * ...
  74. :mod:`django.contrib.sitemaps`
  75. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  76. * ...
  77. :mod:`django.contrib.sites`
  78. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  79. * ...
  80. :mod:`django.contrib.staticfiles`
  81. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  82. * Added path matching to the :option:`collectstatic --ignore` option so that
  83. patterns like ``/vendor/*.js`` can be used.
  84. :mod:`django.contrib.syndication`
  85. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  86. * ...
  87. Cache
  88. ~~~~~
  89. * ...
  90. CSRF
  91. ~~~~
  92. * ...
  93. Database backends
  94. ~~~~~~~~~~~~~~~~~
  95. * Added result streaming for :meth:`.QuerySet.iterator` on SQLite.
  96. Email
  97. ~~~~~
  98. * ...
  99. File Storage
  100. ~~~~~~~~~~~~
  101. * ...
  102. File Uploads
  103. ~~~~~~~~~~~~
  104. * ...
  105. Forms
  106. ~~~~~
  107. * ...
  108. Generic Views
  109. ~~~~~~~~~~~~~
  110. * ...
  111. Internationalization
  112. ~~~~~~~~~~~~~~~~~~~~
  113. * ...
  114. Management Commands
  115. ~~~~~~~~~~~~~~~~~~~
  116. * The new :option:`--force-color` option forces colorization of the command
  117. output.
  118. * :djadmin:`inspectdb` now creates models for foreign tables on PostgreSQL.
  119. * :option:`inspectdb --include-views` now creates models for materialized views
  120. on Oracle and PostgreSQL.
  121. * The new :option:`inspectdb --include-partitions` option allows creating
  122. models for partition tables on PostgreSQL. In older versions, models are
  123. created child tables instead the parent.
  124. * :djadmin:`inspectdb` now introspects :class:`~django.db.models.DurationField`
  125. for Oracle and PostgreSQL.
  126. * On Oracle, :djadmin:`dbshell` is wrapped with ``rlwrap``, if available.
  127. ``rlwrap`` provides a command history and editing of keyboard input.
  128. Migrations
  129. ~~~~~~~~~~
  130. * The new :option:`migrate --plan` option prints the list of migration
  131. operations that will be performed.
  132. * ``NoneType`` can now be serialized in migrations.
  133. Models
  134. ~~~~~~
  135. * Added support for PostgreSQL operator classes (:attr:`.Index.opclasses`).
  136. * Added support for partial indexes (:attr:`.Index.condition`).
  137. * Added many :ref:`math database functions <math-functions>`.
  138. * Setting the new ``ignore_conflicts`` parameter of
  139. :meth:`.QuerySet.bulk_create` to ``True`` tells the database to ignore
  140. failure to insert rows that fail uniqueness constraints or other checks.
  141. * The new :class:`~django.db.models.functions.ExtractIsoYear` function extracts
  142. ISO-8601 week-numbering years from :class:`~django.db.models.DateField` and
  143. :class:`~django.db.models.DateTimeField`, and the new :lookup:`iso_year`
  144. lookup allows querying by an ISO-8601 week-numbering year.
  145. * The new :meth:`.QuerySet.bulk_update` method allows efficiently updating
  146. specific fields on multiple model instances.
  147. * Django no longer always starts a transaction when a single query is being
  148. performed, such as ``Model.save()``, ``QuerySet.update()``, and
  149. ``Model.delete()``. This improves the performance of autocommit by reducing
  150. the number of database round trips.
  151. Requests and Responses
  152. ~~~~~~~~~~~~~~~~~~~~~~
  153. * ...
  154. Serialization
  155. ~~~~~~~~~~~~~
  156. * You can now deserialize data using natural keys containing :ref:`forward
  157. references <natural-keys-and-forward-references>` by passing
  158. ``handle_forward_references=True`` to ``serializers.deserialize()``.
  159. Additionally, :djadmin:`loaddata` handles forward references automatically.
  160. Signals
  161. ~~~~~~~
  162. * ...
  163. Templates
  164. ~~~~~~~~~
  165. * ...
  166. Tests
  167. ~~~~~
  168. * The new :meth:`.SimpleTestCase.assertURLEqual` assertion checks for a given
  169. URL, ignoring the ordering of the query string.
  170. :meth:`~.SimpleTestCase.assertRedirects` uses the new assertion.
  171. * The test :class:`~.django.test.Client` now supports automatic JSON
  172. serialization of list and tuple ``data`` when
  173. ``content_type='application/json'``.
  174. * The new :setting:`ORACLE_MANAGED_FILES <TEST_ORACLE_MANAGED_FILES>` test
  175. database setting allows using Oracle Managed Files (OMF) tablespaces.
  176. URLs
  177. ~~~~
  178. * ...
  179. Validators
  180. ~~~~~~~~~~
  181. * :class:`.MaxValueValidator`, :class:`.MinValueValidator`,
  182. :class:`.MinLengthValidator`, and :class:`.MaxLengthValidator` now accept
  183. a callable ``limit_value``.
  184. .. _backwards-incompatible-2.2:
  185. Backwards incompatible changes in 2.2
  186. =====================================
  187. Database backend API
  188. --------------------
  189. This section describes changes that may be needed in third-party database
  190. backends.
  191. * Third-party database backends must implement support for table check
  192. constraints or set ``DatabaseFeatures.supports_table_check_constraints`` to
  193. ``False``.
  194. * Third party database backends must implement support for ignoring
  195. constraints or uniqueness errors while inserting or set
  196. ``DatabaseFeatures.supports_ignore_conflicts`` to ``False``.
  197. * Third party database backends must implement introspection for
  198. ``DurationField`` or set ``DatabaseFeatures.can_introspect_duration_field``
  199. to ``False``.
  200. * ``DatabaseFeatures.uses_savepoints`` now defaults to ``True``.
  201. * Third party database backends must implement support for partial indexes or
  202. set ``DatabaseFeatures.supports_partial_indexes`` to ``False``.
  203. * Several ``SchemaEditor`` attributes are changed:
  204. * ``sql_create_check`` is replaced with ``sql_create_constraint``.
  205. * ``sql_delete_check`` is replaced with ``sql_delete_constraint``.
  206. * ``sql_create_fk`` is replaced with ``sql_foreign_key_constraint``,
  207. ``sql_constraint``, and ``sql_create_constraint``.
  208. * ``DatabaseIntrospection.table_name_converter()`` and
  209. ``column_name_converter()`` are removed. Third party database backends may
  210. need to instead implement ``DatabaseIntrospection.identifier_converter()``.
  211. In that case, the constraint names that
  212. ``DatabaseIntrospection.get_constraints()`` returns must be normalized by
  213. ``identifier_converter()``.
  214. Admin actions are no longer collected from base ``ModelAdmin`` classes
  215. ----------------------------------------------------------------------
  216. For example, in older versions of Django::
  217. from django.contrib import admin
  218. class BaseAdmin(admin.ModelAdmin):
  219. actions = ['a']
  220. class SubAdmin(BaseAdmin):
  221. actions = ['b']
  222. ``SubAdmin`` will have actions ``'a'`` and ``'b'``.
  223. Now ``actions`` follows standard Python inheritance. To get the same result as
  224. before::
  225. class SubAdmin(BaseAdmin):
  226. actions = BaseAdmin.actions + ['b']
  227. :mod:`django.contrib.gis`
  228. -------------------------
  229. * Support for GDAL 1.9 and 1.10 is dropped.
  230. ``TransactionTestCase`` serialized data loading
  231. -----------------------------------------------
  232. Initial data migrations are now loaded in
  233. :class:`~django.test.TransactionTestCase` at the end of the test, after the
  234. database flush. In older versions, this data was loaded at the beginning of the
  235. test, but this prevents the :option:`test --keepdb` option from working
  236. properly (the database was empty at the end of the whole test suite). This
  237. change shouldn't have an impact on your tests unless you've customized
  238. :class:`~django.test.TransactionTestCase`'s internals.
  239. ``sqlparse`` is required dependency
  240. -----------------------------------
  241. To simplify a few parts of Django's database handling, `sqlparse
  242. <https://pypi.org/project/sqlparse/>`_ is now a required dependency. It's
  243. automatically installed along with Django.
  244. ``cached_property`` aliases
  245. ---------------------------
  246. In usage like::
  247. from django.utils.functional import cached_property
  248. class A:
  249. @cached_property
  250. def base(self):
  251. return ...
  252. alias = base
  253. ``alias`` is not cached. Such usage now raises ``TypeError: Cannot assign the
  254. same cached_property to two different names ('base' and 'alias').`` on Python
  255. 3.6 and later.
  256. Use this instead::
  257. import operator
  258. class A:
  259. ...
  260. alias = property(operator.attrgetter('base'))
  261. Miscellaneous
  262. -------------
  263. * To improve readability, the ``UUIDField`` form field now displays values with
  264. dashes, e.g. ``550e8400-e29b-41d4-a716-446655440000`` instead of
  265. ``550e8400e29b41d4a716446655440000``.
  266. * On SQLite, ``PositiveIntegerField`` and ``PositiveSmallIntegerField`` now
  267. include a check constraint to prevent negative values in the database. If you
  268. have existing invalid data and run a migration that recreates a table, you'll
  269. see ``CHECK constraint failed``.
  270. * For consistency with WSGI servers, the test client now sets the
  271. ``Content-Length`` header to a string rather than an integer.
  272. * The return value of :func:`django.utils.text.slugify` is no longer marked as
  273. HTML safe.
  274. * The default truncation character used by the :tfilter:`urlizetrunc`,
  275. :tfilter:`truncatechars`, :tfilter:`truncatechars_html`,
  276. :tfilter:`truncatewords`, and :tfilter:`truncatewords_html` template filters
  277. is now the real ellipsis character (``…``) instead of 3 dots. You may have to
  278. adapt some test output comparisons.
  279. * Support for bytestring paths in the template filesystem loader is removed.
  280. * :func:`django.utils.http.urlsafe_base64_encode` now returns a string instead
  281. of a bytestring, and :func:`django.utils.http.urlsafe_base64_decode` may no
  282. longer be passed a bytestring.
  283. * Support for ``cx_Oracle`` < 6.0 is removed.
  284. * The minimum supported version of ``mysqlclient`` is increased from 1.3.7 to
  285. 1.3.13.
  286. * In an attempt to provide more semantic query data, ``NullBooleanSelect`` now
  287. renders ``<option>`` values of ``unknown``, ``true``, and ``false`` instead
  288. of ``1``, ``2``, and ``3``. For backwards compatibility, the old values are
  289. still accepted as data.
  290. * :attr:`Group.name <django.contrib.auth.models.Group.name>` ``max_length``
  291. is increased from 80 to 150 characters.
  292. .. _deprecated-features-2.2:
  293. Features deprecated in 2.2
  294. ==========================
  295. Model ``Meta.ordering`` will no longer affect ``GROUP BY`` queries
  296. ------------------------------------------------------------------
  297. A model's ``Meta.ordering`` affecting ``GROUP BY`` queries (such as
  298. ``.annotate().values()``) is a common source of confusion. Such queries now
  299. issue a deprecation warning with the advice to add an ``order_by()`` to retain
  300. the current query. ``Meta.ordering`` will be ignored in such queries starting
  301. in Django 3.1.
  302. Miscellaneous
  303. -------------
  304. * ``django.utils.timezone.FixedOffset`` is deprecated in favor of
  305. :class:`datetime.timezone`.
  306. * The undocumented ``QuerySetPaginator`` alias of
  307. ``django.core.paginator.Paginator`` is deprecated.
  308. * The ``FloatRangeField`` model and form fields in ``django.contrib.postgres``
  309. are deprecated in favor of a new name, ``DecimalRangeField``, to match the
  310. underlying ``numrange`` data type used in the database.
  311. * The ``FILE_CHARSET`` setting is deprecated. Starting with Django 3.1, files
  312. read from disk must be UTF-8 encoded.
  313. * ``django.contrib.staticfiles.storage.CachedStaticFilesStorage`` is
  314. deprecated due to the intractable problems that is has. Use
  315. :class:`.ManifestStaticFilesStorage` or a third-party cloud storage instead.