deprecation.txt 43 KB

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