deprecation.txt 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003
  1. ===========================
  2. Django Deprecation Timeline
  3. ===========================
  4. This document outlines when various pieces of Django will be removed or altered
  5. in a backward incompatible way, following their deprecation, as per the
  6. :ref:`deprecation policy <internal-release-deprecation-policy>`. More details
  7. about each item can often be found in the release notes of two versions prior.
  8. .. _deprecation-removed-in-3.0:
  9. 3.0
  10. ---
  11. See the :ref:`Django 2.0 release notes<deprecated-features-2.0>` for more
  12. details on these changes.
  13. * The ``django.db.backends.postgresql_psycopg2`` module will be removed.
  14. * ``django.shortcuts.render_to_response()`` will be removed.
  15. .. _deprecation-removed-in-2.1:
  16. 2.1
  17. ---
  18. See the :ref:`Django 1.11 release notes<deprecated-features-1.11>` for more
  19. details on these changes.
  20. * ``contrib.auth.views.login()``, ``logout()``, ``password_change()``,
  21. ``password_change_done()``, ``password_reset()``, ``password_reset_done()``,
  22. ``password_reset_confirm()``, and ``password_reset_complete()`` will be
  23. removed.
  24. * The ``extra_context`` parameter of ``contrib.auth.views.logout_then_login()``
  25. will be removed.
  26. * ``django.test.runner.setup_databases()`` will be removed.
  27. * ``django.utils.translation.string_concat()`` will be removed.
  28. * ``django.core.cache.backends.memcached.PyLibMCCache`` will no longer support
  29. passing ``pylibmc`` behavior settings as top-level attributes of ``OPTIONS``.
  30. * The ``host`` parameter of ``django.utils.http.is_safe_url()`` will be
  31. removed.
  32. * Silencing of exceptions raised while rendering the ``{% include %}`` template
  33. tag will be removed.
  34. * ``DatabaseIntrospection.get_indexes()`` will be removed.
  35. * The ``authenticate()`` method of authentication backends will require a
  36. ``request`` argument.
  37. * The ``django.db.models.permalink()`` decorator will be removed.
  38. * The ``USE_ETAGS`` setting will be removed. ``CommonMiddleware`` and
  39. ``django.utils.cache.patch_response_headers()`` will no longer set ETags.
  40. * The ``Model._meta.has_auto_field`` attribute will be removed.
  41. * Support for regular expression groups with ``iLmsu#`` in ``url()`` will be
  42. removed.
  43. * Support for ``Widget.render()`` methods without the ``renderer`` argument
  44. will be removed.
  45. .. _deprecation-removed-in-2.0:
  46. 2.0
  47. ---
  48. See the :ref:`Django 1.9 release notes<deprecated-features-1.9>` for more
  49. details on these changes.
  50. * The ``weak`` argument to ``django.dispatch.signals.Signal.disconnect()`` will
  51. be removed.
  52. * ``django.db.backends.base.BaseDatabaseOperations.check_aggregate_support()``
  53. will be removed.
  54. * The ``django.forms.extras`` package will be removed.
  55. * The ``assignment_tag`` helper will be removed.
  56. * The ``host`` argument to ``assertsRedirects`` will be removed. The
  57. compatibility layer which allows absolute URLs to be considered equal to
  58. relative ones when the path is identical will also be removed.
  59. * ``Field.rel`` will be removed.
  60. * ``Field.remote_field.to`` attribute will be removed.
  61. * The ``on_delete`` argument for ``ForeignKey`` and ``OneToOneField`` will be
  62. required.
  63. * ``django.db.models.fields.add_lazy_relation()`` will be removed.
  64. * When time zone support is enabled, database backends that don't support time
  65. zones won't convert aware datetimes to naive values in UTC anymore when such
  66. values are passed as parameters to SQL queries executed outside of the ORM,
  67. e.g. with ``cursor.execute()``.
  68. * The ``django.contrib.auth.tests.utils.skipIfCustomUser()`` decorator will be
  69. removed.
  70. * The ``GeoManager`` and ``GeoQuerySet`` classes will be removed.
  71. * The ``django.contrib.gis.geoip`` module will be removed.
  72. * The ``supports_recursion`` check for template loaders will be removed from:
  73. * ``django.template.engine.Engine.find_template()``
  74. * ``django.template.loader_tags.ExtendsNode.find_template()``
  75. * ``django.template.loaders.base.Loader.supports_recursion()``
  76. * ``django.template.loaders.cached.Loader.supports_recursion()``
  77. * The ``load_template()`` and ``load_template_sources()`` template loader
  78. methods will be removed.
  79. * The ``template_dirs`` argument for template loaders will be removed:
  80. * ``django.template.loaders.base.Loader.get_template()``
  81. * ``django.template.loaders.cached.Loader.cache_key()``
  82. * ``django.template.loaders.cached.Loader.get_template()``
  83. * ``django.template.loaders.cached.Loader.get_template_sources()``
  84. * ``django.template.loaders.filesystem.Loader.get_template_sources()``
  85. * The ``django.template.loaders.base.Loader.__call__()`` method will be
  86. removed.
  87. * Support for custom error views with a single positional parameter will be
  88. dropped.
  89. * The ``mime_type`` attribute of ``django.utils.feedgenerator.Atom1Feed`` and
  90. ``django.utils.feedgenerator.RssFeed`` will be removed in favor of
  91. ``content_type``.
  92. * The ``app_name`` argument to :func:`~django.conf.urls.include()` will be
  93. removed.
  94. * Support for passing a 3-tuple as the first argument to ``include()`` will
  95. be removed.
  96. * Support for setting a URL instance namespace without an application
  97. namespace will be removed.
  98. * ``Field._get_val_from_obj()`` will be removed in favor of
  99. ``Field.value_from_object()``.
  100. * ``django.template.loaders.eggs.Loader`` will be removed.
  101. * The ``current_app`` parameter to the ``contrib.auth`` views will be removed.
  102. * The ``callable_obj`` keyword argument to
  103. ``SimpleTestCase.assertRaisesMessage()`` will be removed.
  104. * Support for the ``allow_tags`` attribute on ``ModelAdmin`` methods will be
  105. removed.
  106. * The ``enclosure`` keyword argument to ``SyndicationFeed.add_item()`` will be
  107. removed.
  108. * The ``django.template.loader.LoaderOrigin`` and
  109. ``django.template.base.StringOrigin`` aliases for
  110. ``django.template.base.Origin`` will be removed.
  111. See the :ref:`Django 1.10 release notes <deprecated-features-1.10>` for more
  112. details on these changes.
  113. * The ``makemigrations --exit`` option will be removed.
  114. * Support for direct assignment to a reverse foreign key or many-to-many
  115. relation will be removed.
  116. * The ``get_srid()`` and ``set_srid()`` methods of
  117. ``django.contrib.gis.geos.GEOSGeometry`` will be removed.
  118. * The ``get_x()``, ``set_x()``, ``get_y()``, ``set_y()``, ``get_z()``, and
  119. ``set_z()`` methods of ``django.contrib.gis.geos.Point`` will be removed.
  120. * The ``get_coords()`` and ``set_coords()`` methods of
  121. ``django.contrib.gis.geos.Point`` will be removed.
  122. * The ``cascaded_union`` property of ``django.contrib.gis.geos.MultiPolygon``
  123. will be removed.
  124. * ``django.utils.functional.allow_lazy()`` will be removed.
  125. * The ``shell --plain`` option will be removed.
  126. * The ``django.core.urlresolvers`` module will be removed.
  127. * The model ``CommaSeparatedIntegerField`` will be removed. A stub field will
  128. remain for compatibility with historical migrations.
  129. * Support for the template ``Context.has_key()`` method will be removed.
  130. * Support for the ``django.core.files.storage.Storage.accessed_time()``,
  131. ``created_time()``, and ``modified_time()`` methods will be removed.
  132. * Support for query lookups using the model name when
  133. ``Meta.default_related_name`` is set will be removed.
  134. * The ``__search`` query lookup and the
  135. ``DatabaseOperations.fulltext_search_sql()`` method will be removed.
  136. * The shim for supporting custom related manager classes without a
  137. ``_apply_rel_filters()`` method will be removed.
  138. * Using ``User.is_authenticated()`` and ``User.is_anonymous()`` as methods
  139. will no longer be supported.
  140. * The private attribute ``virtual_fields`` of ``Model._meta`` will be removed.
  141. * The private keyword arguments ``virtual_only`` in
  142. ``Field.contribute_to_class()`` and ``virtual`` in
  143. ``Model._meta.add_field()`` will be removed.
  144. * The ``javascript_catalog()`` and ``json_catalog()`` views will be removed.
  145. * The ``django.contrib.gis.utils.precision_wkt()`` function will be removed.
  146. * In multi-table inheritance, implicit promotion of a ``OneToOneField`` to a
  147. ``parent_link`` will be removed.
  148. * Support for ``Widget._format_value()`` will be removed.
  149. * ``FileField`` methods ``get_directory_name()`` and ``get_filename()`` will be
  150. removed.
  151. * The ``mark_for_escaping()`` function and the classes it uses: ``EscapeData``,
  152. ``EscapeBytes``, ``EscapeText``, ``EscapeString``, and ``EscapeUnicode`` will
  153. be removed.
  154. * The ``escape`` filter will change to use
  155. ``django.utils.html.conditional_escape()``.
  156. * ``Manager.use_for_related_fields`` will be removed.
  157. * Model ``Manager`` inheritance will follow MRO inheritance rules and the
  158. ``Meta.manager_inheritance_from_future`` to opt-in to this behavior will be
  159. removed.
  160. * Support for old-style middleware using ``settings.MIDDLEWARE_CLASSES`` will
  161. be removed.
  162. .. _deprecation-removed-in-1.10:
  163. 1.10
  164. ----
  165. See the :ref:`Django 1.8 release notes<deprecated-features-1.8>` for more
  166. details on these changes.
  167. * Support for calling a ``SQLCompiler`` directly as an alias for calling its
  168. ``quote_name_unless_alias`` method will be removed.
  169. * ``cycle`` and ``firstof`` template tags will be removed from the ``future``
  170. template tag library (used during the 1.6/1.7 deprecation period).
  171. * ``django.conf.urls.patterns()`` will be removed.
  172. * Support for the ``prefix`` argument to
  173. ``django.conf.urls.i18n.i18n_patterns()`` will be removed.
  174. * ``SimpleTestCase.urls`` will be removed.
  175. * Using an incorrect count of unpacked values in the ``for`` template tag
  176. will raise an exception rather than fail silently.
  177. * The ability to reverse URLs using a dotted Python path will be removed.
  178. * The ability to use a dotted Python path for the ``LOGIN_URL`` and
  179. ``LOGIN_REDIRECT_URL`` settings will be removed.
  180. * Support for :py:mod:`optparse` will be dropped for custom management commands
  181. (replaced by :py:mod:`argparse`).
  182. * The class ``django.core.management.NoArgsCommand`` will be removed. Use
  183. :class:`~django.core.management.BaseCommand` instead, which takes no arguments
  184. by default.
  185. * ``django.core.context_processors`` module will be removed.
  186. * ``django.db.models.sql.aggregates`` module will be removed.
  187. * ``django.contrib.gis.db.models.sql.aggregates`` module will be removed.
  188. * The following methods and properties of ``django.db.sql.query.Query`` will
  189. be removed:
  190. * Properties: ``aggregates`` and ``aggregate_select``
  191. * Methods: ``add_aggregate``, ``set_aggregate_mask``, and
  192. ``append_aggregate_mask``.
  193. * ``django.template.resolve_variable`` will be removed.
  194. * The following private APIs will be removed from
  195. :class:`django.db.models.options.Options` (``Model._meta``):
  196. * ``get_field_by_name()``
  197. * ``get_all_field_names()``
  198. * ``get_fields_with_model()``
  199. * ``get_concrete_fields_with_model()``
  200. * ``get_m2m_with_model()``
  201. * ``get_all_related_objects()``
  202. * ``get_all_related_objects_with_model()``
  203. * ``get_all_related_many_to_many_objects()``
  204. * ``get_all_related_m2m_objects_with_model()``
  205. * The ``error_message`` argument of ``django.forms.RegexField`` will be removed.
  206. * The ``unordered_list`` filter will no longer support old style lists.
  207. * Support for string ``view`` arguments to ``url()`` will be removed.
  208. * The backward compatible shim to rename ``django.forms.Form._has_changed()``
  209. to ``has_changed()`` will be removed.
  210. * The ``removetags`` template filter will be removed.
  211. * The ``remove_tags()`` and ``strip_entities()`` functions in
  212. ``django.utils.html`` will be removed.
  213. * The ``is_admin_site`` argument to
  214. ``django.contrib.auth.views.password_reset()`` will be removed.
  215. * ``django.db.models.field.subclassing.SubfieldBase`` will be removed.
  216. * ``django.utils.checksums`` will be removed; its functionality is included
  217. in ``django-localflavor`` 1.1+.
  218. * The ``original_content_type_id`` attribute on
  219. ``django.contrib.admin.helpers.InlineAdminForm`` will be removed.
  220. * The backwards compatibility shim to allow ``FormMixin.get_form()`` to be
  221. defined with no default value for its ``form_class`` argument will be removed.
  222. * The following settings will be removed:
  223. * ``ALLOWED_INCLUDE_ROOTS``
  224. * ``TEMPLATE_CONTEXT_PROCESSORS``
  225. * ``TEMPLATE_DEBUG``
  226. * ``TEMPLATE_DIRS``
  227. * ``TEMPLATE_LOADERS``
  228. * ``TEMPLATE_STRING_IF_INVALID``
  229. * The backwards compatibility alias ``django.template.loader.BaseLoader`` will
  230. be removed.
  231. * Django template objects returned by
  232. :func:`~django.template.loader.get_template` and
  233. :func:`~django.template.loader.select_template` won't accept a
  234. :class:`~django.template.Context` in their
  235. :meth:`~django.template.backends.base.Template.render()` method anymore.
  236. * :doc:`Template response APIs </ref/template-response>` will enforce the use
  237. of :class:`dict` and backend-dependent template objects instead of
  238. :class:`~django.template.Context` and :class:`~django.template.Template`
  239. respectively.
  240. * The ``current_app`` parameter for the following function and classes will be
  241. removed:
  242. * ``django.shortcuts.render()``
  243. * ``django.template.Context()``
  244. * ``django.template.RequestContext()``
  245. * ``django.template.response.TemplateResponse()``
  246. * The ``dictionary`` and ``context_instance`` parameters for the following
  247. functions will be removed:
  248. * ``django.shortcuts.render()``
  249. * ``django.shortcuts.render_to_response()``
  250. * ``django.template.loader.render_to_string()``
  251. * The ``dirs`` parameter for the following functions will be removed:
  252. * ``django.template.loader.get_template()``
  253. * ``django.template.loader.select_template()``
  254. * ``django.shortcuts.render()``
  255. * ``django.shortcuts.render_to_response()``
  256. * Session verification will be enabled regardless of whether or not
  257. ``'django.contrib.auth.middleware.SessionAuthenticationMiddleware'`` is in
  258. ``MIDDLEWARE_CLASSES``.
  259. * Private attribute ``django.db.models.Field.related`` will be removed.
  260. * The ``--list`` option of the ``migrate`` management command will be removed.
  261. * The ``ssi`` template tag will be removed.
  262. * Support for the ``=`` comparison operator in the ``if`` template tag will be
  263. removed.
  264. * The backwards compatibility shims to allow ``Storage.get_available_name()``
  265. and ``Storage.save()`` to be defined without a ``max_length`` argument will
  266. be removed.
  267. * Support for the legacy ``%(<foo>)s`` syntax in ``ModelFormMixin.success_url``
  268. will be removed.
  269. * ``GeoQuerySet`` aggregate methods ``collect()``, ``extent()``, ``extent3d()``,
  270. ``make_line()``, and ``unionagg()`` will be removed.
  271. * Ability to specify ``ContentType.name`` when creating a content type instance
  272. will be removed.
  273. * Support for the old signature of ``allow_migrate`` will be removed. It changed
  274. from ``allow_migrate(self, db, model)`` to
  275. ``allow_migrate(self, db, app_label, model_name=None, **hints)``.
  276. * Support for the syntax of ``{% cycle %}`` that uses comma-separated arguments
  277. will be removed.
  278. * The warning that :class:`~django.core.signing.Signer` issues when given an
  279. invalid separator will become an exception.
  280. .. _deprecation-removed-in-1.9:
  281. 1.9
  282. ---
  283. See the :ref:`Django 1.7 release notes<deprecated-features-1.7>` for more
  284. details on these changes.
  285. * ``django.utils.dictconfig`` will be removed.
  286. * ``django.utils.importlib`` will be removed.
  287. * ``django.utils.tzinfo`` will be removed.
  288. * ``django.utils.unittest`` will be removed.
  289. * The ``syncdb`` command will be removed.
  290. * ``django.db.models.signals.pre_syncdb`` and
  291. ``django.db.models.signals.post_syncdb`` will be removed.
  292. * ``allow_syncdb`` on database routers will no longer automatically become
  293. ``allow_migrate``.
  294. * Automatic syncing of apps without migrations will be removed. Migrations will
  295. become compulsory for all apps unless you pass the ``--run-syncdb`` option to
  296. ``migrate``.
  297. * The SQL management commands for apps without migrations, ``sql``, ``sqlall``,
  298. ``sqlclear``, ``sqldropindexes``, and ``sqlindexes``, will be removed.
  299. * Support for automatic loading of ``initial_data`` fixtures and initial SQL
  300. data will be removed.
  301. * All models will need to be defined inside an installed application or
  302. declare an explicit :attr:`~django.db.models.Options.app_label`.
  303. Furthermore, it won't be possible to import them before their application
  304. is loaded. In particular, it won't be possible to import models inside
  305. the root package of their application.
  306. * The model and form ``IPAddressField`` will be removed. A stub field will
  307. remain for compatibility with historical migrations.
  308. * ``AppCommand.handle_app()`` will no longer be supported.
  309. * ``RequestSite`` and ``get_current_site()`` will no longer be importable from
  310. ``django.contrib.sites.models``.
  311. * FastCGI support via the ``runfcgi`` management command will be
  312. removed. Please deploy your project using WSGI.
  313. * ``django.utils.datastructures.SortedDict`` will be removed. Use
  314. :class:`collections.OrderedDict` from the Python standard library instead.
  315. * ``ModelAdmin.declared_fieldsets`` will be removed.
  316. * Instances of ``util.py`` in the Django codebase have been renamed to
  317. ``utils.py`` in an effort to unify all util and utils references.
  318. The modules that provided backwards compatibility will be removed:
  319. * ``django.contrib.admin.util``
  320. * ``django.contrib.gis.db.backends.util``
  321. * ``django.db.backends.util``
  322. * ``django.forms.util``
  323. * ``ModelAdmin.get_formsets`` will be removed.
  324. * The backward compatibility shim introduced to rename the
  325. ``BaseMemcachedCache._get_memcache_timeout()`` method to
  326. ``get_backend_timeout()`` will be removed.
  327. * The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` will be removed.
  328. * The ``use_natural_keys`` argument for ``serializers.serialize()`` will be
  329. removed.
  330. * Private API ``django.forms.forms.get_declared_fields()`` will be removed.
  331. * The ability to use a ``SplitDateTimeWidget`` with ``DateTimeField`` will be
  332. removed.
  333. * The ``WSGIRequest.REQUEST`` property will be removed.
  334. * The class ``django.utils.datastructures.MergeDict`` will be removed.
  335. * The ``zh-cn`` and ``zh-tw`` language codes will be removed and have been
  336. replaced by the ``zh-hans`` and ``zh-hant`` language code respectively.
  337. * The internal ``django.utils.functional.memoize`` will be removed.
  338. * ``django.core.cache.get_cache`` will be removed. Add suitable entries
  339. to :setting:`CACHES` and use :data:`django.core.cache.caches` instead.
  340. * ``django.db.models.loading`` will be removed.
  341. * Passing callable arguments to querysets will no longer be possible.
  342. * ``BaseCommand.requires_model_validation`` will be removed in favor of
  343. ``requires_system_checks``. Admin validators will be replaced by admin
  344. checks.
  345. * The ``ModelAdmin.validator_class`` and ``default_validator_class`` attributes
  346. will be removed.
  347. * ``ModelAdmin.validate()`` will be removed.
  348. * ``django.db.backends.DatabaseValidation.validate_field`` will be removed in
  349. favor of the ``check_field`` method.
  350. * The ``validate`` management command will be removed.
  351. * ``django.utils.module_loading.import_by_path`` will be removed in favor of
  352. ``django.utils.module_loading.import_string``.
  353. * ``ssi`` and ``url`` template tags will be removed from the ``future`` template
  354. tag library (used during the 1.3/1.4 deprecation period).
  355. * ``django.utils.text.javascript_quote`` will be removed.
  356. * Database test settings as independent entries in the database settings,
  357. prefixed by ``TEST_``, will no longer be supported.
  358. * The `cache_choices` option to :class:`~django.forms.ModelChoiceField` and
  359. :class:`~django.forms.ModelMultipleChoiceField` will be removed.
  360. * The default value of the
  361. :attr:`RedirectView.permanent <django.views.generic.base.RedirectView.permanent>`
  362. attribute will change from ``True`` to ``False``.
  363. * ``django.contrib.sitemaps.FlatPageSitemap`` will be removed in favor of
  364. ``django.contrib.flatpages.sitemaps.FlatPageSitemap``.
  365. * Private API ``django.test.utils.TestTemplateLoader`` will be removed.
  366. * The ``django.contrib.contenttypes.generic`` module will be removed.
  367. * Private APIs ``django.db.models.sql.where.WhereNode.make_atom()`` and
  368. ``django.db.models.sql.where.Constraint`` will be removed.
  369. .. _deprecation-removed-in-1.8:
  370. 1.8
  371. ---
  372. See the :ref:`Django 1.6 release notes<deprecated-features-1.6>` for more
  373. details on these changes.
  374. * ``django.contrib.comments`` will be removed.
  375. * The following transaction management APIs will be removed:
  376. - ``TransactionMiddleware``,
  377. - the decorators and context managers ``autocommit``, ``commit_on_success``,
  378. and ``commit_manually``, defined in ``django.db.transaction``,
  379. - the functions ``commit_unless_managed`` and ``rollback_unless_managed``,
  380. also defined in ``django.db.transaction``,
  381. - the ``TRANSACTIONS_MANAGED`` setting.
  382. * The :ttag:`cycle` and :ttag:`firstof` template tags will auto-escape their
  383. arguments. In 1.6 and 1.7, this behavior is provided by the version of these
  384. tags in the ``future`` template tag library.
  385. * The ``SEND_BROKEN_LINK_EMAILS`` setting will be removed. Add the
  386. :class:`django.middleware.common.BrokenLinkEmailsMiddleware` middleware to
  387. your ``MIDDLEWARE_CLASSES`` setting instead.
  388. * ``django.middleware.doc.XViewMiddleware`` will be removed. Use
  389. ``django.contrib.admindocs.middleware.XViewMiddleware`` instead.
  390. * ``Model._meta.module_name`` was renamed to ``model_name``.
  391. * Remove the backward compatible shims introduced to rename ``get_query_set``
  392. and similar queryset methods. This affects the following classes:
  393. ``BaseModelAdmin``, ``ChangeList``, ``BaseCommentNode``,
  394. ``GenericForeignKey``, ``Manager``, ``SingleRelatedObjectDescriptor`` and
  395. ``ReverseSingleRelatedObjectDescriptor``.
  396. * Remove the backward compatible shims introduced to rename the attributes
  397. ``ChangeList.root_query_set`` and ``ChangeList.query_set``.
  398. * ``django.views.defaults.shortcut`` will be removed, as part of the
  399. goal of removing all ``django.contrib`` references from the core
  400. Django codebase. Instead use
  401. ``django.contrib.contenttypes.views.shortcut``. ``django.conf.urls.shortcut``
  402. will also be removed.
  403. * Support for the Python Imaging Library (PIL) module will be removed, as it
  404. no longer appears to be actively maintained & does not work on Python 3.
  405. You are advised to install `Pillow`_, which should be used instead.
  406. .. _`Pillow`: https://pypi.python.org/pypi/Pillow
  407. * The following private APIs will be removed:
  408. - ``django.db.backend``
  409. - ``django.db.close_connection()``
  410. - ``django.db.backends.creation.BaseDatabaseCreation.set_autocommit()``
  411. - ``django.db.transaction.is_managed()``
  412. - ``django.db.transaction.managed()``
  413. * ``django.forms.widgets.RadioInput`` will be removed in favor of
  414. ``django.forms.widgets.RadioChoiceInput``.
  415. * The module ``django.test.simple`` and the class
  416. ``django.test.simple.DjangoTestSuiteRunner`` will be removed. Instead use
  417. ``django.test.runner.DiscoverRunner``.
  418. * The module ``django.test._doctest`` will be removed. Instead use the doctest
  419. module from the Python standard library.
  420. * The ``CACHE_MIDDLEWARE_ANONYMOUS_ONLY`` setting will be removed.
  421. * Usage of the hard-coded *Hold down "Control", or "Command" on a Mac, to select
  422. more than one.* string to override or append to user-provided ``help_text`` in
  423. forms for ManyToMany model fields will not be performed by Django anymore
  424. either at the model or forms layer.
  425. * The ``Model._meta.get_(add|change|delete)_permission`` methods will
  426. be removed.
  427. * The session key ``django_language`` will no longer be read for backwards
  428. compatibility.
  429. * Geographic Sitemaps will be removed
  430. (``django.contrib.gis.sitemaps.views.index`` and
  431. ``django.contrib.gis.sitemaps.views.sitemap``).
  432. * ``django.utils.html.fix_ampersands``, the ``fix_ampersands`` template filter and
  433. ``django.utils.html.clean_html`` will be removed following an accelerated deprecation.
  434. .. _deprecation-removed-in-1.7:
  435. 1.7
  436. ---
  437. See the :ref:`Django 1.5 release notes<deprecated-features-1.5>` for more
  438. details on these changes.
  439. * The module ``django.utils.simplejson`` will be removed. The standard library
  440. provides :mod:`json` which should be used instead.
  441. * The function ``django.utils.itercompat.product`` will be removed. The Python
  442. builtin version should be used instead.
  443. * Auto-correction of INSTALLED_APPS and TEMPLATE_DIRS settings when they are
  444. specified as a plain string instead of a tuple will be removed and raise an
  445. exception.
  446. * The ``mimetype`` argument to the ``__init__`` methods of
  447. :class:`~django.http.HttpResponse`,
  448. :class:`~django.template.response.SimpleTemplateResponse`, and
  449. :class:`~django.template.response.TemplateResponse`, will be removed.
  450. ``content_type`` should be used instead. This also applies to the
  451. ``render_to_response()`` shortcut and the sitemap views,
  452. :func:`~django.contrib.sitemaps.views.index` and
  453. :func:`~django.contrib.sitemaps.views.sitemap`.
  454. * When :class:`~django.http.HttpResponse` is instantiated with an iterator,
  455. or when :attr:`~django.http.HttpResponse.content` is set to an iterator,
  456. that iterator will be immediately consumed.
  457. * The ``AUTH_PROFILE_MODULE`` setting, and the ``get_profile()`` method on
  458. the User model, will be removed.
  459. * The ``cleanup`` management command will be removed. It's replaced by
  460. ``clearsessions``.
  461. * The ``daily_cleanup.py`` script will be removed.
  462. * The ``depth`` keyword argument will be removed from
  463. :meth:`~django.db.models.query.QuerySet.select_related`.
  464. * The undocumented ``get_warnings_state()``/``restore_warnings_state()``
  465. functions from :mod:`django.test.utils` and the ``save_warnings_state()``/
  466. ``restore_warnings_state()``
  467. :ref:`django.test.*TestCase <django-testcase-subclasses>` methods are
  468. deprecated. Use the :class:`warnings.catch_warnings` context manager
  469. available starting with Python 2.6 instead.
  470. * The undocumented ``check_for_test_cookie`` method in
  471. :class:`~django.contrib.auth.forms.AuthenticationForm` will be removed
  472. following an accelerated deprecation. Users subclassing this form should
  473. remove calls to this method, and instead ensure that their auth related views
  474. are CSRF protected, which ensures that cookies are enabled.
  475. * The version of :func:`django.contrib.auth.views.password_reset_confirm` that
  476. supports base36 encoded user IDs
  477. (``django.contrib.auth.views.password_reset_confirm_uidb36``) will be
  478. removed. If your site has been running Django 1.6 for more than
  479. :setting:`PASSWORD_RESET_TIMEOUT_DAYS`, this change will have no effect. If
  480. not, then any password reset links generated before you upgrade to Django 1.7
  481. won't work after the upgrade.
  482. * The ``django.utils.encoding.StrAndUnicode`` mix-in will be removed.
  483. Define a ``__str__`` method and apply the
  484. :func:`~django.utils.encoding.python_2_unicode_compatible` decorator instead.
  485. .. _deprecation-removed-in-1.6:
  486. 1.6
  487. ---
  488. See the :ref:`Django 1.4 release notes<deprecated-features-1.4>` for more
  489. details on these changes.
  490. * ``django.contrib.databrowse`` will be removed.
  491. * ``django.contrib.localflavor`` will be removed following an accelerated
  492. deprecation.
  493. * ``django.contrib.markup`` will be removed following an accelerated
  494. deprecation.
  495. * The compatibility modules ``django.utils.copycompat`` and
  496. ``django.utils.hashcompat`` as well as the functions
  497. ``django.utils.itercompat.all`` and ``django.utils.itercompat.any`` will
  498. be removed. The Python builtin versions should be used instead.
  499. * The ``csrf_response_exempt`` and ``csrf_view_exempt`` decorators will
  500. be removed. Since 1.4 ``csrf_response_exempt`` has been a no-op (it
  501. returns the same function), and ``csrf_view_exempt`` has been a
  502. synonym for ``django.views.decorators.csrf.csrf_exempt``, which should
  503. be used to replace it.
  504. * The ``django.core.cache.backends.memcached.CacheClass`` backend
  505. was split into two in Django 1.3 in order to introduce support for
  506. PyLibMC. The historical ``CacheClass`` will be removed in favor of
  507. ``django.core.cache.backends.memcached.MemcachedCache``.
  508. * The UK-prefixed objects of ``django.contrib.localflavor.uk`` will only
  509. be accessible through their GB-prefixed names (GB is the correct
  510. ISO 3166 code for United Kingdom).
  511. * The ``IGNORABLE_404_STARTS`` and ``IGNORABLE_404_ENDS`` settings have been
  512. superseded by :setting:`IGNORABLE_404_URLS` in the 1.4 release. They will be
  513. removed.
  514. * The form wizard has been refactored to use class-based views with pluggable
  515. backends in 1.4. The previous implementation will be removed.
  516. * Legacy ways of calling
  517. :func:`~django.views.decorators.cache.cache_page` will be removed.
  518. * The backward-compatibility shim to automatically add a debug-false
  519. filter to the ``'mail_admins'`` logging handler will be removed. The
  520. :setting:`LOGGING` setting should include this filter explicitly if
  521. it is desired.
  522. * The builtin truncation functions ``django.utils.text.truncate_words()``
  523. and ``django.utils.text.truncate_html_words()`` will be removed in
  524. favor of the ``django.utils.text.Truncator`` class.
  525. * The ``django.contrib.gis.geoip.GeoIP`` class was moved to
  526. ``django.contrib.gis.geoip`` in 1.4 -- the shortcut in
  527. ``django.contrib.gis.utils`` will be removed.
  528. * ``django.conf.urls.defaults`` will be removed. The functions
  529. :func:`~django.conf.urls.include`, ``patterns()`` and
  530. :func:`~django.conf.urls.url` plus :data:`~django.conf.urls.handler404`,
  531. :data:`~django.conf.urls.handler500`, are now available through
  532. :mod:`django.conf.urls` .
  533. * The functions ``setup_environ()`` and ``execute_manager()`` will be removed
  534. from :mod:`django.core.management`. This also means that the old (pre-1.4)
  535. style of :file:`manage.py` file will no longer work.
  536. * Setting the ``is_safe`` and ``needs_autoescape`` flags as attributes of
  537. template filter functions will no longer be supported.
  538. * The attribute ``HttpRequest.raw_post_data`` was renamed to ``HttpRequest.body``
  539. in 1.4. The backward compatibility will be removed --
  540. ``HttpRequest.raw_post_data`` will no longer work.
  541. * The value for the ``post_url_continue`` parameter in
  542. ``ModelAdmin.response_add()`` will have to be either ``None`` (to redirect
  543. to the newly created object's edit page) or a pre-formatted url. String
  544. formats, such as the previous default ``'../%s/'``, will not be accepted any
  545. more.
  546. .. _deprecation-removed-in-1.5:
  547. 1.5
  548. ---
  549. See the :ref:`Django 1.3 release notes<deprecated-features-1.3>` for more
  550. details on these changes.
  551. * Starting Django without a :setting:`SECRET_KEY` will result in an exception
  552. rather than a ``DeprecationWarning``. (This is accelerated from the usual
  553. deprecation path; see the :doc:`Django 1.4 release notes</releases/1.4>`.)
  554. * The ``mod_python`` request handler will be removed. The ``mod_wsgi``
  555. handler should be used instead.
  556. * The ``template`` attribute on ``django.test.client.Response``
  557. objects returned by the :ref:`test client <test-client>` will be removed.
  558. The :attr:`~django.test.Response.templates` attribute should be
  559. used instead.
  560. * The ``django.test.simple.DjangoTestRunner`` will be removed.
  561. Instead use a unittest-native class. The features of the
  562. ``django.test.simple.DjangoTestRunner`` (including fail-fast and
  563. Ctrl-C test termination) can currently be provided by the unittest-native
  564. :class:`~unittest.TextTestRunner`.
  565. * The undocumented function
  566. ``django.contrib.formtools.utils.security_hash`` will be removed,
  567. instead use ``django.contrib.formtools.utils.form_hmac``
  568. * The function-based generic view modules will be removed in favor of their
  569. class-based equivalents, outlined :doc:`here
  570. </topics/class-based-views/index>`.
  571. * The ``django.core.servers.basehttp.AdminMediaHandler`` will be
  572. removed. In its place use
  573. ``django.contrib.staticfiles.handlers.StaticFilesHandler``.
  574. * The template tags library ``adminmedia`` and the template tag ``{%
  575. admin_media_prefix %}`` will be removed in favor of the generic static files
  576. handling. (This is faster than the usual deprecation path; see the
  577. :doc:`Django 1.4 release notes</releases/1.4>`.)
  578. * The ``url`` and ``ssi`` template tags will be modified so that the first
  579. argument to each tag is a template variable, not an implied string. In 1.4,
  580. this behavior is provided by a version of the tag in the ``future`` template
  581. tag library.
  582. * The ``reset`` and ``sqlreset`` management commands will be removed.
  583. * Authentication backends will need to support an inactive user
  584. being passed to all methods dealing with permissions.
  585. The ``supports_inactive_user`` attribute will no longer be checked
  586. and can be removed from custom backends.
  587. * :meth:`~django.contrib.gis.geos.GEOSGeometry.transform` will raise
  588. a :class:`~django.contrib.gis.geos.GEOSException` when called
  589. on a geometry with no SRID value.
  590. * ``django.http.CompatCookie`` will be removed in favor of
  591. ``django.http.SimpleCookie``.
  592. * ``django.core.context_processors.PermWrapper`` and
  593. ``django.core.context_processors.PermLookupDict`` will be removed in
  594. favor of the corresponding
  595. ``django.contrib.auth.context_processors.PermWrapper`` and
  596. ``django.contrib.auth.context_processors.PermLookupDict``, respectively.
  597. * The :setting:`MEDIA_URL` or :setting:`STATIC_URL` settings will be
  598. required to end with a trailing slash to ensure there is a consistent
  599. way to combine paths in templates.
  600. * ``django.db.models.fields.URLField.verify_exists`` will be removed. The
  601. feature was deprecated in 1.3.1 due to intractable security and
  602. performance issues and will follow a slightly accelerated deprecation
  603. timeframe.
  604. * Translations located under the so-called *project path* will be ignored during
  605. the translation building process performed at runtime. The
  606. :setting:`LOCALE_PATHS` setting can be used for the same task by including the
  607. filesystem path to a ``locale`` directory containing non-app-specific
  608. translations in its value.
  609. * The Markup contrib app will no longer support versions of Python-Markdown
  610. library earlier than 2.1. An accelerated timeline was used as this was
  611. a security related deprecation.
  612. * The ``CACHE_BACKEND`` setting will be removed. The cache backend(s) should be
  613. specified in the :setting:`CACHES` setting.
  614. .. _deprecation-removed-in-1.4:
  615. 1.4
  616. ---
  617. See the :ref:`Django 1.2 release notes<deprecated-features-1.2>` for more
  618. details on these changes.
  619. * ``CsrfResponseMiddleware`` and ``CsrfMiddleware`` will be removed. Use
  620. the ``{% csrf_token %}`` template tag inside forms to enable CSRF
  621. protection. ``CsrfViewMiddleware`` remains and is enabled by default.
  622. * The old imports for CSRF functionality (``django.contrib.csrf.*``),
  623. which moved to core in 1.2, will be removed.
  624. * The ``django.contrib.gis.db.backend`` module will be removed in favor
  625. of the specific backends.
  626. * ``SMTPConnection`` will be removed in favor of a generic Email backend API.
  627. * The many to many SQL generation functions on the database backends
  628. will be removed.
  629. * The ability to use the ``DATABASE_*`` family of top-level settings to
  630. define database connections will be removed.
  631. * The ability to use shorthand notation to specify a database backend
  632. (i.e., ``sqlite3`` instead of ``django.db.backends.sqlite3``) will be
  633. removed.
  634. * The ``get_db_prep_save``, ``get_db_prep_value`` and
  635. ``get_db_prep_lookup`` methods will have to support multiple databases.
  636. * The ``Message`` model (in ``django.contrib.auth``), its related
  637. manager in the ``User`` model (``user.message_set``), and the
  638. associated methods (``user.message_set.create()`` and
  639. ``user.get_and_delete_messages()``), will be removed. The
  640. :doc:`messages framework </ref/contrib/messages>` should be used
  641. instead. The related ``messages`` variable returned by the
  642. auth context processor will also be removed. Note that this
  643. means that the admin application will depend on the messages
  644. context processor.
  645. * Authentication backends will need to support the ``obj`` parameter for
  646. permission checking. The ``supports_object_permissions`` attribute
  647. will no longer be checked and can be removed from custom backends.
  648. * Authentication backends will need to support the ``AnonymousUser`` class
  649. being passed to all methods dealing with permissions. The
  650. ``supports_anonymous_user`` variable will no longer be checked and can be
  651. removed from custom backends.
  652. * The ability to specify a callable template loader rather than a
  653. ``Loader`` class will be removed, as will the ``load_template_source``
  654. functions that are included with the built in template loaders for
  655. backwards compatibility.
  656. * ``django.utils.translation.get_date_formats()`` and
  657. ``django.utils.translation.get_partial_date_formats()``. These functions
  658. will be removed; use the locale-aware
  659. ``django.utils.formats.get_format()`` to get the appropriate formats.
  660. * In ``django.forms.fields``, the constants: ``DEFAULT_DATE_INPUT_FORMATS``,
  661. ``DEFAULT_TIME_INPUT_FORMATS`` and
  662. ``DEFAULT_DATETIME_INPUT_FORMATS`` will be removed. Use
  663. ``django.utils.formats.get_format()`` to get the appropriate
  664. formats.
  665. * The ability to use a function-based test runner will be removed,
  666. along with the ``django.test.simple.run_tests()`` test runner.
  667. * The ``views.feed()`` view and ``feeds.Feed`` class in
  668. ``django.contrib.syndication`` will be removed. The class-based view
  669. ``views.Feed`` should be used instead.
  670. * ``django.core.context_processors.auth``. This release will
  671. remove the old method in favor of the new method in
  672. ``django.contrib.auth.context_processors.auth``.
  673. * The ``postgresql`` database backend will be removed, use the
  674. ``postgresql_psycopg2`` backend instead.
  675. * The ``no`` language code will be removed and has been replaced by the
  676. ``nb`` language code.
  677. * Authentication backends will need to define the boolean attribute
  678. ``supports_inactive_user`` until version 1.5 when it will be assumed that
  679. all backends will handle inactive users.
  680. * ``django.db.models.fields.XMLField`` will be removed. This was
  681. deprecated as part of the 1.3 release. An accelerated deprecation
  682. schedule has been used because the field hasn't performed any role
  683. beyond that of a simple ``TextField`` since the removal of ``oldforms``.
  684. All uses of ``XMLField`` can be replaced with ``TextField``.
  685. * The undocumented ``mixin`` parameter to the ``open()`` method of
  686. ``django.core.files.storage.Storage`` (and subclasses) will be removed.
  687. .. _deprecation-removed-in-1.3:
  688. 1.3
  689. ---
  690. See the :ref:`Django 1.1 release notes<deprecated-features-1.1>` for more
  691. details on these changes.
  692. * ``AdminSite.root()``. This method of hooking up the admin URLs will be
  693. removed in favor of including ``admin.site.urls``.
  694. * Authentication backends need to define the boolean attributes
  695. ``supports_object_permissions`` and ``supports_anonymous_user`` until
  696. version 1.4, at which point it will be assumed that all backends will
  697. support these options.