deprecation.txt 44 KB

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