2.2.txt 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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. Check Constraints
  24. -----------------
  25. The new :class:`~django.db.models.CheckConstraint` class enables adding custom
  26. database constraints. Constraints are added to models using the
  27. :attr:`Meta.constraints <django.db.models.Options.constraints>` option.
  28. Minor features
  29. --------------
  30. :mod:`django.contrib.admin`
  31. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  32. * ...
  33. :mod:`django.contrib.admindocs`
  34. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  35. * ...
  36. :mod:`django.contrib.auth`
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. * ...
  39. :mod:`django.contrib.contenttypes`
  40. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  41. * ...
  42. :mod:`django.contrib.gis`
  43. ~~~~~~~~~~~~~~~~~~~~~~~~~
  44. * Added Oracle support for the
  45. :class:`~django.contrib.gis.db.models.functions.Envelope` function.
  46. * Added SpatiaLite support for the :lookup:`coveredby` and :lookup:`covers`
  47. lookups.
  48. :mod:`django.contrib.messages`
  49. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  50. * ...
  51. :mod:`django.contrib.postgres`
  52. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  53. * The new ``ordering`` argument for
  54. :class:`~django.contrib.postgres.aggregates.ArrayAgg` and
  55. :class:`~django.contrib.postgres.aggregates.StringAgg` determines the
  56. ordering of the aggregated elements.
  57. * The new :class:`~django.contrib.postgres.indexes.BTreeIndex`,
  58. :class:`~django.contrib.postgres.indexes.HashIndex` and
  59. :class:`~django.contrib.postgres.indexes.SpGistIndex` classes allow
  60. creating ``B-Tree``, ``hash``, and ``SP-GiST`` indexes in the database.
  61. * :class:`~django.contrib.postgres.indexes.BrinIndex` now has the
  62. ``autosummarize`` parameter.
  63. :mod:`django.contrib.redirects`
  64. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  65. * ...
  66. :mod:`django.contrib.sessions`
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  68. * ...
  69. :mod:`django.contrib.sitemaps`
  70. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  71. * ...
  72. :mod:`django.contrib.sites`
  73. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  74. * ...
  75. :mod:`django.contrib.staticfiles`
  76. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  77. * Added path matching to the :option:`collectstatic --ignore` option so that
  78. patterns like ``/vendor/*.js`` can be used.
  79. :mod:`django.contrib.syndication`
  80. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  81. * ...
  82. Cache
  83. ~~~~~
  84. * ...
  85. CSRF
  86. ~~~~
  87. * ...
  88. Database backends
  89. ~~~~~~~~~~~~~~~~~
  90. * Added result streaming for :meth:`.QuerySet.iterator` on SQLite.
  91. Email
  92. ~~~~~
  93. * ...
  94. File Storage
  95. ~~~~~~~~~~~~
  96. * ...
  97. File Uploads
  98. ~~~~~~~~~~~~
  99. * ...
  100. Forms
  101. ~~~~~
  102. * ...
  103. Generic Views
  104. ~~~~~~~~~~~~~
  105. * ...
  106. Internationalization
  107. ~~~~~~~~~~~~~~~~~~~~
  108. * ...
  109. Management Commands
  110. ~~~~~~~~~~~~~~~~~~~
  111. * The new :option:`--force-color` option forces colorization of the command
  112. output.
  113. Migrations
  114. ~~~~~~~~~~
  115. * The new :option:`migrate --plan` option prints the list of migration
  116. operations that will be performed.
  117. Models
  118. ~~~~~~
  119. * Added support for PostgreSQL operator classes (:attr:`.Index.opclasses`).
  120. * Added many :ref:`math database functions <math-functions>`.
  121. * Setting the new ``ignore_conflicts`` parameter of
  122. :meth:`.QuerySet.bulk_create` to ``True`` tells the database to ignore
  123. failure to insert rows that fail uniqueness constraints or other checks.
  124. * The new :class:`~django.db.models.functions.ExtractIsoYear` function extracts
  125. ISO-8601 week-numbering years from :class:`~django.db.models.DateField` and
  126. :class:`~django.db.models.DateTimeField`, and the new :lookup:`iso_year`
  127. lookup allows querying by an ISO-8601 week-numbering year.
  128. Requests and Responses
  129. ~~~~~~~~~~~~~~~~~~~~~~
  130. * ...
  131. Serialization
  132. ~~~~~~~~~~~~~
  133. * You can now deserialize data using natural keys containing :ref:`forward
  134. references <natural-keys-and-forward-references>` by passing
  135. ``handle_forward_references=True`` to ``serializers.deserialize()``.
  136. Additionally, :djadmin:`loaddata` handles forward references automatically.
  137. Signals
  138. ~~~~~~~
  139. * ...
  140. Templates
  141. ~~~~~~~~~
  142. * ...
  143. Tests
  144. ~~~~~
  145. * The new :meth:`.SimpleTestCase.assertURLEqual` assertion checks for a given
  146. URL, ignoring the ordering of the query string.
  147. :meth:`~.SimpleTestCase.assertRedirects` uses the new assertion.
  148. * The test :class:`~.django.test.Client` now supports automatic JSON
  149. serialization of list and tuple ``data`` when
  150. ``content_type='application/json'``.
  151. URLs
  152. ~~~~
  153. * ...
  154. Validators
  155. ~~~~~~~~~~
  156. * ...
  157. .. _backwards-incompatible-2.2:
  158. Backwards incompatible changes in 2.2
  159. =====================================
  160. Database backend API
  161. --------------------
  162. * Third-party database backends must implement support for table check
  163. constraints or set ``DatabaseFeatures.supports_table_check_constraints`` to
  164. ``False``.
  165. * Third party database backends must implement support for ignoring
  166. constraints or uniqueness errors while inserting or set
  167. ``DatabaseFeatures.supports_ignore_conflicts`` to ``False``.
  168. :mod:`django.contrib.gis`
  169. -------------------------
  170. * Support for GDAL 1.9 and 1.10 is dropped.
  171. Miscellaneous
  172. -------------
  173. * To improve readability, the ``UUIDField`` form field now displays values with
  174. dashes, e.g. ``550e8400-e29b-41d4-a716-446655440000`` instead of
  175. ``550e8400e29b41d4a716446655440000``.
  176. * On SQLite, ``PositiveIntegerField`` and ``PositiveSmallIntegerField`` now
  177. include a check constraint to prevent negative values in the database. If you
  178. have existing invalid data and run a migration that recreates a table, you'll
  179. see ``CHECK constraint failed``.
  180. * For consistency with WSGI servers, the test client now sets the
  181. ``Content-Length`` header to a string rather than an integer.
  182. * The return value of :func:`django.utils.text.slugify` is no longer marked as
  183. HTML safe.
  184. * The default truncation character used by the :tfilter:`urlizetrunc`,
  185. :tfilter:`truncatechars`, :tfilter:`truncatechars_html`,
  186. :tfilter:`truncatewords`, and :tfilter:`truncatewords_html` template filters
  187. is now the real ellipsis character (``…``) instead of 3 dots. You may have to
  188. adapt some test output comparisons.
  189. .. _deprecated-features-2.2:
  190. Features deprecated in 2.2
  191. ==========================
  192. Model ``Meta.ordering`` will no longer affect ``GROUP BY`` queries
  193. ------------------------------------------------------------------
  194. A model's ``Meta.ordering`` affecting ``GROUP BY`` queries (such as
  195. ``.annotate().values()``) is a common source of confusion. Such queries now
  196. issue a deprecation warning with the advice to add an ``order_by()`` to retain
  197. the current query. ``Meta.ordering`` will be ignored in such queries starting
  198. in Django 3.1.
  199. Miscellaneous
  200. -------------
  201. * ``django.utils.timezone.FixedOffset`` is deprecated in favor of
  202. :class:`datetime.timezone`.
  203. * The undocumented ``QuerySetPaginator`` alias of
  204. ``django.core.paginator.Paginator`` is deprecated.