deprecation.txt 38 KB

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