1.8.txt 58 KB

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