1.10.txt 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  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. * The new :attr:`InlineModelAdmin.classes
  33. <django.contrib.admin.InlineModelAdmin.classes>` attribute allows specifying
  34. classes on inline fieldsets. Inlines with a ``collapse`` class will be
  35. initially collapsed and their header will have a small "show" link.
  36. * If a user doesn't have the add permission, the ``object-tools`` block on a
  37. model's changelist will now be rendered (without the add button, of course).
  38. This makes it easier to add custom tools in this case.
  39. * The :class:`~django.contrib.admin.models.LogEntry` model now stores change
  40. messages in a JSON structure so that the message can be dynamically translated
  41. using the current active language. A new ``LogEntry.get_change_message()``
  42. method is now the preferred way of retrieving the change message.
  43. :mod:`django.contrib.admindocs`
  44. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  45. * ...
  46. :mod:`django.contrib.auth`
  47. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. * The default iteration count for the PBKDF2 password hasher has been increased
  49. by 25%. This backwards compatible change will not affect users who have
  50. subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to change the
  51. default value.
  52. * The :func:`~django.contrib.auth.views.logout` view sends "no-cache" headers
  53. to prevent an issue where Safari caches redirects and prevents a user from
  54. being able to log out.
  55. * Added the optional ``backend`` argument to :func:`~django.contrib.auth.login`
  56. to allow using it without credentials.
  57. :mod:`django.contrib.contenttypes`
  58. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59. * ...
  60. :mod:`django.contrib.gis`
  61. ~~~~~~~~~~~~~~~~~~~~~~~~~
  62. * :ref:`Distance lookups <distance-lookups>` now accept expressions as the
  63. distance value parameter.
  64. * The new :attr:`GEOSGeometry.unary_union
  65. <django.contrib.gis.geos.GEOSGeometry.unary_union>` property computes the
  66. union of all the elements of this geometry.
  67. * Added the :meth:`GEOSGeometry.covers()
  68. <django.contrib.gis.geos.GEOSGeometry.covers>` binary predicate.
  69. * Added the :meth:`GDALBand.statistics()
  70. <django.contrib.gis.gdal.GDALBand.statistics>` method and
  71. :attr:`~django.contrib.gis.gdal.GDALBand.mean`
  72. and :attr:`~django.contrib.gis.gdal.GDALBand.std` attributes.
  73. * Added support for the :class:`~django.contrib.gis.db.models.MakeLine`
  74. aggregate and :class:`~django.contrib.gis.db.models.functions.GeoHash`
  75. function on SpatiaLite.
  76. * Added support for the
  77. :class:`~django.contrib.gis.db.models.functions.Difference`,
  78. :class:`~django.contrib.gis.db.models.functions.Intersection`, and
  79. :class:`~django.contrib.gis.db.models.functions.SymDifference`
  80. functions on MySQL.
  81. * Added support for instantiating empty GEOS geometries.
  82. * The new :attr:`~django.contrib.gis.geos.WKTWriter.trim` and
  83. :attr:`~django.contrib.gis.geos.WKTWriter.precision` properties
  84. of :class:`~django.contrib.gis.geos.WKTWriter` allow controlling
  85. output of the fractional part of the coordinates in WKT.
  86. * Added the :attr:`LineString.closed
  87. <django.contrib.gis.geos.LineString.closed>` and
  88. :attr:`MultiLineString.closed
  89. <django.contrib.gis.geos.MultiLineString.closed>` properties.
  90. :mod:`django.contrib.messages`
  91. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  92. * ...
  93. :mod:`django.contrib.postgres`
  94. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  95. * ...
  96. :mod:`django.contrib.redirects`
  97. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  98. * ...
  99. :mod:`django.contrib.sessions`
  100. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  101. * The :djadmin:`clearsessions` management command now removes file-based
  102. sessions.
  103. :mod:`django.contrib.sitemaps`
  104. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  105. * ...
  106. :mod:`django.contrib.sites`
  107. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  108. * The :class:`~django.contrib.sites.models.Site` model now supports
  109. :ref:`natural keys <topics-serialization-natural-keys>`.
  110. :mod:`django.contrib.staticfiles`
  111. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  112. * The :ttag:`static` template tag now uses ``django.contrib.staticfiles``
  113. if it's in ``INSTALLED_APPS``. This is especially useful for third-party apps
  114. which can now always use ``{% load static %}`` (instead of
  115. ``{% load staticfiles %}`` or ``{% load static from staticfiles %}``) and
  116. not worry about whether or not the ``staticfiles`` app is installed.
  117. :mod:`django.contrib.syndication`
  118. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  119. * ...
  120. Cache
  121. ~~~~~
  122. * The file-based cache backend now uses the highest pickling protocol.
  123. CSRF
  124. ~~~~
  125. * The default :setting:`CSRF_FAILURE_VIEW`, ``views.csrf.csrf_failure()`` now
  126. accepts an optional ``template_name`` parameter, defaulting to
  127. ``'403_csrf.html'``, to control the template used to render the page.
  128. Database backends
  129. ~~~~~~~~~~~~~~~~~
  130. * ...
  131. Email
  132. ~~~~~
  133. * ...
  134. File Storage
  135. ~~~~~~~~~~~~
  136. * ...
  137. File Uploads
  138. ~~~~~~~~~~~~
  139. * ...
  140. Forms
  141. ~~~~~
  142. * Form and widget ``Media`` is now served using
  143. :mod:`django.contrib.staticfiles` if installed.
  144. Generic Views
  145. ~~~~~~~~~~~~~
  146. * The :class:`~django.views.generic.base.View` class can now be imported from
  147. ``django.views``.
  148. Internationalization
  149. ~~~~~~~~~~~~~~~~~~~~
  150. * ...
  151. Management Commands
  152. ~~~~~~~~~~~~~~~~~~~
  153. * The new :option:`check --fail-level` option allows specifying the message
  154. level that will cause the command to exit with a non-zero status.
  155. * The new :option:`makemigrations --check` option makes the command exit
  156. with a non-zero status when model changes without migrations are detected.
  157. * :djadmin:`makemigrations` now displays the path to the migration files that
  158. it generates.
  159. * The :option:`shell --interface` option now accepts ``python`` to force use of
  160. the "plain" Python interpreter.
  161. * The new :option:`shell --command` option lets you run a command as Django and
  162. exit, instead of opening the interactive shell.
  163. Migrations
  164. ~~~~~~~~~~
  165. * Added support for serialization of ``enum.Enum`` objects.
  166. * Added the ``elidable`` argument to the
  167. :class:`~django.db.migrations.operations.RunSQL` and
  168. :class:`~django.db.migrations.operations.RunPython` operations to allow them
  169. to be removed when squashing migrations.
  170. Models
  171. ~~~~~~
  172. * Reverse foreign keys from proxy models are now propagated to their
  173. concrete class. The reverse relation attached by a
  174. :class:`~django.db.models.ForeignKey` pointing to a proxy model is now
  175. accessible as a descriptor on the proxied model class and may be referenced in
  176. queryset filtering.
  177. * The new :meth:`Field.rel_db_type() <django.db.models.Field.rel_db_type>`
  178. method returns the database column data type for fields such as ``ForeignKey``
  179. and ``OneToOneField`` that point to another field.
  180. * The :attr:`~django.db.models.Func.arity` class attribute is added to
  181. :class:`~django.db.models.Func`. This attribute can be used to set the number
  182. of arguments the function accepts.
  183. * Added :class:`~django.db.models.BigAutoField` which acts much like an
  184. :class:`~django.db.models.AutoField` except that it is guaranteed
  185. to fit numbers from ``1`` to ``9223372036854775807``.
  186. * :meth:`QuerySet.in_bulk() <django.db.models.query.QuerySet.in_bulk>`
  187. may be called without any arguments to return all objects in the queryset.
  188. * :attr:`~django.db.models.ForeignKey.related_query_name` now supports
  189. app label and class interpolation using the ``'%(app_label)s'`` and
  190. ``'%(class)s'`` strings.
  191. Requests and Responses
  192. ~~~~~~~~~~~~~~~~~~~~~~
  193. * Added ``request.user`` to the debug view.
  194. * Added :class:`~django.http.HttpResponse` methods
  195. :meth:`~django.http.HttpResponse.readable()` and
  196. :meth:`~django.http.HttpResponse.seekable()` to make an instance a
  197. stream-like object and allow wrapping it with :py:class:`io.TextIOWrapper`.
  198. Serialization
  199. ~~~~~~~~~~~~~
  200. * The ``django.core.serializers.json.DjangoJSONEncoder`` now knows how to
  201. serialize lazy strings, typically used for translatable content.
  202. Signals
  203. ~~~~~~~
  204. * ...
  205. Templates
  206. ~~~~~~~~~
  207. * Added the ``autoescape`` option to the
  208. :class:`~django.template.backends.django.DjangoTemplates` backend and the
  209. :class:`~django.template.Engine` class.
  210. * Added the ``is`` comparison operator to the :ttag:`if` tag.
  211. Tests
  212. ~~~~~
  213. * ...
  214. URLs
  215. ~~~~
  216. * An addition in :func:`django.setup()` allows URL resolving that happens
  217. outside of the request/response cycle (e.g. in management commands and
  218. standalone scripts) to take :setting:`FORCE_SCRIPT_NAME` into account when it
  219. is set.
  220. Validators
  221. ~~~~~~~~~~
  222. * :class:`~django.core.validators.URLValidator` now limits the length of
  223. domain name labels to 63 characters and the total length of domain
  224. names to 253 characters per :rfc:`1034`.
  225. Backwards incompatible changes in 1.10
  226. ======================================
  227. .. warning::
  228. In addition to the changes outlined in this section, be sure to review the
  229. :ref:`removed-features-1.10` for the features that have reached the end of
  230. their deprecation cycle and therefore been removed. If you haven't updated
  231. your code within the deprecation timeline for a given feature, its removal
  232. may appear as a backwards incompatible change.
  233. Database backend API
  234. --------------------
  235. * ...
  236. ``select_related()`` prohibits non-relational fields for nested relations
  237. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  238. Django 1.8 added validation for non-relational fields in ``select_related()``::
  239. >>> Book.objects.select_related('title')
  240. Traceback (most recent call last):
  241. ...
  242. FieldError: Non-relational field given in select_related: 'title'
  243. But it didn't prohibit nested non-relation fields as it does now::
  244. >>> Book.objects.select_related('author__name')
  245. Traceback (most recent call last):
  246. ...
  247. FieldError: Non-relational field given in select_related: 'name'
  248. ``_meta.get_fields()`` returns consistent reverse fields for proxy models
  249. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  250. Before Django 1.10, the :meth:`~django.db.models.options.Options.get_fields`
  251. method returned different reverse fields when called on a proxy model compared
  252. to its proxied concrete class. This inconsistency was fixed by returning the
  253. full set of fields pointing to a concrete class or one of its proxies in both
  254. cases.
  255. :attr:`AbstractUser.username <django.contrib.auth.models.User.username>` ``max_length`` increased to 150
  256. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  257. A migration for :attr:`django.contrib.auth.models.User.username` is included.
  258. If you have a custom user model inheriting from ``AbstractUser``, you'll need
  259. to generate and apply a database migration for your user model.
  260. We considered an increase to 254 characters to more easily allow the use of
  261. email addresses (which are limited to 254 characters) as usernames but rejected
  262. it due to a MySQL limitation. When using the ``utf8mb4`` encoding (recommended
  263. for proper Unicode support), MySQL can only create unique indexes with 191
  264. characters by default. Therefore, if you need a longer length, please use a
  265. custom user model.
  266. If you want to preserve the 30 character limit for usernames, use a custom form
  267. when creating a user or changing usernames::
  268. from django.contrib.auth.forms import UserCreationForm
  269. class MyUserCreationForm(UserCreationForm):
  270. username = forms.CharField(
  271. max_length=30,
  272. help_text='Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only.',
  273. )
  274. If you wish to keep this restriction in the admin, set ``UserAdmin.add_form``
  275. to use this form::
  276. from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
  277. from django.contrib.auth.models import User
  278. class UserAdmin(BaseUserAdmin):
  279. add_form = MyUserCreationForm
  280. admin.site.unregister(User)
  281. admin.site.register(User, UserAdmin)
  282. Dropped support for PostgreSQL 9.1
  283. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  284. Upstream support for PostgreSQL 9.1 ends in September 2016. As a consequence,
  285. Django 1.10 sets PostgreSQL 9.2 as the minimum version it officially supports.
  286. ``runserver`` output goes through logging
  287. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  288. Request and response handling of the ``runserver`` command is sent to the
  289. :ref:`django-server-logger` logger instead of to ``sys.stderr``. If you
  290. disable Django's logging configuration or override it with your own, you'll
  291. need to add the appropriate logging configuration if you want to see that
  292. output::
  293. 'formatters': {
  294. 'django.server': {
  295. '()': 'django.utils.log.ServerFormatter',
  296. 'format': '[%(server_time)s] %(message)s',
  297. }
  298. },
  299. 'handlers': {
  300. 'django.server': {
  301. 'level': 'INFO',
  302. 'class': 'logging.StreamHandler',
  303. 'formatter': 'django.server',
  304. },
  305. },
  306. 'loggers': {
  307. 'django.server': {
  308. 'handlers': ['django.server'],
  309. 'level': 'INFO',
  310. 'propagate': False,
  311. }
  312. }
  313. Miscellaneous
  314. ~~~~~~~~~~~~~
  315. * The ``repr()`` of a ``QuerySet`` is wrapped in ``<QuerySet >`` to
  316. disambiguate it from a plain list when debugging.
  317. * Support for SpatiaLite < 3.0 and GEOS < 3.3 is dropped.
  318. * ``utils.version.get_version()`` returns :pep:`440` compliant release
  319. candidate versions (e.g. '1.10rc1' instead of '1.10c1').
  320. * The ``LOGOUT_URL`` setting is removed as Django hasn't made use of it
  321. since pre-1.0. If you use it in your project, you can add it to your
  322. project's settings. The default value was ``'/accounts/logout/'``.
  323. * The ``add_postgis_srs()`` backwards compatibility alias for
  324. ``django.contrib.gis.utils.add_srs_entry()`` is removed.
  325. * Objects with a ``close()`` method such as files and generators passed to
  326. :class:`~django.http.HttpResponse` are now closed immediately instead of when
  327. the WSGI server calls ``close()`` on the response.
  328. * A redundant ``transaction.atomic()`` call in ``QuerySet.update_or_create()``
  329. is removed. This may affect query counts tested by
  330. ``TransactionTestCase.assertNumQueries()``.
  331. * Support for ``skip_validation`` in ``BaseCommand.execute(**options)`` is
  332. removed. Use ``skip_checks`` (added in Django 1.7) instead.
  333. * :djadmin:`loaddata` now raises a ``CommandError`` instead of showing a
  334. warning when the specified fixture file is not found.
  335. * Instead of directly accessing the ``LogEntry.change_message`` attribute, it's
  336. now better to call the ``LogEntry.get_change_message()`` method which will
  337. provide the message in the current language.
  338. * The default error views now raise ``TemplateDoesNotExist`` if a nonexistent
  339. ``template_name`` is specified.
  340. .. _deprecated-features-1.10:
  341. Features deprecated in 1.10
  342. ===========================
  343. Direct assignment to a reverse foreign key or many-to-many relation
  344. -------------------------------------------------------------------
  345. Instead of assigning related objects using direct assignment::
  346. >>> new_list = [obj1, obj2, obj3]
  347. >>> e.related_set = new_list
  348. Use the :meth:`~django.db.models.fields.related.RelatedManager.set` method
  349. added in Django 1.9::
  350. >>> e.related_set.set([obj1, obj2, obj3])
  351. This prevents confusion about an assignment resulting in an implicit save.
  352. :mod:`django.contrib.gis`
  353. -------------------------
  354. * The ``get_srid()`` and ``set_srid()`` methods of
  355. :class:`~django.contrib.gis.geos.GEOSGeometry` are deprecated in favor
  356. of the :attr:`~django.contrib.gis.geos.GEOSGeometry.srid` property.
  357. * The ``get_x()``, ``set_x()``, ``get_y()``, ``set_y()``, ``get_z()``, and
  358. ``set_z()`` methods of :class:`~django.contrib.gis.geos.Point` are deprecated
  359. in favor of the ``x``, ``y``, and ``z`` properties.
  360. * The ``get_coords()`` and ``set_coords()`` methods of
  361. :class:`~django.contrib.gis.geos.Point` are deprecated in favor of the
  362. ``tuple`` property.
  363. * The ``cascaded_union`` property of
  364. :class:`~django.contrib.gis.geos.MultiPolygon` is deprecated in favor of the
  365. :attr:`~django.contrib.gis.geos.GEOSGeometry.unary_union` property.
  366. Miscellaneous
  367. -------------
  368. * The ``makemigrations --exit`` option is deprecated in favor of the
  369. :option:`makemigrations --check` option.
  370. * ``django.utils.functional.allow_lazy()`` is deprecated in favor of the new
  371. :func:`~django.utils.functional.keep_lazy` function which can be used with a
  372. more natural decorator syntax.
  373. * The ``shell --plain`` option is deprecated in favor of ``-i python`` or
  374. ``--interface python``.
  375. * Importing from the ``django.core.urlresolvers`` module is deprecated in
  376. favor of its new location, :mod:`django.urls`.
  377. .. _removed-features-1.10:
  378. Features removed in 1.10
  379. ========================
  380. These features have reached the end of their deprecation cycle and so have been
  381. removed in Django 1.10 (please see the :ref:`deprecation timeline
  382. <deprecation-removed-in-1.10>` for more details):
  383. * Support for calling a ``SQLCompiler`` directly as an alias for calling its
  384. ``quote_name_unless_alias`` method is removed.
  385. * The ``cycle`` and ``firstof`` template tags are removed from the ``future``
  386. template tag library.
  387. * ``django.conf.urls.patterns()`` is removed.
  388. * Support for the ``prefix`` argument to
  389. ``django.conf.urls.i18n.i18n_patterns()`` is removed.
  390. * ``SimpleTestCase.urls`` is removed.
  391. * Using an incorrect count of unpacked values in the ``for`` template tag
  392. raises an exception rather than failing silently.
  393. * The ability to :func:`~django.urls.reverse` URLs using a dotted Python path
  394. is removed.
  395. * Support for ``optparse`` is dropped for custom management commands.
  396. * The class ``django.core.management.NoArgsCommand`` is removed.
  397. * ``django.core.context_processors`` module is removed.
  398. * ``django.db.models.sql.aggregates`` module is removed.
  399. * ``django.contrib.gis.db.models.sql.aggregates`` module is removed.
  400. * The following methods and properties of ``django.db.sql.query.Query`` are
  401. removed:
  402. * Properties: ``aggregates`` and ``aggregate_select``
  403. * Methods: ``add_aggregate``, ``set_aggregate_mask``, and
  404. ``append_aggregate_mask``.
  405. * ``django.template.resolve_variable`` is removed.
  406. * The following private APIs are removed from
  407. :class:`django.db.models.options.Options` (``Model._meta``):
  408. * ``get_field_by_name()``
  409. * ``get_all_field_names()``
  410. * ``get_fields_with_model()``
  411. * ``get_concrete_fields_with_model()``
  412. * ``get_m2m_with_model()``
  413. * ``get_all_related_objects()``
  414. * ``get_all_related_objects_with_model()``
  415. * ``get_all_related_many_to_many_objects()``
  416. * ``get_all_related_m2m_objects_with_model()``
  417. * The ``error_message`` argument of ``django.forms.RegexField`` is removed.
  418. * The ``unordered_list`` filter no longer supports old style lists.
  419. * Support for string ``view`` arguments to ``url()`` is removed.
  420. * The backward compatible shim to rename ``django.forms.Form._has_changed()``
  421. to ``has_changed()`` is removed.
  422. * The ``removetags`` template filter is removed.
  423. * The ``remove_tags()`` and ``strip_entities()`` functions in
  424. ``django.utils.html`` is removed.
  425. * The ``is_admin_site`` argument to
  426. ``django.contrib.auth.views.password_reset()`` is removed.
  427. * ``django.db.models.field.subclassing.SubfieldBase`` is removed.
  428. * ``django.utils.checksums`` is removed.
  429. * The ``original_content_type_id`` attribute on
  430. ``django.contrib.admin.helpers.InlineAdminForm`` is removed.
  431. * The backwards compatibility shim to allow ``FormMixin.get_form()`` to be
  432. defined with no default value for its ``form_class`` argument is removed.
  433. * The following settings are removed:
  434. * ``ALLOWED_INCLUDE_ROOTS``
  435. * ``TEMPLATE_CONTEXT_PROCESSORS``
  436. * ``TEMPLATE_DEBUG``
  437. * ``TEMPLATE_DIRS``
  438. * ``TEMPLATE_LOADERS``
  439. * ``TEMPLATE_STRING_IF_INVALID``
  440. * The backwards compatibility alias ``django.template.loader.BaseLoader`` is
  441. removed.
  442. * Django template objects returned by
  443. :func:`~django.template.loader.get_template` and
  444. :func:`~django.template.loader.select_template` no longer accept a
  445. :class:`~django.template.Context` in their
  446. :meth:`~django.template.backends.base.Template.render()` method.
  447. * :doc:`Template response APIs </ref/template-response>` enforce the use of
  448. :class:`dict` and backend-dependent template objects instead of
  449. :class:`~django.template.Context` and :class:`~django.template.Template`
  450. respectively.
  451. * The ``current_app`` parameter for the following function and classes is
  452. removed:
  453. * ``django.shortcuts.render()``
  454. * ``django.template.Context()``
  455. * ``django.template.RequestContext()``
  456. * ``django.template.response.TemplateResponse()``
  457. * The ``dictionary`` and ``context_instance`` parameters for the following
  458. functions are removed:
  459. * ``django.shortcuts.render()``
  460. * ``django.shortcuts.render_to_response()``
  461. * ``django.template.loader.render_to_string()``
  462. * The ``dirs`` parameter for the following functions is removed:
  463. * ``django.template.loader.get_template()``
  464. * ``django.template.loader.select_template()``
  465. * ``django.shortcuts.render()``
  466. * ``django.shortcuts.render_to_response()``
  467. * Session verification is enabled regardless of whether or not
  468. ``'django.contrib.auth.middleware.SessionAuthenticationMiddleware'`` is in
  469. ``MIDDLEWARE_CLASSES``. ``SessionAuthenticationMiddleware`` no longer has
  470. any purpose and can be removed from ``MIDDLEWARE_CLASSES``. It's kept as
  471. a stub until Django 2.0 as a courtesy for users who don't read this note.
  472. * Private attribute ``django.db.models.Field.related`` is removed.
  473. * The ``--list`` option of the ``migrate`` management command is removed.
  474. * The ``ssi`` template tag is removed.
  475. * Support for the ``=`` comparison operator in the ``if`` template tag is
  476. removed.
  477. * The backwards compatibility shims to allow ``Storage.get_available_name()``
  478. and ``Storage.save()`` to be defined without a ``max_length`` argument are
  479. removed.
  480. * Support for the legacy ``%(<foo>)s`` syntax in ``ModelFormMixin.success_url``
  481. is removed.
  482. * ``GeoQuerySet`` aggregate methods ``collect()``, ``extent()``, ``extent3d()``,
  483. ``make_line()``, and ``unionagg()`` are removed.
  484. * The ability to specify ``ContentType.name`` when creating a content type
  485. instance is removed.
  486. * Support for the old signature of ``allow_migrate`` is removed.
  487. * Support for the syntax of ``{% cycle %}`` that uses comma-separated arguments
  488. is removed.
  489. * The warning that :class:`~django.core.signing.Signer` issued when given an
  490. invalid separator is now a ``ValueError``.