1.10.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. =============================================
  2. Django 1.10 release notes - UNDER DEVELOPMENT
  3. =============================================
  4. Welcome to Django 1.10!
  5. These release notes cover the `new features`_, as well as some `backwards
  6. incompatible changes`_ you'll want to be aware of when upgrading from Django
  7. 1.9 or older versions. We've :ref:`dropped some features<removed-features-1.10>`
  8. that have reached the end of their deprecation cycle, and we've `begun the
  9. deprecation process for some features`_.
  10. .. _`new features`: `What's new in Django 1.10`_
  11. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.10`_
  12. .. _`dropped some features`: `Features removed in 1.10`_
  13. .. _`begun the deprecation process for some features`: `Features deprecated in 1.10`_
  14. Python compatibility
  15. ====================
  16. Like Django 1.9, Django 1.10 requires Python 2.7, 3.4, or 3.5. We **highly
  17. recommend** and only officially support the latest release of each series.
  18. What's new in Django 1.10
  19. =========================
  20. ...
  21. Minor features
  22. ~~~~~~~~~~~~~~
  23. :mod:`django.contrib.admin`
  24. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  25. * For sites running on a subpath, the default :attr:`URL for the "View site"
  26. link <django.contrib.admin.AdminSite.site_url>` at the top of each admin page
  27. will now point to ``request.META['SCRIPT_NAME']`` if set, instead of ``/``.
  28. * The success message that appears after adding or editing an object now
  29. contains a link to the object's change form.
  30. * All inline JavaScript is removed so you can enable the
  31. ``Content-Security-Policy`` HTTP header if you wish.
  32. :mod:`django.contrib.admindocs`
  33. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  34. * ...
  35. :mod:`django.contrib.auth`
  36. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  37. * The default iteration count for the PBKDF2 password hasher has been increased
  38. by 25%. This backwards compatible change will not affect users who have
  39. subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to change the
  40. default value.
  41. * The :func:`~django.contrib.auth.views.logout` view sends "no-cache" headers
  42. to prevent an issue where Safari caches redirects and prevents a user from
  43. being able to log out.
  44. :mod:`django.contrib.contenttypes`
  45. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  46. * ...
  47. :mod:`django.contrib.gis`
  48. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  49. * :ref:`Distance lookups <distance-lookups>` now accept expressions as the
  50. distance value parameter.
  51. * The new :attr:`GEOSGeometry.unary_union
  52. <django.contrib.gis.geos.GEOSGeometry.unary_union>` property computes the
  53. union of all the elements of this geometry.
  54. * Added the :meth:`GEOSGeometry.covers()
  55. <django.contrib.gis.geos.GEOSGeometry.covers>` binary predicate.
  56. * Added the :meth:`GDALBand.statistics()
  57. <django.contrib.gis.gdal.GDALBand.statistics>` method and
  58. :attr:`~django.contrib.gis.gdal.GDALBand.mean`
  59. and :attr:`~django.contrib.gis.gdal.GDALBand.std` attributes.
  60. * Added support for the :class:`~django.contrib.gis.db.models.MakeLine`
  61. aggregate and :class:`~django.contrib.gis.db.models.functions.GeoHash`
  62. function on SpatiaLite.
  63. * Added support for the
  64. :class:`~django.contrib.gis.db.models.functions.Difference`,
  65. :class:`~django.contrib.gis.db.models.functions.Intersection`, and
  66. :class:`~django.contrib.gis.db.models.functions.SymDifference`
  67. functions on MySQL.
  68. :mod:`django.contrib.messages`
  69. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  70. * ...
  71. :mod:`django.contrib.postgres`
  72. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  73. * ...
  74. :mod:`django.contrib.redirects`
  75. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  76. * ...
  77. :mod:`django.contrib.sessions`
  78. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  79. * The :djadmin:`clearsessions` management command now removes file-based
  80. sessions.
  81. :mod:`django.contrib.sitemaps`
  82. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  83. * ...
  84. :mod:`django.contrib.sites`
  85. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  86. * The :class:`~django.contrib.sites.models.Site` model now supports
  87. :ref:`natural keys <topics-serialization-natural-keys>`.
  88. :mod:`django.contrib.staticfiles`
  89. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  90. * The :ttag:`static` template tag now uses ``django.contrib.staticfiles``
  91. if it's in ``INSTALLED_APPS``. This is especially useful for third-party apps
  92. which can now always use ``{% load static %}`` (instead of
  93. ``{% load staticfiles %}`` or ``{% load static from staticfiles %}``) and
  94. not worry about whether or not the ``staticfiles`` app is installed.
  95. :mod:`django.contrib.syndication`
  96. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  97. * ...
  98. Cache
  99. ^^^^^
  100. * The file-based cache backend now uses the highest pickling protocol.
  101. CSRF
  102. ^^^^
  103. * The default :setting:`CSRF_FAILURE_VIEW`, ``views.csrf.csrf_failure()`` now
  104. accepts an optional ``template_name`` parameter, defaulting to
  105. ``'403_csrf.html'``, to control the template used to render the page.
  106. Database backends
  107. ^^^^^^^^^^^^^^^^^
  108. * ...
  109. Email
  110. ^^^^^
  111. * ...
  112. File Storage
  113. ^^^^^^^^^^^^
  114. * ...
  115. File Uploads
  116. ^^^^^^^^^^^^
  117. * ...
  118. Forms
  119. ^^^^^
  120. * Form and widget ``Media`` is now served using
  121. :mod:`django.contrib.staticfiles` if installed.
  122. Generic Views
  123. ^^^^^^^^^^^^^
  124. * ...
  125. Internationalization
  126. ^^^^^^^^^^^^^^^^^^^^
  127. * ...
  128. Management Commands
  129. ^^^^^^^^^^^^^^^^^^^
  130. * The new :djadminopt:`--fail-level` option of the :djadmin:`check` command
  131. allows specifying the message level that will cause the command to exit with
  132. a non-zero status.
  133. * The new :djadminopt:`makemigrations --check <--check>` option makes the
  134. command exit with a non-zero status when model changes without migrations are
  135. detected.
  136. Migrations
  137. ^^^^^^^^^^
  138. * Added support for serialization of ``enum.Enum`` objects.
  139. Models
  140. ^^^^^^
  141. * Reverse foreign keys from proxy models are now propagated to their
  142. concrete class. The reverse relation attached by a
  143. :class:`~django.db.models.ForeignKey` pointing to a proxy model is now
  144. accessible as a descriptor on the proxied model class and may be referenced in
  145. queryset filtering.
  146. * The new :meth:`Field.rel_db_type() <django.db.models.Field.rel_db_type>`
  147. method returns the database column data type for fields such as ``ForeignKey``
  148. and ``OneToOneField`` that point to another field.
  149. * The :attr:`~django.db.models.Func.arity` class attribute is added to
  150. :class:`~django.db.models.Func`. This attribute can be used to set the number
  151. of arguments the function accepts.
  152. Requests and Responses
  153. ^^^^^^^^^^^^^^^^^^^^^^
  154. * Added ``request.user`` to the debug view.
  155. * Added :class:`~django.http.HttpResponse` methods
  156. :meth:`~django.http.HttpResponse.readable()` and
  157. :meth:`~django.http.HttpResponse.seekable()` to make an instance a
  158. stream-like object and allow wrapping it with :py:class:`io.TextIOWrapper`.
  159. Serialization
  160. ^^^^^^^^^^^^^
  161. * The ``django.core.serializers.json.DjangoJSONEncoder`` now knows how to
  162. serialize lazy strings, typically used for translatable content.
  163. Signals
  164. ^^^^^^^
  165. * ...
  166. Templates
  167. ^^^^^^^^^
  168. * Added the ``autoescape`` option to the
  169. :class:`~django.template.backends.django.DjangoTemplates` backend and the
  170. :class:`~django.template.Engine` class.
  171. Tests
  172. ^^^^^
  173. * ...
  174. URLs
  175. ^^^^
  176. * An addition in :func:`django.setup()` allows URL resolving that happens
  177. outside of the request/response cycle (e.g. in management commands and
  178. standalone scripts) to take :setting:`FORCE_SCRIPT_NAME` into account when it
  179. is set.
  180. Validators
  181. ^^^^^^^^^^
  182. * :class:`~django.core.validators.URLValidator` now limits the length of
  183. domain name labels to 63 characters and the total length of domain
  184. names to 253 characters per :rfc:`1034`.
  185. Backwards incompatible changes in 1.10
  186. ======================================
  187. .. warning::
  188. In addition to the changes outlined in this section, be sure to review the
  189. :ref:`removed-features-1.10` for the features that have reached the end of
  190. their deprecation cycle and therefore been removed. If you haven't updated
  191. your code within the deprecation timeline for a given feature, its removal
  192. may appear as a backwards incompatible change.
  193. Database backend API
  194. ~~~~~~~~~~~~~~~~~~~~
  195. * ...
  196. ``select_related()`` prohibits non-relational fields for nested relations
  197. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  198. Django 1.8 added validation for non-relational fields in ``select_related()``::
  199. >>> Book.objects.select_related('title')
  200. Traceback (most recent call last):
  201. ...
  202. FieldError: Non-relational field given in select_related: 'title'
  203. But it didn't prohibit nested non-relation fields as it does now::
  204. >>> Book.objects.select_related('author__name')
  205. Traceback (most recent call last):
  206. ...
  207. FieldError: Non-relational field given in select_related: 'name'
  208. ``_meta.get_fields()`` returns consistent reverse fields for proxy models
  209. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  210. Before Django 1.10, the :meth:`~django.db.models.options.Options.get_fields`
  211. method returned different reverse fields when called on a proxy model compared
  212. to its proxied concrete class. This inconsistency was fixed by returning the
  213. full set of fields pointing to a concrete class or one of its proxies in both
  214. cases.
  215. :attr:`AbstractUser.username <django.contrib.auth.models.User.username>` ``max_length`` increased to 254
  216. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  217. A migration for :attr:`django.contrib.auth.models.User.username` is included.
  218. If you have a custom user model inheriting from ``AbstractUser``, you'll need
  219. to generate and apply a database migration for your user model.
  220. If you want to preserve the 30 character limit for usernames, use a custom form
  221. when creating a user or changing usernames::
  222. from django.contrib.auth.forms import UserCreationForm
  223. class MyUserCreationForm(UserCreationForm):
  224. username = forms.CharField(
  225. max_length=30,
  226. help_text='Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only.',
  227. )
  228. If you wish to keep this restriction in the admin, set ``UserAdmin.add_form``
  229. to use this form::
  230. from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
  231. from django.contrib.auth.models import User
  232. class UserAdmin(BaseUserAdmin):
  233. add_form = MyUserCreationForm
  234. admin.site.unregister(User)
  235. admin.site.register(User, UserAdmin)
  236. Miscellaneous
  237. ~~~~~~~~~~~~~
  238. * The ``repr()`` of a ``QuerySet`` is wrapped in ``<QuerySet >`` to
  239. disambiguate it from a plain list when debugging.
  240. * Support for SpatiaLite < 3.0 and GEOS < 3.3 is dropped.
  241. * ``utils.version.get_version()`` returns :pep:`440` compliant release
  242. candidate versions (e.g. '1.10rc1' instead of '1.10c1').
  243. * The ``LOGOUT_URL`` setting is removed as Django hasn't made use of it
  244. since pre-1.0. If you use it in your project, you can add it to your
  245. project's settings. The default value was ``'/accounts/logout/'``.
  246. * The ``add_postgis_srs()`` backwards compatibility alias for
  247. ``django.contrib.gis.utils.add_srs_entry()`` is removed.
  248. .. _deprecated-features-1.10:
  249. Features deprecated in 1.10
  250. ===========================
  251. Direct assignment to a reverse foreign key or many-to-many relation
  252. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  253. Instead of assigning related objects using direct assignment::
  254. >>> new_list = [obj1, obj2, obj3]
  255. >>> e.related_set = new_list
  256. Use the :meth:`~django.db.models.fields.related.RelatedManager.set` method
  257. added in Django 1.9::
  258. >>> e.related_set.set([obj1, obj2, obj3])
  259. This prevents confusion about an assignment resulting in an implicit save.
  260. :mod:`django.contrib.gis`
  261. ~~~~~~~~~~~~~~~~~~~~~~~~~
  262. * The ``get_srid()`` and ``set_srid()`` methods of
  263. :class:`~django.contrib.gis.geos.GEOSGeometry` are deprecated in favor
  264. of the :attr:`~django.contrib.gis.geos.GEOSGeometry.srid` property.
  265. * The ``get_x()``, ``set_x()``, ``get_y()``, ``set_y()``, ``get_z()``, and
  266. ``set_z()`` methods of :class:`~django.contrib.gis.geos.Point` are deprecated
  267. in favor of the ``x``, ``y``, and ``z`` properties.
  268. * The ``get_coords()`` and ``set_coords()`` methods of
  269. :class:`~django.contrib.gis.geos.Point` are deprecated in favor of the
  270. ``tuple`` property.
  271. * The ``cascaded_union`` property of
  272. :class:`~django.contrib.gis.geos.MultiPolygon` is deprecated in favor of the
  273. :attr:`~django.contrib.gis.geos.GEOSGeometry.unary_union` property.
  274. Miscellaneous
  275. ~~~~~~~~~~~~~
  276. * The ``makemigrations --exit`` option is deprecated in favor of the
  277. :djadminopt:`--check` option.
  278. * ``django.utils.functional.allow_lazy()`` is deprecated in favor of the new
  279. :func:`~django.utils.functional.keep_lazy` function which can be used with a
  280. more natural decorator syntax.
  281. .. _removed-features-1.10:
  282. Features removed in 1.10
  283. ========================
  284. These features have reached the end of their deprecation cycle and so have been
  285. removed in Django 1.10 (please see the :ref:`deprecation timeline
  286. <deprecation-removed-in-1.10>` for more details):
  287. * Support for calling a ``SQLCompiler`` directly as an alias for calling its
  288. ``quote_name_unless_alias`` method is removed.
  289. * The ``cycle`` and ``firstof`` template tags are removed from the ``future``
  290. template tag library.
  291. * ``django.conf.urls.patterns()`` is removed.
  292. * Support for the ``prefix`` argument to
  293. ``django.conf.urls.i18n.i18n_patterns()`` is removed.
  294. * ``SimpleTestCase.urls`` is removed.
  295. * Using an incorrect count of unpacked values in the ``for`` template tag
  296. raises an exception rather than failing silently.
  297. * The ability to :func:`~django.core.urlresolvers.reverse` URLs using a dotted
  298. Python path is removed.
  299. * Support for ``optparse`` is dropped for custom management commands.
  300. * The class ``django.core.management.NoArgsCommand`` is removed.
  301. * ``django.core.context_processors`` module is removed.
  302. * ``django.db.models.sql.aggregates`` module is removed.
  303. * ``django.contrib.gis.db.models.sql.aggregates`` module is removed.
  304. * The following methods and properties of ``django.db.sql.query.Query`` are
  305. removed:
  306. * Properties: ``aggregates`` and ``aggregate_select``
  307. * Methods: ``add_aggregate``, ``set_aggregate_mask``, and
  308. ``append_aggregate_mask``.
  309. * ``django.template.resolve_variable`` is removed.
  310. * The following private APIs are removed from
  311. :class:`django.db.models.options.Options` (``Model._meta``):
  312. * ``get_field_by_name()``
  313. * ``get_all_field_names()``
  314. * ``get_fields_with_model()``
  315. * ``get_concrete_fields_with_model()``
  316. * ``get_m2m_with_model()``
  317. * ``get_all_related_objects()``
  318. * ``get_all_related_objects_with_model()``
  319. * ``get_all_related_many_to_many_objects()``
  320. * ``get_all_related_m2m_objects_with_model()``
  321. * The ``error_message`` argument of ``django.forms.RegexField`` is removed.
  322. * The ``unordered_list`` filter no longer supports old style lists.
  323. * Support for string ``view`` arguments to ``url()`` is removed.
  324. * The backward compatible shim to rename ``django.forms.Form._has_changed()``
  325. to ``has_changed()`` is removed.
  326. * The ``removetags`` template filter is removed.
  327. * The ``remove_tags()`` and ``strip_entities()`` functions in
  328. ``django.utils.html`` is removed.
  329. * The ``is_admin_site`` argument to
  330. ``django.contrib.auth.views.password_reset()`` is removed.
  331. * ``django.db.models.field.subclassing.SubfieldBase`` is removed.
  332. * ``django.utils.checksums`` is removed.
  333. * The ``original_content_type_id`` attribute on
  334. ``django.contrib.admin.helpers.InlineAdminForm`` is removed.
  335. * The backwards compatibility shim to allow ``FormMixin.get_form()`` to be
  336. defined with no default value for its ``form_class`` argument is removed.
  337. * The following settings are removed:
  338. * ``ALLOWED_INCLUDE_ROOTS``
  339. * ``TEMPLATE_CONTEXT_PROCESSORS``
  340. * ``TEMPLATE_DEBUG``
  341. * ``TEMPLATE_DIRS``
  342. * ``TEMPLATE_LOADERS``
  343. * ``TEMPLATE_STRING_IF_INVALID``
  344. * The backwards compatibility alias ``django.template.loader.BaseLoader`` is
  345. removed.
  346. * Django template objects returned by
  347. :func:`~django.template.loader.get_template` and
  348. :func:`~django.template.loader.select_template` no longer accept a
  349. :class:`~django.template.Context` in their
  350. :meth:`~django.template.backends.base.Template.render()` method.
  351. * :doc:`Template response APIs </ref/template-response>` enforce the use of
  352. :class:`dict` and backend-dependent template objects instead of
  353. :class:`~django.template.Context` and :class:`~django.template.Template`
  354. respectively.
  355. * The ``current_app`` parameter for the following function and classes is
  356. removed:
  357. * ``django.shortcuts.render()``
  358. * ``django.template.Context()``
  359. * ``django.template.RequestContext()``
  360. * ``django.template.response.TemplateResponse()``
  361. * The ``dictionary`` and ``context_instance`` parameters for the following
  362. functions are removed:
  363. * ``django.shortcuts.render()``
  364. * ``django.shortcuts.render_to_response()``
  365. * ``django.template.loader.render_to_string()``
  366. * The ``dirs`` parameter for the following functions is removed:
  367. * ``django.template.loader.get_template()``
  368. * ``django.template.loader.select_template()``
  369. * ``django.shortcuts.render()``
  370. * ``django.shortcuts.render_to_response()``
  371. * Session verification is enabled regardless of whether or not
  372. ``'django.contrib.auth.middleware.SessionAuthenticationMiddleware'`` is in
  373. ``MIDDLEWARE_CLASSES``. ``SessionAuthenticationMiddleware`` no longer has
  374. any purpose and can be removed from ``MIDDLEWARE_CLASSES``. It's kept as
  375. a stub until Django 2.0 as a courtesy for users who don't read this note.
  376. * Private attribute ``django.db.models.Field.related`` is removed.
  377. * The ``--list`` option of the ``migrate`` management command is removed.
  378. * The ``ssi`` template tag is removed.
  379. * Support for the ``=`` comparison operator in the ``if`` template tag is
  380. removed.
  381. * The backwards compatibility shims to allow ``Storage.get_available_name()``
  382. and ``Storage.save()`` to be defined without a ``max_length`` argument are
  383. removed.
  384. * Support for the legacy ``%(<foo>)s`` syntax in ``ModelFormMixin.success_url``
  385. is removed.
  386. * ``GeoQuerySet`` aggregate methods ``collect()``, ``extent()``, ``extent3d()``,
  387. ``make_line()``, and ``unionagg()`` are removed.
  388. * The ability to specify ``ContentType.name`` when creating a content type
  389. instance is removed.
  390. * Support for the old signature of ``allow_migrate`` is removed.
  391. * Support for the syntax of ``{% cycle %}`` that uses comma-separated arguments
  392. is removed.
  393. * The warning that :class:`~django.core.signing.Signer` issued when given an
  394. invalid separator is now a ``ValueError``.