2.2.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  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. * The new :attr:`.ResolverMatch.route` attribute stores the route of the
  179. matching URL pattern.
  180. Validators
  181. ~~~~~~~~~~
  182. * :class:`.MaxValueValidator`, :class:`.MinValueValidator`,
  183. :class:`.MinLengthValidator`, and :class:`.MaxLengthValidator` now accept
  184. a callable ``limit_value``.
  185. .. _backwards-incompatible-2.2:
  186. Backwards incompatible changes in 2.2
  187. =====================================
  188. Database backend API
  189. --------------------
  190. This section describes changes that may be needed in third-party database
  191. backends.
  192. * Third-party database backends must implement support for table check
  193. constraints or set ``DatabaseFeatures.supports_table_check_constraints`` to
  194. ``False``.
  195. * Third party database backends must implement support for ignoring
  196. constraints or uniqueness errors while inserting or set
  197. ``DatabaseFeatures.supports_ignore_conflicts`` to ``False``.
  198. * Third party database backends must implement introspection for
  199. ``DurationField`` or set ``DatabaseFeatures.can_introspect_duration_field``
  200. to ``False``.
  201. * ``DatabaseFeatures.uses_savepoints`` now defaults to ``True``.
  202. * Third party database backends must implement support for partial indexes or
  203. set ``DatabaseFeatures.supports_partial_indexes`` to ``False``.
  204. * Several ``SchemaEditor`` attributes are changed:
  205. * ``sql_create_check`` is replaced with ``sql_create_constraint``.
  206. * ``sql_delete_check`` is replaced with ``sql_delete_constraint``.
  207. * ``sql_create_fk`` is replaced with ``sql_foreign_key_constraint``,
  208. ``sql_constraint``, and ``sql_create_constraint``.
  209. * ``DatabaseIntrospection.table_name_converter()`` and
  210. ``column_name_converter()`` are removed. Third party database backends may
  211. need to instead implement ``DatabaseIntrospection.identifier_converter()``.
  212. In that case, the constraint names that
  213. ``DatabaseIntrospection.get_constraints()`` returns must be normalized by
  214. ``identifier_converter()``.
  215. Admin actions are no longer collected from base ``ModelAdmin`` classes
  216. ----------------------------------------------------------------------
  217. For example, in older versions of Django::
  218. from django.contrib import admin
  219. class BaseAdmin(admin.ModelAdmin):
  220. actions = ['a']
  221. class SubAdmin(BaseAdmin):
  222. actions = ['b']
  223. ``SubAdmin`` will have actions ``'a'`` and ``'b'``.
  224. Now ``actions`` follows standard Python inheritance. To get the same result as
  225. before::
  226. class SubAdmin(BaseAdmin):
  227. actions = BaseAdmin.actions + ['b']
  228. :mod:`django.contrib.gis`
  229. -------------------------
  230. * Support for GDAL 1.9 and 1.10 is dropped.
  231. ``TransactionTestCase`` serialized data loading
  232. -----------------------------------------------
  233. Initial data migrations are now loaded in
  234. :class:`~django.test.TransactionTestCase` at the end of the test, after the
  235. database flush. In older versions, this data was loaded at the beginning of the
  236. test, but this prevents the :option:`test --keepdb` option from working
  237. properly (the database was empty at the end of the whole test suite). This
  238. change shouldn't have an impact on your tests unless you've customized
  239. :class:`~django.test.TransactionTestCase`'s internals.
  240. ``sqlparse`` is required dependency
  241. -----------------------------------
  242. To simplify a few parts of Django's database handling, `sqlparse
  243. <https://pypi.org/project/sqlparse/>`_ is now a required dependency. It's
  244. automatically installed along with Django.
  245. ``cached_property`` aliases
  246. ---------------------------
  247. In usage like::
  248. from django.utils.functional import cached_property
  249. class A:
  250. @cached_property
  251. def base(self):
  252. return ...
  253. alias = base
  254. ``alias`` is not cached. Such usage now raises ``TypeError: Cannot assign the
  255. same cached_property to two different names ('base' and 'alias').`` on Python
  256. 3.6 and later.
  257. Use this instead::
  258. import operator
  259. class A:
  260. ...
  261. alias = property(operator.attrgetter('base'))
  262. Miscellaneous
  263. -------------
  264. * To improve readability, the ``UUIDField`` form field now displays values with
  265. dashes, e.g. ``550e8400-e29b-41d4-a716-446655440000`` instead of
  266. ``550e8400e29b41d4a716446655440000``.
  267. * On SQLite, ``PositiveIntegerField`` and ``PositiveSmallIntegerField`` now
  268. include a check constraint to prevent negative values in the database. If you
  269. have existing invalid data and run a migration that recreates a table, you'll
  270. see ``CHECK constraint failed``.
  271. * For consistency with WSGI servers, the test client now sets the
  272. ``Content-Length`` header to a string rather than an integer.
  273. * The return value of :func:`django.utils.text.slugify` is no longer marked as
  274. HTML safe.
  275. * The default truncation character used by the :tfilter:`urlizetrunc`,
  276. :tfilter:`truncatechars`, :tfilter:`truncatechars_html`,
  277. :tfilter:`truncatewords`, and :tfilter:`truncatewords_html` template filters
  278. is now the real ellipsis character (``…``) instead of 3 dots. You may have to
  279. adapt some test output comparisons.
  280. * Support for bytestring paths in the template filesystem loader is removed.
  281. * :func:`django.utils.http.urlsafe_base64_encode` now returns a string instead
  282. of a bytestring, and :func:`django.utils.http.urlsafe_base64_decode` may no
  283. longer be passed a bytestring.
  284. * Support for ``cx_Oracle`` < 6.0 is removed.
  285. * The minimum supported version of ``mysqlclient`` is increased from 1.3.7 to
  286. 1.3.13.
  287. * In an attempt to provide more semantic query data, ``NullBooleanSelect`` now
  288. renders ``<option>`` values of ``unknown``, ``true``, and ``false`` instead
  289. of ``1``, ``2``, and ``3``. For backwards compatibility, the old values are
  290. still accepted as data.
  291. * :attr:`Group.name <django.contrib.auth.models.Group.name>` ``max_length``
  292. is increased from 80 to 150 characters.
  293. .. _deprecated-features-2.2:
  294. Features deprecated in 2.2
  295. ==========================
  296. Model ``Meta.ordering`` will no longer affect ``GROUP BY`` queries
  297. ------------------------------------------------------------------
  298. A model's ``Meta.ordering`` affecting ``GROUP BY`` queries (such as
  299. ``.annotate().values()``) is a common source of confusion. Such queries now
  300. issue a deprecation warning with the advice to add an ``order_by()`` to retain
  301. the current query. ``Meta.ordering`` will be ignored in such queries starting
  302. in Django 3.1.
  303. Miscellaneous
  304. -------------
  305. * ``django.utils.timezone.FixedOffset`` is deprecated in favor of
  306. :class:`datetime.timezone`.
  307. * The undocumented ``QuerySetPaginator`` alias of
  308. ``django.core.paginator.Paginator`` is deprecated.
  309. * The ``FloatRangeField`` model and form fields in ``django.contrib.postgres``
  310. are deprecated in favor of a new name, ``DecimalRangeField``, to match the
  311. underlying ``numrange`` data type used in the database.
  312. * The ``FILE_CHARSET`` setting is deprecated. Starting with Django 3.1, files
  313. read from disk must be UTF-8 encoded.
  314. * ``django.contrib.staticfiles.storage.CachedStaticFilesStorage`` is
  315. deprecated due to the intractable problems that is has. Use
  316. :class:`.ManifestStaticFilesStorage` or a third-party cloud storage instead.