1.8.txt 64 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544
  1. ============================================
  2. Django 1.8 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. Welcome to Django 1.8!
  5. These release notes cover the `new features`_, as well as some `backwards
  6. incompatible changes`_ you'll want to be aware of when upgrading from Django
  7. 1.7 or older versions. We've also `begun the deprecation process for some
  8. features`_, and some features have reached the end of their deprecation process
  9. and `have been removed`_.
  10. Django 1.8 has been designated as Django's second :ref:`"Long-Term Support"
  11. (LTS) <lts-releases>` release. It will receive security updates for at least
  12. three years after its release. Support for the previous LTS, Django 1.4, will
  13. end 6 months from the release date of Django 1.8.
  14. .. _`new features`: `What's new in Django 1.8`_
  15. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.8`_
  16. .. _`begun the deprecation process for some features`: `Features deprecated in 1.8`_
  17. .. _`have been removed`: `Features removed in 1.8`_
  18. Python compatibility
  19. ====================
  20. Like Django 1.7, Django 1.8 requires Python 2.7 or above, though we
  21. **highly recommend** the latest minor release.
  22. What's new in Django 1.8
  23. ========================
  24. ``Model._meta`` API
  25. ~~~~~~~~~~~~~~~~~~~
  26. Django now has a formalized API for :doc:`Model._meta </ref/models/meta>`,
  27. providing an officially supported way to :ref:`retrieve fields
  28. <model-meta-field-api>` and filter fields based on their :ref:`attributes
  29. <model-field-attributes>`.
  30. The ``Model._meta`` object has been part of Django since the days of pre-0.96
  31. "Magic Removal" -- it just wasn't an official, stable API. In recognition of
  32. this, we've endeavored to maintain backwards-compatibility with the old
  33. API endpoint where possible. However, API endpoints that aren't part of the
  34. new official API have been deprecated and will eventually be removed. A
  35. :ref:`guide to migrating from the old API to the new API
  36. <migrating-old-meta-api>` has been provided.
  37. Security enhancements
  38. ~~~~~~~~~~~~~~~~~~~~~
  39. Several features of the django-secure_ third-party library have been
  40. integrated into Django. :class:`django.middleware.security.SecurityMiddleware`
  41. provides several security enhancements to the request/response cycle. The new
  42. :djadminopt:`--deploy` option of the :djadmin:`check` command allows you to
  43. check your production settings file for ways to increase the security of your
  44. site.
  45. .. _django-secure: https://pypi.python.org/pypi/django-secure
  46. New PostgreSQL specific functionality
  47. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. Django now has a module with extensions for PostgreSQL specific features, such
  49. as :class:`~django.contrib.postgres.fields.ArrayField`,
  50. :class:`~django.contrib.postgres.fields.HStoreField`, and :lookup:`unaccent`
  51. lookup. A full breakdown of the features is available :doc:`in the
  52. documentation </ref/contrib/postgres/index>`.
  53. New data types
  54. ~~~~~~~~~~~~~~
  55. * Django now has a :class:`~django.db.models.UUIDField` for storing
  56. universally unique identifiers. It is stored as the native ``uuid`` data type
  57. on PostgreSQL and as a fixed length character field on other backends. There
  58. is a corresponding :class:`form field <django.forms.UUIDField>`.
  59. * Django now has a :class:`~django.db.models.DurationField` for storing periods
  60. of time - modeled in Python by :class:`~python:datetime.timedelta`. It is
  61. stored in the native ``interval`` data type on PostgreSQL, as a ``INTERVAL
  62. DAY(9) TO SECOND(6)`` on Oracle, and as a ``bigint`` of microseconds on other
  63. backends. Date and time related arithmetic has also been improved on all
  64. backends. There is a corresponding :class:`form field
  65. <django.forms.DurationField>`.
  66. Query Expressions and Database Functions
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  68. :doc:`Query Expressions </ref/models/expressions>` allow users to create,
  69. customize, and compose complex SQL expressions. This has enabled annotate
  70. to accept expressions other than aggregates. Aggregates are now able to
  71. reference multiple fields, as well as perform arithmetic, similar to ``F()``
  72. objects.
  73. A collection of :doc:`database functions </ref/models/database-functions>` is
  74. also included with functionality such as
  75. :class:`~django.db.models.functions.Coalesce`,
  76. :class:`~django.db.models.functions.Concat`, and
  77. :class:`~django.db.models.functions.Substr`.
  78. ``TestCase`` data setup
  79. ~~~~~~~~~~~~~~~~~~~~~~~
  80. :class:`~django.test.TestCase` has been refactored to allow for data
  81. initialization at the class level using transactions and savepoints. Database
  82. backends which do not support transactions, like MySQL with the MyISAM storage
  83. engine, will still be able to run these tests but won't benefit from the
  84. improvements. Tests are now run within two nested
  85. :func:`~django.db.transaction.atomic()` blocks: one for the whole class and one
  86. for each test.
  87. * The class method
  88. :meth:`TestCase.setUpTestData() <django.test.TestCase.setUpTestData>` adds
  89. the ability to setup test data at the class level. Using this technique can
  90. speed up the tests as compared to using ``setUp()``.
  91. * Fixture loading within ``TestCase`` is now performed once for the whole
  92. ``TestCase``.
  93. Minor features
  94. ~~~~~~~~~~~~~~
  95. :mod:`django.contrib.admin`
  96. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  97. * :class:`~django.contrib.admin.ModelAdmin` now has a
  98. :meth:`~django.contrib.admin.ModelAdmin.has_module_permission`
  99. method to allow limiting access to the module on the admin index page.
  100. * :class:`~django.contrib.admin.InlineModelAdmin` now has an attribute
  101. :attr:`~django.contrib.admin.InlineModelAdmin.show_change_link` that
  102. supports showing a link to an inline object's change form.
  103. * Use the new ``django.contrib.admin.RelatedOnlyFieldListFilter`` in
  104. :attr:`ModelAdmin.list_filter <django.contrib.admin.ModelAdmin.list_filter>`
  105. to limit the ``list_filter`` choices to foreign objects which are attached to
  106. those from the ``ModelAdmin``.
  107. * The :meth:`ModelAdmin.delete_view()
  108. <django.contrib.admin.ModelAdmin.delete_view>` displays a summary of objects
  109. to be deleted on the deletion confirmation page.
  110. * The jQuery library embedded in the admin has been upgraded to version 1.11.2.
  111. * You can now specify :attr:`AdminSite.site_url
  112. <django.contrib.admin.AdminSite.site_url>` in order to display a link to the
  113. front-end site.
  114. * You can now specify :attr:`ModelAdmin.show_full_result_count
  115. <django.contrib.admin.ModelAdmin.show_full_result_count>` to control whether
  116. or not the full count of objects should be displayed on a filtered admin page.
  117. * The ``AdminSite.password_change()`` method now has an ``extra_context``
  118. parameter.
  119. * You can now control who may login to the admin site by overriding only
  120. :meth:`AdminSite.has_permission()
  121. <django.contrib.admin.AdminSite.has_permission>` and
  122. :attr:`AdminSite.login_form <django.contrib.admin.AdminSite.login_form>`.
  123. The ``base.html`` template has a new block ``usertools`` which contains the
  124. user-specific header. A new context variable ``has_permission``, which gets
  125. its value from :meth:`~django.contrib.admin.AdminSite.has_permission`,
  126. indicates whether the user may access the site.
  127. :mod:`django.contrib.admindocs`
  128. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  129. * reStructuredText is now parsed in model docstrings.
  130. :mod:`django.contrib.auth`
  131. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  132. * Authorization backends can now raise
  133. :class:`~django.core.exceptions.PermissionDenied` in
  134. :meth:`~django.contrib.auth.models.User.has_perm`
  135. and :meth:`~django.contrib.auth.models.User.has_module_perms`
  136. to short-circuit permission checking.
  137. * :class:`~django.contrib.auth.forms.PasswordResetForm` now
  138. has a method :meth:`~django.contrib.auth.forms.PasswordResetForm.send_email`
  139. that can be overridden to customize the mail to be sent.
  140. * The ``max_length`` of :attr:`Permission.name
  141. <django.contrib.auth.models.Permission.name>` has been increased from 50 to
  142. 255 characters. Please run the database migration.
  143. * :attr:`~django.contrib.auth.models.CustomUser.USERNAME_FIELD` and
  144. :attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS` now supports
  145. :class:`~django.db.models.ForeignKey`\s.
  146. * The default iteration count for the PBKDF2 password hasher has been
  147. increased by 33%. This backwards compatible change will not affect users who
  148. have subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to
  149. change the default value.
  150. :mod:`django.contrib.gis`
  151. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  152. * A new :doc:`GeoJSON serializer </ref/contrib/gis/serializers>` is now
  153. available.
  154. * The Spatialite backend now supports ``Collect`` and ``Extent`` aggregates
  155. when the database version is 3.0 or later.
  156. * The PostGIS 2 ``CREATE EXTENSION postgis`` and the Spatialite
  157. ``SELECT InitSpatialMetaData`` initialization commands are now automatically
  158. run by :djadmin:`migrate`.
  159. * The GDAL interface now supports retrieving properties of
  160. :ref:`raster (image) data file <raster-data-source-objects>`.
  161. * Compatibility shims for ``SpatialRefSys`` and ``GeometryColumns`` changed in
  162. Django 1.2 have been removed.
  163. * All GDAL-related exceptions are now raised with ``GDALException``. The former
  164. ``OGRException`` has been kept for backwards compatibility but should not be
  165. used any longer.
  166. :mod:`django.contrib.messages`
  167. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  168. * ...
  169. :mod:`django.contrib.redirects`
  170. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  171. * ...
  172. :mod:`django.contrib.sessions`
  173. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  174. * Session cookie is now deleted after
  175. :meth:`~django.contrib.sessions.backends.base.SessionBase.flush()` is called.
  176. :mod:`django.contrib.sitemaps`
  177. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  178. * The new :attr:`Sitemap.i18n <django.contrib.sitemaps.Sitemap.i18n>` attribute
  179. allows you to generate a sitemap based on the :setting:`LANGUAGES` setting.
  180. :mod:`django.contrib.sites`
  181. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  182. * :func:`~django.contrib.sites.shortcuts.get_current_site` will now lookup
  183. the current site based on :meth:`request.get_host()
  184. <django.http.HttpRequest.get_host>` if the :setting:`SITE_ID` setting is not
  185. defined.
  186. * The default :class:`~django.contrib.sites.models.Site` created when running
  187. ``migrate`` now respects the :setting:`SITE_ID` setting (instead of always
  188. using ``pk=1``).
  189. :mod:`django.contrib.staticfiles`
  190. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  191. * ...
  192. :mod:`django.contrib.syndication`
  193. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  194. * ...
  195. Cache
  196. ^^^^^
  197. * The ``incr()`` method of the
  198. ``django.core.cache.backends.locmem.LocMemCache`` backend is now thread-safe.
  199. Cryptography
  200. ^^^^^^^^^^^^
  201. * The ``max_age`` parameter of the
  202. :meth:`django.core.signing.TimestampSigner.unsign` method now also accept a
  203. :py:class:`datetime.timedelta` object.
  204. Database backends
  205. ^^^^^^^^^^^^^^^^^
  206. * The MySQL backend no longer strips microseconds from ``datetime`` values as
  207. MySQL 5.6.4 and up supports fractional seconds depending on the declaration
  208. of the datetime field (when ``DATETIME`` includes fractional precision greater
  209. than 0). New datetime database columns created with Django 1.8 and MySQL 5.6.4
  210. and up will support microseconds. See the :ref:`MySQL database notes
  211. <mysql-fractional-seconds>` for more details.
  212. * The MySQL backend no longer creates explicit indexes for foreign keys when
  213. using the InnoDB storage engine, as MySQL already creates them automatically.
  214. Email
  215. ^^^^^
  216. * :ref:`Email backends <topic-email-backends>` now support the context manager
  217. protocol for opening and closing connections.
  218. * The SMTP email backend now supports ``keyfile`` and ``certfile``
  219. authentication with the :setting:`EMAIL_SSL_CERTFILE` and
  220. :setting:`EMAIL_SSL_KEYFILE` settings.
  221. * The SMTP :class:`~django.core.mail.backends.smtp.EmailBackend` now supports
  222. setting the ``timeout`` parameter with the :setting:`EMAIL_TIMEOUT` setting.
  223. * :class:`~django.core.mail.EmailMessage` and ``EmailMultiAlternatives`` now
  224. support the ``reply_to`` parameter.
  225. File Storage
  226. ^^^^^^^^^^^^
  227. * ...
  228. File Uploads
  229. ^^^^^^^^^^^^
  230. * ...
  231. Forms
  232. ^^^^^
  233. * Form widgets now render attributes with a value of ``True`` or ``False``
  234. as HTML5 boolean attributes.
  235. * The new :meth:`~django.forms.Form.has_error()` method allows checking
  236. if a specific error has happened.
  237. * If :attr:`~django.forms.Form.required_css_class` is defined on a form, then
  238. the ``<label>`` tags for required fields will have this class present in its
  239. attributes.
  240. * The rendering of non-field errors in unordered lists (``<ul>``) now includes
  241. ``nonfield`` in its list of classes to distinguish them from field-specific
  242. errors.
  243. * :class:`~django.forms.Field` now accepts a
  244. :attr:`~django.forms.Field.label_suffix` argument, which will override the
  245. form's :attr:`~django.forms.Form.label_suffix`. This enables customizing the
  246. suffix on a per-field basis — previously it wasn't possible to override
  247. a form's :attr:`~django.forms.Form.label_suffix` while using shortcuts such
  248. as ``{{ form.as_p }}`` in templates.
  249. * :class:`~django.forms.extras.widgets.SelectDateWidget` now accepts an
  250. :attr:`~django.forms.extras.widgets.SelectDateWidget.empty_label` argument, which will
  251. override the top list choice label when :class:`~django.forms.DateField` is not required.
  252. * After an :class:`~django.forms.ImageField` has been cleaned and validated, the
  253. ``UploadedFile`` object will have an additional ``image`` attribute containing
  254. the Pillow ``Image`` instance used to check if the file was a valid image. It
  255. will also update ``UploadedFile.content_type`` with the image's content type
  256. as determined by Pillow.
  257. * You can now pass a callable that returns an iterable of choices when
  258. instantiating a :class:`~django.forms.ChoiceField`.
  259. Generic Views
  260. ^^^^^^^^^^^^^
  261. * Generic views that use :class:`~django.views.generic.list.MultipleObjectMixin`
  262. may now specify the ordering applied to the
  263. :attr:`~django.views.generic.list.MultipleObjectMixin.queryset` by setting
  264. :attr:`~django.views.generic.list.MultipleObjectMixin.ordering` or overriding
  265. :meth:`~django.views.generic.list.MultipleObjectMixin.get_ordering()`.
  266. * The new :attr:`SingleObjectMixin.query_pk_and_slug
  267. <django.views.generic.detail.SingleObjectMixin.query_pk_and_slug>`
  268. attribute allows changing the behavior of
  269. :meth:`~django.views.generic.detail.SingleObjectMixin.get_object()`
  270. so that it'll perform its lookup using both the primary key and the slug.
  271. * The :meth:`~django.views.generic.edit.FormMixin.get_form()` method doesn't
  272. require a ``form_class`` to be provided anymore. If not provided ``form_class``
  273. defaults to :meth:`~django.views.generic.edit.FormMixin.get_form_class()`.
  274. Internationalization
  275. ^^^^^^^^^^^^^^^^^^^^
  276. * :setting:`FORMAT_MODULE_PATH` can now be a list of strings representing
  277. module paths. This allows importing several format modules from different
  278. reusable apps. It also allows overriding those custom formats in your main
  279. Django project.
  280. Logging
  281. ^^^^^^^
  282. * The :class:`django.utils.log.AdminEmailHandler` class now has a
  283. :meth:`~django.utils.log.AdminEmailHandler.send_mail` method to make it more
  284. subclass friendly.
  285. Management Commands
  286. ^^^^^^^^^^^^^^^^^^^
  287. * Database connections are now always closed after a management command called
  288. from the command line has finished doing its job.
  289. * Commands from alternate package formats like eggs are now also discovered.
  290. * :djadmin:`dumpdata` now has the option :djadminopt:`--output` which allows
  291. specifying the file to which the serialized data is written.
  292. * :djadmin:`makemessages` and :djadmin:`compilemessages` now have the option
  293. :djadminopt:`--exclude` which allows exclusion of specific locales from
  294. processing.
  295. * :djadmin:`compilemessages` now has a ``--use-fuzzy`` or ``-f`` option which
  296. includes fuzzy translations into compiled files.
  297. * The :djadminopt:`--ignorenonexistent` option of the :djadmin:`loaddata`
  298. management command now ignores data for models that no longer exist.
  299. * :djadmin:`runserver` now uses daemon threads for faster reloading.
  300. * :djadmin:`inspectdb` now outputs ``Meta.unique_together``. It is also able to
  301. introspect :class:`~django.db.models.AutoField` for MySQL and PostgreSQL
  302. databases.
  303. * When calling management commands from code through :ref:`call_command
  304. <call-command>` and passing options, the option name can match the command
  305. line option name (without the initial dashes) or the final option destination
  306. variable name, but in either case, the resulting option received by the
  307. command is now always the ``dest`` name specified in the command option
  308. definition (as long as the command uses the new :py:mod:`argparse` module).
  309. * The :djadmin:`dbshell` command now supports MySQL's optional SSL certificate
  310. authority setting (``--ssl-ca``).
  311. * The :djadminopt:`--name` option for :djadmin:`makemigrations` allows you to
  312. to give the migration(s) a custom name instead of a generated one.
  313. * The :djadmin:`loaddata` command now prevents repeated fixture loading. If
  314. :setting:`FIXTURE_DIRS` contains duplicates or a default fixture directory
  315. path (``app_name/fixtures``), an exception is raised.
  316. * :djadmin:`makemigrations` now supports an :djadminopt:`--exit` option to
  317. exit with an error code if no migrations are created.
  318. * The new :djadmin:`showmigrations` command allows listing all migrations and
  319. their dependencies in a project.
  320. Middleware
  321. ^^^^^^^^^^
  322. * The :attr:`CommonMiddleware.response_redirect_class
  323. <django.middleware.common.CommonMiddleware.response_redirect_class>`
  324. attribute allows you to customize the redirects issued by the middleware.
  325. * A debug message will be logged to the ``django.request`` logger when a
  326. middleware raises a :exc:`~django.core.exceptions.MiddlewareNotUsed` exception
  327. in :setting:`DEBUG` mode.
  328. Migrations
  329. ^^^^^^^^^^
  330. * The :class:`~django.db.migrations.operations.RunSQL` operation can now handle
  331. parameters passed to the SQL statements.
  332. * It is now possible to have migrations (most probably :ref:`data migrations
  333. <data-migrations>`) for applications without models.
  334. * Migrations can now :ref:`serialize model managers
  335. <using-managers-in-migrations>` as part of the model state.
  336. * A :ref:`generic mechanism to handle the deprecation of model fields
  337. <migrations-removing-model-fields>` was added.
  338. * The :attr:`RunPython.noop <django.db.migrations.operations.RunPython.noop>`
  339. and :meth:`RunSQL.noop() <django.db.migrations.operations.RunSQL.noop>` class
  340. attribute/method were added to ease in making ``RunPython`` and ``RunSQL``
  341. operations reversible.
  342. * The :class:`~django.db.migrations.operations.RunPython` and
  343. :class:`~django.db.migrations.operations.RunSQL` operations now accept a
  344. ``hints`` parameter that will be passed to :meth:`allow_migrate`. To take
  345. advantage of this feature you must ensure that the ``allow_migrate()`` method
  346. of all your routers accept ``**hints``.
  347. Models
  348. ^^^^^^
  349. * Django now logs at most 9000 queries in ``connections.queries``, in order
  350. to prevent excessive memory usage in long-running processes in debug mode.
  351. * There is now a model ``Meta`` option to define a
  352. :attr:`default related name <django.db.models.Options.default_related_name>`
  353. for all relational fields of a model.
  354. * Pickling models and querysets across different versions of Django isn't
  355. officially supported (it may work, but there's no guarantee). An extra
  356. variable that specifies the current Django version is now added to the
  357. pickled state of models and querysets, and Django raises a ``RuntimeWarning``
  358. when these objects are unpickled in a different version than the one in
  359. which they were pickled.
  360. * Added :meth:`Model.from_db() <django.db.models.Model.from_db()>` which
  361. Django uses whenever objects are loaded using the ORM. The method allows
  362. customizing model loading behavior.
  363. * ``extra(select={...})`` now allows you to escape a literal ``%s`` sequence
  364. using ``%%s``.
  365. * :doc:`Custom Lookups</howto/custom-lookups>` can now be registered using
  366. a decorator pattern.
  367. * The new :attr:`Transform.bilateral <django.db.models.Transform.bilateral>`
  368. attribute allows creating bilateral transformations. These transformations
  369. are applied to both ``lhs`` and ``rhs`` when used in a lookup expression,
  370. providing opportunities for more sophisticated lookups.
  371. * SQL special characters (\, %, _) are now escaped properly when a pattern
  372. lookup (e.g. ``contains``, ``startswith``, etc.) is used with an ``F()``
  373. expression as the right-hand side. In those cases, the escaping is performed
  374. by the database, which can lead to somewhat complex queries involving nested
  375. ``REPLACE`` function calls.
  376. * You can now refresh model instances by using :meth:`Model.refresh_from_db()
  377. <django.db.models.Model.refresh_from_db>`.
  378. * You can now get the set of deferred fields for a model using
  379. :meth:`Model.get_deferred_fields() <django.db.models.Model.get_deferred_fields>`.
  380. Signals
  381. ^^^^^^^
  382. * Exceptions from the ``(receiver, exception)`` tuples returned by
  383. :meth:`Signal.send_robust() <django.dispatch.Signal.send_robust>` now have
  384. their traceback attached as a ``__traceback__`` attribute.
  385. * The ``environ`` argument, which contains the WSGI environment structure from
  386. the request, was added to the :data:`~django.core.signals.request_started`
  387. signal.
  388. * You can now import the :func:`~django.test.signals.setting_changed` signal
  389. from ``django.core.signals`` to avoid loading ``django.test`` in non-test
  390. situations. Django no longer does so itself.
  391. System Check Framework
  392. ^^^^^^^^^^^^^^^^^^^^^^
  393. * :attr:`~django.core.checks.register` can now be used as a function.
  394. Templates
  395. ^^^^^^^^^
  396. * :tfilter:`urlize` now supports domain-only links that include characters after
  397. the top-level domain (e.g. ``djangoproject.com/`` and
  398. ``djangoproject.com/download/``).
  399. * :tfilter:`urlize` doesn't treat exclamation marks at the end of a domain or
  400. its query string as part of the URL (the URL in e.g. ``'djangoproject.com!``
  401. is ``djangoproject.com``)
  402. * Added a :class:`locmem.Loader <django.template.loaders.locmem.Loader>`
  403. class that loads Django templates from a Python dictionary.
  404. * The :ttag:`now` tag can now store its output in a context variable with the
  405. usual syntax: ``{% now 'j n Y' as varname %}``.
  406. Requests and Responses
  407. ^^^^^^^^^^^^^^^^^^^^^^
  408. * ``WSGIRequest`` now respects paths starting with ``//``.
  409. * The :meth:`HttpRequest.build_absolute_uri()
  410. <django.http.HttpRequest.build_absolute_uri>` method now handles paths
  411. starting with ``//`` correctly.
  412. * If :setting:`DEBUG` is ``True`` and a request raises a
  413. :exc:`~django.core.exceptions.SuspiciousOperation`, the response will be
  414. rendered with a detailed error page.
  415. * The ``query_string`` argument of :class:`~django.http.QueryDict` is now
  416. optional, defaulting to ``None``, so a blank ``QueryDict`` can now be
  417. instantiated with ``QueryDict()`` instead of ``QueryDict(None)`` or
  418. ``QueryDict('')``.
  419. * The ``GET`` and ``POST`` attributes of an :class:`~django.http.HttpRequest`
  420. object are now :class:`~django.http.QueryDict`\s rather than dictionaries,
  421. and the ``FILES`` attribute is now a ``MultiValueDict``.
  422. This brings this class into line with the documentation and with
  423. ``WSGIRequest``.
  424. * The :attr:`HttpResponse.charset <django.http.HttpResponse.charset>` attribute
  425. was added.
  426. * ``WSGIRequestHandler`` now follows RFC in converting URI to IRI, using
  427. ``uri_to_iri()``.
  428. * The :meth:`HttpRequest.get_full_path()
  429. <django.http.HttpRequest.get_full_path>` method now escapes unsafe characters
  430. from the path portion of a Uniform Resource Identifier (URI) properly.
  431. * :class:`~django.http.HttpResponse` now implements a few additional methods
  432. like :meth:`~django.http.HttpResponse.getvalue` so that instances can be used
  433. as stream objects.
  434. * The new :meth:`HttpResponse.setdefault()
  435. <django.http.HttpResponse.setdefault>` method allows setting a header unless
  436. it has already been set.
  437. * You can use the new :class:`~django.http.FileResponse` to stream files.
  438. * The :func:`~django.views.decorators.http.condition` decorator for
  439. conditional view processing now supports the ``If-unmodified-since`` header.
  440. Tests
  441. ^^^^^
  442. * The :class:`RequestFactory.trace() <django.test.RequestFactory>`
  443. and :class:`Client.trace() <django.test.Client.trace>` methods were
  444. implemented, allowing you to create ``TRACE`` requests in your tests.
  445. * The ``count`` argument was added to
  446. :meth:`~django.test.SimpleTestCase.assertTemplateUsed`. This allows you to
  447. assert that a template was rendered a specific number of times.
  448. * The new :meth:`~django.test.SimpleTestCase.assertJSONNotEqual` assertion
  449. allows you to test that two JSON fragments are not equal.
  450. * Added options to the :djadmin:`test` command to preserve the test database
  451. (:djadminopt:`--keepdb`) and to run the test cases in reverse order
  452. (:djadminopt:`--reverse`).
  453. * Added the :attr:`~django.test.Response.resolver_match` attribute to test
  454. client responses.
  455. * Added several settings that allow customization of test tablespace parameters
  456. for Oracle: :setting:`DATAFILE`, :setting:`DATAFILE_TMP`,
  457. :setting:`DATAFILE_MAXSIZE` and :setting:`DATAFILE_TMP_MAXSIZE`.
  458. * The :func:`~django.test.override_settings` decorator can now affect the
  459. master router in :setting:`DATABASE_ROUTERS`.
  460. * Added test client support for file uploads with file-like objects.
  461. * A shared cache is now used when testing with a SQLite in-memory database when
  462. using Python 3.4+ and SQLite 3.7.13+. This allows sharing the database
  463. between threads.
  464. Validators
  465. ^^^^^^^^^^
  466. * :class:`~django.core.validators.URLValidator` now supports IPv6 addresses,
  467. unicode domains, and URLs containing authentication data.
  468. Backwards incompatible changes in 1.8
  469. =====================================
  470. .. warning::
  471. In addition to the changes outlined in this section, be sure to review the
  472. :ref:`deprecation plan <deprecation-removed-in-1.8>` for any features that
  473. have been removed. If you haven't updated your code within the
  474. deprecation timeline for a given feature, its removal may appear as a
  475. backwards incompatible change.
  476. Related object operations are run in a transaction
  477. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  478. Some operations on related objects such as
  479. :meth:`~django.db.models.fields.related.RelatedManager.add()` or
  480. :ref:`direct assignment<direct-assignment>` ran multiple data modifying
  481. queries without wrapping them in transactions. To reduce the risk of data
  482. corruption, all data modifying methods that affect multiple related objects
  483. (i.e. ``add()``, ``remove()``, ``clear()``, and :ref:`direct assignment
  484. <direct-assignment>`) now perform their data modifying queries from within a
  485. transaction, provided your database supports transactions.
  486. This has one backwards incompatible side effect, signal handlers triggered from
  487. these methods are now executed within the method's transaction and any
  488. exception in a signal handler will prevent the whole operation.
  489. Assigning unsaved objects to relations raises an error
  490. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  491. Assigning unsaved objects to a :class:`~django.db.models.ForeignKey`,
  492. :class:`~django.contrib.contenttypes.fields.GenericForeignKey`, and
  493. :class:`~django.db.models.OneToOneField` now raises a :exc:`ValueError`.
  494. Previously, the assignment of an unsaved object would be silently ignored.
  495. For example::
  496. >>> book = Book.objects.create(name="Django")
  497. >>> book.author = Author(name="John")
  498. >>> book.author.save()
  499. >>> book.save()
  500. >>> Book.objects.get(name="Django")
  501. >>> book.author
  502. >>>
  503. Now, an error will be raised to prevent data loss::
  504. >>> book.author = Author(name="john")
  505. Traceback (most recent call last):
  506. ...
  507. ValueError: Cannot assign "<Author: John>": "Author" instance isn't saved in the database.
  508. Management commands that only accept positional arguments
  509. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  510. If you have written a custom management command that only accepts positional
  511. arguments and you didn't specify the
  512. :attr:`~django.core.management.BaseCommand.args` command variable, you might
  513. get an error like ``Error: unrecognized arguments: ...``, as variable parsing
  514. is now based on :py:mod:`argparse` which doesn't implicitly accept positional
  515. arguments. You can make your command backwards compatible by simply setting the
  516. :attr:`~django.core.management.BaseCommand.args` class variable. However, if
  517. you don't have to keep compatibility with older Django versions, it's better to
  518. implement the new :meth:`~django.core.management.BaseCommand.add_arguments`
  519. method as described in :doc:`/howto/custom-management-commands`.
  520. Custom test management command arguments through test runner
  521. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  522. The method to add custom arguments to the `test` management command through the
  523. test runner has changed. Previously, you could provide an `option_list` class
  524. variable on the test runner to add more arguments (à la :py:mod:`optparse`).
  525. Now to implement the same behavior, you have to create an
  526. ``add_arguments(cls, parser)`` class method on the test runner and call
  527. ``parser.add_argument`` to add any custom arguments, as parser is now an
  528. :py:class:`argparse.ArgumentParser` instance.
  529. Model check ensures auto-generated column names are within limits specified by database
  530. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  531. A field name that's longer than the column name length supported by a database
  532. can create problems. For example, with MySQL you'll get an exception trying to
  533. create the column, and with PostgreSQL the column name is truncated by the
  534. database (you may see a warning in the PostgreSQL logs).
  535. A model check has been introduced to better alert users to this scenario before
  536. the actual creation of database tables.
  537. If you have an existing model where this check seems to be a false positive,
  538. for example on PostgreSQL where the name was already being truncated, simply
  539. use :attr:`~django.db.models.Field.db_column` to specify the name that's being
  540. used.
  541. The check also applies to the columns generated in an implicit
  542. ``ManyToManyField.through`` model. If you run into an issue there, use
  543. :attr:`~django.db.models.ManyToManyField.through` to create an explicit model
  544. and then specify :attr:`~django.db.models.Field.db_column` on its column(s)
  545. as needed.
  546. Query relation lookups now check object types
  547. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  548. Querying for model lookups now checks if the object passed is of correct type
  549. and raises a :exc:`ValueError` if not. Previously, Django didn't care if the
  550. object was of correct type; it just used the object's related field attribute
  551. (e.g. ``id``) for the lookup. Now, an error is raised to prevent incorrect
  552. lookups::
  553. >>> book = Book.objects.create(name="Django")
  554. >>> book = Book.objects.filter(author=book)
  555. Traceback (most recent call last):
  556. ...
  557. ValueError: Cannot query "<Book: Django>": Must be "Author" instance.
  558. ``select_related()`` now checks given fields
  559. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  560. ``select_related()`` now validates that the given fields actually exist.
  561. Previously, nonexistent fields were silently ignored. Now, an error is raised::
  562. >>> book = Book.objects.select_related('nonexistent_field')
  563. Traceback (most recent call last):
  564. ...
  565. FieldError: Invalid field name(s) given in select_related: 'nonexistent_field'
  566. The validation also makes sure that the given field is relational::
  567. >>> book = Book.objects.select_related('name')
  568. Traceback (most recent call last):
  569. ...
  570. FieldError: Non-relational field given in select_related: 'name'
  571. Default ``EmailField.max_length`` increased to 254
  572. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  573. The old default 75 character ``max_length`` was not capable of storing all
  574. possible RFC3696/5321-compliant email addresses. In order to store all
  575. possible valid email addresses, the ``max_length`` has been increased to 254
  576. characters. You will need to generate and apply database migrations for your
  577. affected models (or add ``max_length=75`` if you wish to keep the length on
  578. your current fields). A migration for
  579. :attr:`django.contrib.auth.models.User.email` is included.
  580. Support for PostgreSQL versions older than 9.0
  581. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  582. The end of upstream support periods was reached in July 2014 for PostgreSQL 8.4.
  583. As a consequence, Django 1.8 sets 9.0 as the minimum PostgreSQL version it
  584. officially supports.
  585. This also includes dropping support for PostGIS 1.3 and 1.4 as these versions
  586. are not supported on versions of PostgreSQL later than 8.4.
  587. Django also now requires the use of Psycopg2 version 2.0.9 or higher.
  588. Support for MySQL versions older than 5.5
  589. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  590. The end of upstream support periods was reached in January 2012 for MySQL 5.0
  591. and December 2013 for MySQL 5.1. As a consequence, Django 1.8 sets 5.5 as the
  592. minimum MySQL version it officially supports.
  593. Support for Oracle versions older than 11.1
  594. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  595. The end of upstream support periods was reached in July 2010 for Oracle 9.2,
  596. January 2012 for Oracle 10.1, and July 2013 for Oracle 10.2. As a consequence,
  597. Django 1.8 sets 11.1 as the minimum Oracle version it officially supports.
  598. Specific privileges used instead of roles for tests on Oracle
  599. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  600. Earlier versions of Django granted the CONNECT and RESOURCE roles to the test
  601. user on Oracle. These roles have been deprecated, so Django 1.8 uses the
  602. specific underlying privileges instead. This changes the privileges required
  603. of the main user for running tests (unless the project is configured to avoid
  604. creating a test user). The exact privileges required now are detailed in
  605. :ref:`Oracle notes <oracle-notes>`.
  606. ``AbstractUser.last_login`` allows null values
  607. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  608. The :attr:`AbstractUser.last_login <django.contrib.auth.models.User.last_login>`
  609. field now allows null values. Previously, it defaulted to the time when the user
  610. was created which was misleading if the user never logged in. Please run the
  611. database migration. If your custom user inherits from ``AbstractUser`` and you
  612. wish to set ``last_login`` to ``NULL`` for users who haven't logged in, you can
  613. run this query::
  614. from django.db import models
  615. from django.contrib.auth import get_user_model
  616. from django.contrib.auth.models import AbstractBaseUser
  617. UserModel = get_user_model()
  618. if issubclass(UserModel, AbstractBaseUser):
  619. UserModel._default_manager.filter(
  620. last_login=models.F('date_joined')
  621. ).update(last_login=None)
  622. :mod:`django.contrib.gis`
  623. ~~~~~~~~~~~~~~~~~~~~~~~~~
  624. * Support for GEOS 3.1 and GDAL 1.6 has been dropped.
  625. * Support for SpatiaLite < 2.4 has been dropped.
  626. * GIS-specific lookups have been refactored to use the
  627. :class:`django.db.models.Lookup` API.
  628. * The default ``str`` representation of
  629. :class:`~django.contrib.gis.geos.GEOSGeometry` objects has been changed from
  630. WKT to EWKT format (including the SRID). As this representation is used in
  631. the serialization framework, that means that ``dumpdata`` output will now
  632. contain the SRID value of geometry objects.
  633. Priority of context processors for ``TemplateResponse`` brought in line with ``render``
  634. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  635. The :class:`~django.template.response.TemplateResponse` constructor is designed to be a
  636. drop-in replacement for the :func:`~django.shortcuts.render` function. However,
  637. it had a slight incompatibility, in that for ``TemplateResponse``, context data
  638. from the passed in context dictionary could be shadowed by context data returned
  639. from context processors, whereas for ``render`` it was the other way
  640. around. This was a bug, and the behavior of ``render`` is more appropriate,
  641. since it allows the globally defined context processors to be overridden locally
  642. in the view. If you were relying on the fact context data in a
  643. ``TemplateResponse`` could be overridden using a context processor, you will
  644. need to change your code.
  645. Overriding ``setUpClass`` / ``tearDownClass`` in test cases
  646. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  647. The decorators :func:`~django.test.override_settings` and
  648. :func:`~django.test.modify_settings` now act at the class level when used as
  649. class decorators. As a consequence, when overriding ``setUpClass()`` or
  650. ``tearDownClass()``, the ``super`` implementation should always be called.
  651. Removal of ``django.contrib.formtools``
  652. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  653. The formtools contrib app has been moved into a separate package.
  654. ``django.contrib.formtools`` itself has been removed. The docs provide
  655. :ref:`migration instructions <formtools-how-to-migrate>`.
  656. The new package is available `on Github`_ and on PyPI.
  657. .. _on GitHub: https://github.com/django/django-formtools/
  658. Database connection reloading between tests
  659. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  660. Django previously closed database connections between each test within a
  661. ``TestCase``. This is no longer the case as Django now wraps the whole
  662. ``TestCase`` within a transaction. If some of your tests relied on the old
  663. behavior, you should have them inherit from ``TransactionTestCase`` instead.
  664. Cleanup of the ``django.template`` namespace
  665. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  666. If you've been relying on private APIs exposed in the ``django.template``
  667. module, you may have to import them from ``django.template.base`` instead.
  668. Also private APIs ``django.template.base.compile_string()``,
  669. ``django.template.loader.find_template()``, and
  670. ``django.template.loader.get_template_from_string()`` were removed.
  671. Database backend API
  672. ~~~~~~~~~~~~~~~~~~~~
  673. The following changes to the database backend API are documented to assist
  674. those writing third-party backends in updating their code:
  675. * The ``data_types``, ``data_types_suffix``, and
  676. ``data_type_check_constraints`` attributes have moved from the
  677. ``DatabaseCreation`` class to ``DatabaseWrapper``.
  678. Miscellaneous
  679. ~~~~~~~~~~~~~
  680. * ``connections.queries`` is now a read-only attribute.
  681. * Database connections are considered equal only if they're the same object.
  682. They aren't hashable any more.
  683. * :class:`~django.middleware.gzip.GZipMiddleware` used to disable compression
  684. for some content types when the request is from Internet Explorer, in order
  685. to work around a bug in IE6 and earlier. This behavior could affect
  686. performance on IE7 and later. It was removed.
  687. * ``URLField.to_python`` no longer adds a trailing slash to pathless URLs.
  688. * The :tfilter:`length` template filter now returns ``0`` for an undefined
  689. variable, rather than an empty string.
  690. * ``ForeignKey.default_error_message['invalid']`` has been changed from
  691. ``'%(model)s instance with pk %(pk)r does not exist.'`` to
  692. ``'%(model)s instance with %(field)s %(value)r does not exist.'`` If you are
  693. using this message in your own code, please update the list of interpolated
  694. parameters. Internally, Django will continue to provide the
  695. ``pk`` parameter in ``params`` for backwards compatibility.
  696. * ``UserCreationForm.errors_messages['duplicate_username']`` is no longer used.
  697. If you wish to customize that error message, :ref:`override it on the form
  698. <modelforms-overriding-default-fields>` using the ``'unique'`` key in
  699. ``Meta.errors_messages['username']`` or, if you have a custom form field for
  700. ``'username'``, using the the ``'unique'`` key in its
  701. :attr:`~django.forms.Field.error_messages` argument.
  702. * ``AdminSite`` no longer takes an ``app_name`` argument and its ``app_name``
  703. attribute has been removed. The application name is always ``admin`` (as
  704. opposed to the instance name which you can still customize using
  705. ``AdminSite(name="...")``.
  706. * The block ``usertools`` in the ``base.html`` template of
  707. :mod:`django.contrib.admin` now requires the ``has_permission`` context
  708. variable to be set. If you have any custom admin views that use this
  709. template, update them to pass :meth:`AdminSite.has_permission()
  710. <django.contrib.admin.AdminSite.has_permission>` as this new variable's
  711. value or simply include :meth:`AdminSite.each_context(request)
  712. <django.contrib.admin.AdminSite.each_context>` in the context.
  713. * Internal changes were made to the :class:`~django.forms.ClearableFileInput`
  714. widget to allow more customization. The undocumented ``url_markup_template``
  715. attribute was removed in favor of ``template_with_initial``.
  716. * For consistency with other major vendors, the ``en_GB`` locale now has Monday
  717. as the first day of the week.
  718. * Seconds have been removed from any locales that had them in ``TIME_FORMAT``,
  719. ``DATETIME_FORMAT``, or ``SHORT_DATETIME_FORMAT``.
  720. * The default max size of the Oracle test tablespace has increased from 300M
  721. (or 200M, before 1.7.2) to 500M.
  722. * :func:`~django.core.urlresolvers.reverse` and
  723. :func:`~django.core.urlresolvers.reverse_lazy` now return Unicode strings
  724. instead of byte strings.
  725. * The ``CacheClass`` shim has been removed from all cache backends.
  726. These aliases were provided for backwards compatibility with Django 1.3.
  727. If you are still using them, please update your project to use the real
  728. class name found in the :setting:`BACKEND <CACHES-BACKEND>` key of the
  729. :setting:`CACHES` setting.
  730. * By default, :ref:`call_command <call-command>` now always skips the check
  731. framework (unless you pass it ``skip_checks=False``).
  732. * When iterating over lines, :class:`~django.core.files.File` now uses
  733. `universal newlines`_. The following are recognized as ending a line: the
  734. Unix end-of-line convention ``'\n'``, the Windows convention ``'\r\n'``, and
  735. the old Macintosh convention ``'\r'``.
  736. .. _universal newlines: https://www.python.org/dev/peps/pep-0278
  737. * The Memcached cache backends ``MemcachedCache`` and ``PyLibMCCache`` will
  738. delete a key if ``set()`` fails. This is necessary to ensure the ``cache_db``
  739. session store always fetches the most current session data.
  740. * Private APIs ``override_template_loaders`` and ``override_with_test_loader``
  741. in ``django.test.utils`` were removed. Override ``TEMPLATES`` with
  742. ``override_settings`` instead.
  743. * Warnings from the MySQL database backend are no longer converted to
  744. exceptions when :setting:`DEBUG` is ``True``.
  745. * :class:`~django.http.HttpRequest` now has a simplified ``repr`` (e.g.
  746. ``<WSGIRequest: GET '/somepath/'>``). This won't change the behavior of
  747. the :class:`~django.views.debug.SafeExceptionReporterFilter` class.
  748. * Class-based views that use :class:`~django.views.generic.edit.ModelFormMixin`
  749. will raise an :exc:`~django.core.exceptions.ImproperlyConfigured` exception
  750. when both the ``fields`` and ``form_class`` attributes are specified.
  751. Previously, ``fields`` was silently ignored.
  752. * When following redirects, the test client now raises
  753. :exc:`~django.test.client.RedirectCycleError` if it detects a loop or hits a
  754. maximum redirect limit (rather than passing silently).
  755. * Translatable strings set as the ``default`` parameter of the field are cast
  756. to concrete strings later, so the return type of ``Field.get_default()`` is
  757. different in some cases. There is no change to default values which are the
  758. result of a callable.
  759. * ``GenericIPAddressField.empty_strings_allowed`` is now ``False``. Database
  760. backends that interpret empty strings as null (only Oracle among the backends
  761. that Django includes) will no longer convert null values back to an empty
  762. string. This is consistent with other backends.
  763. * When the :attr:`~django.core.management.BaseCommand.leave_locale_alone`
  764. attribute is ``False``, translations are now deactivated instead of forcing
  765. the "en-us" locale. In the case your models contained non-English strings and
  766. you counted on English translations to be activated in management commands,
  767. this will not happen any longer. It might be that new database migrations are
  768. generated (once) after migrating to 1.8.
  769. * :func:`django.utils.translation.get_language()` now returns ``None`` instead
  770. of :setting:`LANGUAGE_CODE` when translations are temporarily deactivated.
  771. * The migration operations :class:`~django.db.migrations.operations.RunPython`
  772. and :class:`~django.db.migrations.operations.RunSQL` now call the
  773. :meth:`allow_migrate` method of database routers. In these cases the
  774. ``model`` argument of ``allow_migrate()`` is set to ``None``, so the router
  775. must properly handle this value. This is most useful when used together with
  776. the newly introduced ``hints`` parameter for these operations, but it can
  777. also be used to disable migrations from running on a particular database.
  778. .. _deprecated-features-1.8:
  779. Features deprecated in 1.8
  780. ==========================
  781. Selected methods in ``django.db.models.options.Options``
  782. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  783. As part of the formalization of the ``Model._meta`` API (from the
  784. :class:`django.db.models.options.Options` class), a number of methods have been
  785. deprecated and will be removed in Django 2.0:
  786. * ``get_all_field_names()``
  787. * ``get_all_related_objects()``
  788. * ``get_all_related_objects_with_model()``
  789. * ``get_all_related_many_to_many_objects()``
  790. * ``get_all_related_m2m_objects_with_model()``
  791. * ``get_concrete_fields_with_model()``
  792. * ``get_field_by_name()``
  793. * ``get_fields_with_model()``
  794. * ``get_m2m_with_model()``
  795. A :ref:`migration guide <migrating-old-meta-api>` has been provided to assist
  796. in converting your code from the old API to the new, official API.
  797. Loading ``cycle`` and ``firstof`` template tags from ``future`` library
  798. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  799. Django 1.6 introduced ``{% load cycle from future %}`` and
  800. ``{% load firstof from future %}`` syntax for forward compatibility of the
  801. :ttag:`cycle` and :ttag:`firstof` template tags. This syntax is now deprecated
  802. and will be removed in Django 2.0. You can simply remove the
  803. ``{% load ... from future %}`` tags.
  804. ``django.conf.urls.patterns()``
  805. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  806. In the olden days of Django, it was encouraged to reference views as strings
  807. in ``urlpatterns``::
  808. urlpatterns = patterns('',
  809. url('^$', 'myapp.views.myview'),
  810. )
  811. and Django would magically import ``myapp.views.myview`` internally and turn
  812. the string into a real function reference. In order to reduce repetition when
  813. referencing many views from the same module, the ``patterns()`` function takes
  814. a required initial ``prefix`` argument which is prepended to all
  815. views-as-strings in that set of ``urlpatterns``::
  816. urlpatterns = patterns('myapp.views',
  817. url('^$', 'myview'),
  818. url('^other/$', 'otherview'),
  819. )
  820. In the modern era, we have updated the tutorial to instead recommend importing
  821. your views module and referencing your view functions (or classes) directly.
  822. This has a number of advantages, all deriving from the fact that we are using
  823. normal Python in place of "Django String Magic": the errors when you mistype a
  824. view name are less obscure, IDEs can help with autocompletion of view names,
  825. etc.
  826. So these days, the above use of the ``prefix`` arg is much more likely to be
  827. written (and is better written) as::
  828. from myapp import views
  829. urlpatterns = patterns('',
  830. url('^$', views.myview),
  831. url('^other/$', views.otherview),
  832. )
  833. Thus ``patterns()`` serves little purpose and is a burden when teaching new users
  834. (answering the newbie's question "why do I need this empty string as the first
  835. argument to ``patterns()``?"). For these reasons, we are deprecating it.
  836. Updating your code is as simple as ensuring that ``urlpatterns`` is a list of
  837. :func:`django.conf.urls.url` instances. For example::
  838. from django.conf.urls import url
  839. from myapp import views
  840. urlpatterns = [
  841. url('^$', views.myview),
  842. url('^other/$', views.otherview),
  843. ]
  844. Passing a string as ``view`` to :func:`~django.conf.urls.url`
  845. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  846. Related to the previous item, referencing views as strings in the ``url()``
  847. function is deprecated. Pass the callable view as described in the previous
  848. section instead.
  849. Template-related settings
  850. ~~~~~~~~~~~~~~~~~~~~~~~~~
  851. As a consequence of the multiple template engines refactor, several settings
  852. are deprecated in favor of :setting:`TEMPLATES`:
  853. * ``ALLOWED_INCLUDE_ROOTS``
  854. * ``TEMPLATE_CONTEXT_PROCESSORS``
  855. * ``TEMPLATE_DIRS``
  856. * ``TEMPLATE_LOADERS``
  857. * ``TEMPLATE_STRING_IF_INVALID``
  858. ``django.core.context_processors``
  859. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  860. Built-in template context processors have been moved to
  861. ``django.template.context_processors``.
  862. ``django.test.SimpleTestCase.urls``
  863. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  864. The attribute :attr:`SimpleTestCase.urls <django.test.SimpleTestCase.urls>`
  865. for specifying URLconf configuration in tests has been deprecated and will be
  866. removed in Django 2.0. Use :func:`@override_settings(ROOT_URLCONF=...)
  867. <django.test.override_settings>` instead.
  868. ``prefix`` argument to :func:`~django.conf.urls.i18n.i18n_patterns`
  869. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  870. Related to the previous item, the ``prefix`` argument to
  871. :func:`django.conf.urls.i18n.i18n_patterns` has been deprecated. Simply pass a
  872. list of :func:`django.conf.urls.url` instances instead.
  873. Using an incorrect count of unpacked values in the :ttag:`for` template tag
  874. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  875. Using an incorrect count of unpacked values in :ttag:`for` tag will raise an
  876. exception rather than fail silently in Django 2.0.
  877. Passing a dotted path to :func:`~django.core.urlresolvers.reverse()` and :ttag:`url`
  878. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  879. Reversing URLs by Python path is an expensive operation as it causes the
  880. path being reversed to be imported. This behavior has also resulted in a
  881. `security issue`_. Use :ref:`named URL patterns <naming-url-patterns>`
  882. for reversing instead.
  883. If you are using :mod:`django.contrib.sitemaps`, add the ``name`` argument to
  884. the ``url`` that references :func:`django.contrib.sitemaps.views.sitemap`::
  885. from django.contrib.sitemaps.views import sitemap
  886. url(r'^sitemap\.xml$', sitemap, {'sitemaps': sitemaps},
  887. name='django.contrib.sitemaps.views.sitemap')
  888. to ensure compatibility when reversing by Python path is removed in Django 2.0.
  889. Similarly for GIS sitemaps, add ``name='django.contrib.gis.sitemaps.views.kml'``
  890. or ``name='django.contrib.gis.sitemaps.views.kmz'``.
  891. .. _security issue: https://www.djangoproject.com/weblog/2014/apr/21/security/#s-issue-unexpected-code-execution-using-reverse
  892. Aggregate methods and modules
  893. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  894. The ``django.db.models.sql.aggregates`` and
  895. ``django.contrib.gis.db.models.sql.aggregates`` modules (both private API), have
  896. been deprecated as ``django.db.models.aggregates`` and
  897. ``django.contrib.gis.db.models.aggregates`` are now also responsible
  898. for SQL generation. The old modules will be removed in Django 2.0.
  899. If you were using the old modules, see :doc:`Query Expressions
  900. </ref/models/expressions>` for instructions on rewriting custom aggregates
  901. using the new stable API.
  902. The following methods and properties of ``django.db.models.sql.query.Query``
  903. have also been deprecated and the backwards compatibility shims will be removed
  904. in Django 2.0:
  905. * ``Query.aggregates``, replaced by ``annotations``.
  906. * ``Query.aggregate_select``, replaced by ``annotation_select``.
  907. * ``Query.add_aggregate()``, replaced by ``add_annotation()``.
  908. * ``Query.set_aggregate_mask()``, replaced by ``set_annotation_mask()``.
  909. * ``Query.append_aggregate_mask()``, replaced by ``append_annotation_mask()``.
  910. Extending management command arguments through ``Command.option_list``
  911. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  912. Management commands now use :py:mod:`argparse` instead of :py:mod:`optparse` to
  913. parse command-line arguments passed to commands. This also means that the way
  914. to add custom arguments to commands has changed: instead of extending the
  915. ``option_list`` class list, you should now override the
  916. :meth:`~django.core.management.BaseCommand.add_arguments` method and add
  917. arguments through ``argparse.add_argument()``. See
  918. :ref:`this example <custom-commands-options>` for more details.
  919. ``django.core.management.NoArgsCommand``
  920. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  921. The class :class:`~django.core.management.NoArgsCommand` is now deprecated and
  922. will be removed in Django 2.0. Use :class:`~django.core.management.BaseCommand`
  923. instead, which takes no arguments by default.
  924. Listing all migrations in a project
  925. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  926. The ``--list`` option of the :djadmin:`migrate` management command is
  927. deprecated and will be removed in Django 2.0. Use :djadmin:`showmigrations`
  928. instead.
  929. ``cache_choices`` option of ``ModelChoiceField`` and ``ModelMultipleChoiceField``
  930. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  931. :class:`~django.forms.ModelChoiceField` and
  932. :class:`~django.forms.ModelMultipleChoiceField` took an undocumented, untested
  933. option ``cache_choices``. This cached querysets between multiple renderings of
  934. the same ``Form`` object. This option is subject to an accelerated deprecation
  935. and will be removed in Django 1.9.
  936. ``django.template.resolve_variable()``
  937. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  938. The function has been informally marked as "Deprecated" for some time. Replace
  939. ``resolve_variable(path, context)`` with
  940. ``django.template.Variable(path).resolve(context)``.
  941. ``django.contrib.webdesign``
  942. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  943. It provided the :ttag:`lorem` template tag which is now included in the
  944. built-in tags. Simply remove ``'django.contrib.webdesign'`` from
  945. :setting:`INSTALLED_APPS` and ``{% load webdesign %}`` from your templates.
  946. ``error_message`` argument to ``django.forms.RegexField``
  947. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  948. It provided backwards compatibility for pre-1.0 code, but its functionality is
  949. redundant. Use ``Field.error_messages['invalid']`` instead.
  950. Old :tfilter:`unordered_list` syntax
  951. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  952. An older (pre-1.0), more restrictive and verbose input format for the
  953. :tfilter:`unordered_list` template filter has been deprecated::
  954. ``['States', [['Kansas', [['Lawrence', []], ['Topeka', []]]], ['Illinois', []]]]``
  955. Using the new syntax, this becomes::
  956. ``['States', ['Kansas', ['Lawrence', 'Topeka'], 'Illinois']]``
  957. ``django.forms.Field._has_changed()``
  958. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  959. Rename this method to :meth:`~django.forms.Field.has_changed` by removing the
  960. leading underscore. The old name will still work until Django 2.0.
  961. ``django.utils.html.remove_tags()`` and ``removetags`` template filter
  962. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  963. ``django.utils.html.remove_tags()`` as well as the template filter
  964. ``removetags`` have been deprecated as they cannot guarantee safe output. Their
  965. existence is likely to lead to their use in security-sensitive contexts where
  966. they are not actually safe.
  967. The unused and undocumented ``django.utils.html.strip_entities()`` function has
  968. also been deprecated.
  969. ``is_admin_site`` argument to ``django.contrib.auth.views.password_reset()``
  970. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  971. It's a legacy option that should no longer be necessary.
  972. ``SubfieldBase``
  973. ~~~~~~~~~~~~~~~~
  974. ``django.db.models.fields.subclassing.SubfieldBase`` has been deprecated and
  975. will be removed in Django 2.0. Historically, it was used to handle fields where
  976. type conversion was needed when loading from the database, but it was not used
  977. in ``.values()`` calls or in aggregates. It has been replaced with
  978. :meth:`~django.db.models.Field.from_db_value`. Note that the new approach does
  979. not call the :meth:`~django.db.models.Field.to_python` method on assignment
  980. as was the case with ``SubfieldBase``.
  981. ``django.utils.checksums``
  982. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  983. The ``django.utils.checksums`` module has been deprecated and will be removed
  984. in Django 2.0. The functionality it provided (validating checksum using the
  985. Luhn algorithm) was undocumented and not used in Django. The module has been
  986. moved to the `django-localflavor`_ package (version 1.1+).
  987. .. _django-localflavor: https://pypi.python.org/pypi/django-localflavor
  988. ``django.contrib.admin.helpers.InlineAdminForm.original_content_type_id``
  989. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  990. The ``original_content_type_id`` attribute on ``InlineAdminForm`` has been
  991. deprecated and will be removed in Django 2.0. Historically, it was used
  992. to construct the "view on site" URL. This URL is now accessible using the
  993. ``absolute_url`` attribute of the form.
  994. ``django.views.generic.edit.FormMixin.get_form()``’s ``form_class`` argument
  995. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  996. ``FormMixin`` subclasses that override the ``get_form()`` method should make
  997. sure to provide a default value for the ``form_class`` argument since it's
  998. now optional.
  999. ``current_app`` argument of template-related APIs
  1000. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1001. The following functions and classes will no longer accept a ``current_app``
  1002. parameter to set an URL namespace in Django 2.0:
  1003. * ``django.shortcuts.render()``
  1004. * ``django.template.Context()``
  1005. * ``django.template.RequestContext()``
  1006. * ``django.template.response.TemplateResponse()``
  1007. Set ``request.current_app`` instead, where ``request`` is the first argument
  1008. to these functions or classes. If you're using a plain ``Context``, use a
  1009. ``RequestContext`` instead.
  1010. ``dictionary`` and ``context_instance`` arguments of rendering functions
  1011. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1012. The following functions will no longer accept the ``dictionary`` and
  1013. ``context_instance`` parameters in Django 2.0:
  1014. * ``django.shortcuts.render()``
  1015. * ``django.shortcuts.render_to_response()``
  1016. * ``django.template.loader.render_to_string()``
  1017. Use the ``context`` parameter instead. When ``dictionary`` is passed as a
  1018. positional argument, which is the most common idiom, no changes are needed.
  1019. If you're passing a :class:`~django.template.Context` in ``context_instance``,
  1020. pass a :class:`dict` in the ``context`` parameter instead. If you're passing a
  1021. :class:`~django.template.RequestContext`, pass the request separately in the
  1022. ``request`` parameter.
  1023. ``dirs`` argument of template-finding functions
  1024. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1025. The following functions will no longer accept a ``dirs`` parameter to override
  1026. ``TEMPLATE_DIRS`` in Django 2.0:
  1027. * :func:`django.template.loader.get_template()`
  1028. * :func:`django.template.loader.select_template()`
  1029. * :func:`django.shortcuts.render()`
  1030. * :func:`django.shortcuts.render_to_response()`
  1031. The parameter didn't work consistently across different template loaders and
  1032. didn't work for included templates.
  1033. ``django.template.loader.BaseLoader``
  1034. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1035. ``django.template.loader.BaseLoader`` was renamed to
  1036. ``django.template.loaders.base.Loader``. If you've written a custom template
  1037. loader that inherits ``BaseLoader``, you must inherit ``Loader`` instead.
  1038. ``django.test.utils.TestTemplateLoader``
  1039. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1040. Private API ``django.test.utils.TestTemplateLoader`` is deprecated in favor of
  1041. ``django.template.loaders.locmem.Loader``.
  1042. ``qn`` replaced by ``compiler``
  1043. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1044. In previous Django versions, various internal ORM methods (mostly ``as_sql``
  1045. methods) accepted a ``qn`` (for "quote name") argument, which was a reference
  1046. to a function that quoted identifiers for sending to the database. In Django
  1047. 1.8, that argument has been renamed to ``compiler`` and is now a full
  1048. ``SQLCompiler`` instance. For backwards-compatibility, calling a
  1049. ``SQLCompiler`` instance performs the same name-quoting that the ``qn``
  1050. function used to. However, this backwards-compatibility shim is immediately
  1051. deprecated: you should rename your ``qn`` arguments to ``compiler``, and call
  1052. ``compiler.quote_name_unless_alias(...)`` where you previously called
  1053. ``qn(...)``.
  1054. Default value of ``RedirectView.permanent``
  1055. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1056. The default value of the
  1057. :attr:`RedirectView.permanent <django.views.generic.base.RedirectView.permanent>`
  1058. attribute will change from ``True`` to ``False`` in Django 1.9.
  1059. Using ``AuthenticationMiddleware`` without ``SessionAuthenticationMiddleware``
  1060. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1061. :class:`django.contrib.auth.middleware.SessionAuthenticationMiddleware` was
  1062. added in Django 1.7. In Django 1.7.2, its functionality was moved to
  1063. ``auth.get_user()`` and, for backwards compatibility, enabled only if
  1064. ``'django.contrib.auth.middleware.SessionAuthenticationMiddleware'`` appears in
  1065. :setting:`MIDDLEWARE_CLASSES`.
  1066. In Django 2.0, session verification will be enabled regardless of whether or not
  1067. ``SessionAuthenticationMiddleware`` is enabled (at which point
  1068. ``SessionAuthenticationMiddleware`` will have no significance). You can add it
  1069. to your ``MIDDLEWARE_CLASSES`` sometime before then to opt-in. Please read the
  1070. :ref:`upgrade considerations <session-invalidation-on-password-change>` first.
  1071. ``django.contrib.sitemaps.FlatPageSitemap``
  1072. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1073. ``django.contrib.sitemaps.FlatPageSitemap`` has moved to
  1074. ``django.contrib.flatpages.sitemaps.FlatPageSitemap``. The old import location
  1075. is deprecated and will be removed in Django 1.9.
  1076. Model ``Field.related``
  1077. ~~~~~~~~~~~~~~~~~~~~~~~
  1078. Private attribute ``django.db.models.Field.related`` is deprecated in favor
  1079. of ``Field.rel``. The latter is an instance of
  1080. ``django.db.models.fields.related.ForeignObjectRel`` which replaces
  1081. ``django.db.models.related.RelatedObject``. The ``django.db.models.related``
  1082. module has been removed and the ``Field.related`` attribute will be removed in
  1083. Django 2.0.
  1084. ``ssi`` template tag
  1085. ~~~~~~~~~~~~~~~~~~~~
  1086. The :ttag:`ssi` template tag allows files to be included in a template by
  1087. absolute path. This is of limited use in most deployment situations, and
  1088. the :ttag:`include` tag often makes more sense. This tag is now deprecated and
  1089. will be removed in Django 2.0.
  1090. .. removed-features-1.8:
  1091. Features removed in 1.8
  1092. =======================
  1093. These features have reached the end of their deprecation cycle and so have been
  1094. removed in Django 1.8 (please see the :ref:`deprecation timeline
  1095. <deprecation-removed-in-1.8>` for more details):
  1096. * ``django.contrib.comments`` is removed.
  1097. * The following transaction management APIs are removed:
  1098. - ``TransactionMiddleware``
  1099. - the decorators and context managers ``autocommit``, ``commit_on_success``,
  1100. and ``commit_manually``, defined in ``django.db.transaction``
  1101. - the functions ``commit_unless_managed`` and ``rollback_unless_managed``,
  1102. also defined in ``django.db.transaction``
  1103. - the ``TRANSACTIONS_MANAGED`` setting
  1104. * The :ttag:`cycle` and :ttag:`firstof` template tags auto-escape their
  1105. arguments.
  1106. * The ``SEND_BROKEN_LINK_EMAILS`` setting is removed.
  1107. * ``django.middleware.doc.XViewMiddleware`` is removed.
  1108. * The ``Model._meta.module_name`` alias is removed.
  1109. * The backward compatible shims introduced to rename ``get_query_set``
  1110. and similar queryset methods are removed. This affects the following classes:
  1111. ``BaseModelAdmin``, ``ChangeList``, ``BaseCommentNode``,
  1112. ``GenericForeignKey``, ``Manager``, ``SingleRelatedObjectDescriptor`` and
  1113. ``ReverseSingleRelatedObjectDescriptor``.
  1114. * The backward compatible shims introduced to rename the attributes
  1115. ``ChangeList.root_query_set`` and ``ChangeList.query_set`` are removed.
  1116. * ``django.views.defaults.shortcut`` and ``django.conf.urls.shortcut`` are
  1117. removed.
  1118. * Support for the Python Imaging Library (PIL) module is removed.
  1119. * The following private APIs are removed:
  1120. - ``django.db.backend``
  1121. - ``django.db.close_connection()``
  1122. - ``django.db.backends.creation.BaseDatabaseCreation.set_autocommit()``
  1123. - ``django.db.transaction.is_managed()``
  1124. - ``django.db.transaction.managed()``
  1125. * ``django.forms.widgets.RadioInput`` is removed.
  1126. * The module ``django.test.simple`` and the class
  1127. ``django.test.simple.DjangoTestSuiteRunner`` are removed.
  1128. * The module ``django.test._doctest`` is removed.
  1129. * The ``CACHE_MIDDLEWARE_ANONYMOUS_ONLY`` setting is removed.
  1130. * Usage of the hard-coded *Hold down "Control", or "Command" on a Mac, to select
  1131. more than one.* string to override or append to user-provided ``help_text`` in
  1132. forms for ``ManyToMany`` model fields is not be performed by Django anymore
  1133. either at the model or forms layer.
  1134. * The ``Model._meta.get_(add|change|delete)_permission`` methods are removed.
  1135. * The session key ``django_language`` is no longer read for backwards
  1136. compatibility.
  1137. * Geographic Sitemaps are removed
  1138. (``django.contrib.gis.sitemaps.views.index`` and
  1139. ``django.contrib.gis.sitemaps.views.sitemap``).
  1140. * ``django.utils.html.fix_ampersands``, the ``fix_ampersands`` template filter,
  1141. and ``django.utils.html.clean_html`` are removed.