1.9.txt 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250
  1. ============================================
  2. Django 1.9 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. Welcome to Django 1.9!
  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.8 or older versions. We've :ref:`dropped some features
  8. <deprecation-removed-in-1.9>` that have reached the end of their deprecation
  9. cycle, and we've `begun the deprecation process for some features`_.
  10. .. _`new features`: `What's new in Django 1.9`_
  11. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.9`_
  12. .. _`dropped some features`: `Features removed in 1.9`_
  13. .. _`begun the deprecation process for some features`: `Features deprecated in 1.9`_
  14. Python compatibility
  15. ====================
  16. Like Django 1.8, Django 1.9 requires Python 2.7 or above, though we
  17. **highly recommend** the latest minor release. We've dropped support for
  18. Python 3.2 and 3.3, and added support for Python 3.5.
  19. What's new in Django 1.9
  20. ========================
  21. Performing actions after a transaction commit
  22. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  23. The new :func:`~django.db.transaction.on_commit` hook allows performing actions
  24. after a database transaction is successfully committed. This is useful for
  25. tasks such as sending notification emails, creating queued tasks, or
  26. invalidating caches.
  27. This functionality from the `django-transaction-hooks`_ package has been
  28. integrated into Django.
  29. .. _django-transaction-hooks: https://pypi.python.org/pypi/django-transaction-hooks
  30. Password validation
  31. ~~~~~~~~~~~~~~~~~~~
  32. Django now offers password validation to help prevent the usage of weak
  33. passwords by users. The validation is integrated in the included password
  34. change and reset forms and is simple to integrate in any other code.
  35. Validation is performed by one or more validators, configured in the new
  36. :setting:`AUTH_PASSWORD_VALIDATORS` setting.
  37. Four validators are included in Django, which can enforce a minimum length,
  38. compare the password to the user's attributes like their name, ensure
  39. passwords aren't entirely numeric, or check against an included list of common
  40. passwords. You can combine multiple validators, and some validators have
  41. custom configuration options. For example, you can choose to provide a custom
  42. list of common passwords. Each validator provides a help text to explain its
  43. requirements to the user.
  44. By default, no validation is performed and all passwords are accepted, so if
  45. you don't set :setting:`AUTH_PASSWORD_VALIDATORS`, you will not see any
  46. change. In new projects created with the default :djadmin:`startproject`
  47. template, a simple set of validators is enabled. To enable basic validation in
  48. the included auth forms for your project, you could set, for example::
  49. AUTH_PASSWORD_VALIDATORS = [
  50. {
  51. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  52. },
  53. {
  54. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  55. },
  56. {
  57. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  58. },
  59. {
  60. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  61. },
  62. ]
  63. See :ref:`password-validation` for more details.
  64. Permission mixins for class-based views
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. Django now ships with the mixins
  67. :class:`~django.contrib.auth.mixins.AccessMixin`,
  68. :class:`~django.contrib.auth.mixins.LoginRequiredMixin`,
  69. :class:`~django.contrib.auth.mixins.PermissionRequiredMixin`, and
  70. :class:`~django.contrib.auth.mixins.UserPassesTestMixin` to provide the
  71. functionality of the ``django.contrib.auth.decorators`` for class-based views.
  72. These mixins have been taken from, or are at least inspired by, the
  73. `django-braces`_ project.
  74. There are a few differences between Django's and django-braces' implementation,
  75. though:
  76. * The :attr:`~django.contrib.auth.mixins.AccessMixin.raise_exception` attribute
  77. can only be ``True`` or ``False``. Custom exceptions or callables are not
  78. supported.
  79. * The :meth:`~django.contrib.auth.mixins.AccessMixin.handle_no_permission`
  80. method does not take a ``request`` argument. The current request is available
  81. in ``self.request``.
  82. * The custom ``test_func()`` of :class:`~django.contrib.auth.mixins.UserPassesTestMixin`
  83. does not take a ``user`` argument. The current user is available in
  84. ``self.request.user``.
  85. * The :attr:`permission_required <django.contrib.auth.mixins.PermissionRequiredMixin>`
  86. attribute supports a string (defining one permission) or a list/tuple of
  87. strings (defining multiple permissions) that need to be fulfilled to grant
  88. access.
  89. * The new :attr:`~django.contrib.auth.mixins.AccessMixin.permission_denied_message`
  90. attribute allows passing a message to the ``PermissionDenied`` exception.
  91. .. _django-braces: http://django-braces.readthedocs.org/en/latest/index.html
  92. New styling for ``contrib.admin``
  93. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  94. The admin sports a modern, flat design. It still provides a fully-functional
  95. experience to `YUI's A-grade`_ browsers. Older browser may experience varying
  96. levels of graceful degradation.
  97. .. _YUI's A-grade: https://github.com/yui/yui3/wiki/Graded-Browser-Support
  98. Minor features
  99. ~~~~~~~~~~~~~~
  100. :mod:`django.contrib.admin`
  101. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  102. * Admin views now have ``model_admin`` or ``admin_site`` attributes.
  103. * The URL of the admin change view has been changed (was at
  104. ``/admin/<app>/<model>/<pk>/`` by default and is now at
  105. ``/admin/<app>/<model>/<pk>/change/``). This should not affect your
  106. application unless you have hardcoded admin URLs. In that case, replace those
  107. links by :ref:`reversing admin URLs <admin-reverse-urls>` instead. Note that
  108. the old URL still redirects to the new one for backwards compatibility, but
  109. it may be removed in a future version.
  110. * :meth:`ModelAdmin.get_list_select_related()
  111. <django.contrib.admin.ModelAdmin.get_list_select_related>` was added to allow
  112. changing the ``select_related()`` values used in the admin's changelist query
  113. based on the request.
  114. * The ``available_apps`` context variable, which lists the available
  115. applications for the current user, has been added to the
  116. :meth:`AdminSite.each_context() <django.contrib.admin.AdminSite.each_context>`
  117. method.
  118. * :attr:`AdminSite.empty_value_display
  119. <django.contrib.admin.AdminSite.empty_value_display>` and
  120. :attr:`ModelAdmin.empty_value_display
  121. <django.contrib.admin.ModelAdmin.empty_value_display>` were added to override
  122. the display of empty values in admin change list. You can also customize the
  123. value for each field.
  124. * The time picker widget includes a '6 p.m' option for consistency of having
  125. predefined options every 6 hours.
  126. * JavaScript slug generation now supports Romanian characters.
  127. :mod:`django.contrib.auth`
  128. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  129. * The default iteration count for the PBKDF2 password hasher has been increased
  130. by 20%. This backwards compatible change will not affect users who have
  131. subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to change the
  132. default value.
  133. * The ``BCryptSHA256PasswordHasher`` will now update passwords if its
  134. ``rounds`` attribute is changed.
  135. * ``AbstractBaseUser`` and ``BaseUserManager`` were moved to a new
  136. ``django.contrib.auth.base_user`` module so that they can be imported without
  137. including ``django.contrib.auth`` in :setting:`INSTALLED_APPS` (this raised
  138. a deprecation warning in older versions and is no longer supported in
  139. Django 1.9).
  140. * The permission argument of
  141. :func:`~django.contrib.auth.decorators.permission_required()` accepts all
  142. kinds of iterables, not only list and tuples.
  143. * The new :class:`~django.contrib.auth.middleware.PersistentRemoteUserMiddleware`
  144. makes it possible to use ``REMOTE_USER`` for setups where the header is only
  145. populated on login pages instead of every request in the session.
  146. :mod:`django.contrib.gis`
  147. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  148. * All ``GeoQuerySet`` methods have been deprecated and replaced by
  149. :doc:`equivalent database functions </ref/contrib/gis/functions>`. As soon
  150. as the legacy methods have been replaced in your code, you should even be
  151. able to remove the special ``GeoManager`` from your GIS-enabled classes.
  152. * The GDAL interface now supports instantiating file-based and in-memory
  153. :ref:`GDALRaster objects <raster-data-source-objects>` from raw data.
  154. Setters for raster properties such as projection or pixel values have
  155. been added.
  156. * For PostGIS users, the new :class:`~django.contrib.gis.db.models.RasterField`
  157. allows :ref:`storing GDALRaster objects <creating-and-saving-raster-models>`.
  158. It supports automatic spatial index creation and reprojection when saving a
  159. model. It does not yet support spatial querying.
  160. * The new :meth:`GDALRaster.warp() <django.contrib.gis.gdal.GDALRaster.warp>`
  161. method allows warping a raster by specifying target raster properties such as
  162. origin, width, height, or pixel size (amongst others).
  163. * The new :meth:`GDALRaster.transform()
  164. <django.contrib.gis.gdal.GDALRaster.transform>` method allows transforming a
  165. raster into a different spatial reference system by specifying a target
  166. ``srid``.
  167. * The new :class:`~django.contrib.gis.geoip2.GeoIP2` class allows using
  168. MaxMind's GeoLite2 databases which includes support for IPv6 addresses.
  169. :mod:`django.contrib.messages`
  170. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  171. * ...
  172. :mod:`django.contrib.postgres`
  173. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  174. * Added support for the :lookup:`rangefield.contained_by` lookup for some built
  175. in fields which correspond to the range fields.
  176. * Added :class:`~django.contrib.postgres.fields.JSONField`.
  177. * Added :doc:`/ref/contrib/postgres/aggregates`.
  178. * Fixed serialization of
  179. :class:`~django.contrib.postgres.fields.DateRangeField` and
  180. :class:`~django.contrib.postgres.fields.DateTimeRangeField`.
  181. * Added the :class:`~django.contrib.postgres.functions.TransactionNow` database
  182. function.
  183. :mod:`django.contrib.redirects`
  184. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  185. * ...
  186. :mod:`django.contrib.sessions`
  187. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  188. * ...
  189. :mod:`django.contrib.sitemaps`
  190. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  191. * ...
  192. :mod:`django.contrib.sites`
  193. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  194. * :func:`~django.contrib.sites.shortcuts.get_current_site` now handles the case
  195. where ``request.get_host()`` returns ``domain:port``, e.g.
  196. ``example.com:80``. If the lookup fails because the host does not match a
  197. record in the database and the host has a port, the port is stripped and the
  198. lookup is retried with the domain part only.
  199. :mod:`django.contrib.staticfiles`
  200. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  201. * ...
  202. :mod:`django.contrib.syndication`
  203. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  204. * ...
  205. Cache
  206. ^^^^^
  207. * ``django.core.cache.backends.base.BaseCache`` now has a ``get_or_set()``
  208. method.
  209. * :func:`django.views.decorators.cache.never_cache` now sends more persuasive
  210. headers (added ``no-cache, no-store, must-revalidate`` to ``Cache-Control``)
  211. to better prevent caching.
  212. Email
  213. ^^^^^
  214. * ...
  215. File Storage
  216. ^^^^^^^^^^^^
  217. * :meth:`Storage.get_valid_name()
  218. <django.core.files.storage.Storage.get_valid_name>` is now called when
  219. the :attr:`~django.db.models.FileField.upload_to` is a callable.
  220. * :class:`~django.core.files.File` now has the ``seekable()`` method when using
  221. Python 3.
  222. File Uploads
  223. ^^^^^^^^^^^^
  224. * ...
  225. Forms
  226. ^^^^^
  227. * :class:`~django.forms.ModelForm` accepts the new ``Meta`` option
  228. ``field_classes`` to customize the type of the fields. See
  229. :ref:`modelforms-overriding-default-fields` for details.
  230. * You can now specify the order in which form fields are rendered with the
  231. :attr:`~django.forms.Form.field_order` attribute, the ``field_order``
  232. constructor argument , or the :meth:`~django.forms.Form.order_fields` method.
  233. * A form prefix can be specified inside a form class, not only when
  234. instantiating a form. See :ref:`form-prefix` for details.
  235. * You can now :ref:`specify keyword arguments <custom-formset-form-kwargs>`
  236. that you want to pass to the constructor of forms in a formset.
  237. * :class:`~django.forms.SlugField` now accepts an
  238. :attr:`~django.forms.SlugField.allow_unicode` argument to allow Unicode
  239. characters in slugs.
  240. * :class:`~django.forms.CharField` now accepts a
  241. :attr:`~django.forms.CharField.strip` argument to strip input data of leading
  242. and trailing whitespace. As this defaults to ``True`` this is different
  243. behavior from previous releases.
  244. * Form fields now support the :attr:`~django.forms.Field.disabled` argument,
  245. allowing the field widget to be displayed disabled by browsers.
  246. Generic Views
  247. ^^^^^^^^^^^^^
  248. * Class-based views generated using ``as_view()`` now have ``view_class``
  249. and ``view_initkwargs`` attributes.
  250. * :func:`~django.utils.decorators.method_decorator` can now be used to
  251. :ref:`decorate classes instead of methods <decorating-class-based-views>`.
  252. Internationalization
  253. ^^^^^^^^^^^^^^^^^^^^
  254. * The :func:`django.views.i18n.set_language` view now properly redirects to
  255. :ref:`translated URLs <url-internationalization>`, when available.
  256. * The :func:`django.views.i18n.javascript_catalog` view now works correctly
  257. if used multiple times with different configurations on the same page.
  258. * The :func:`django.utils.timezone.make_aware` function gained an ``is_dst``
  259. argument to help resolve ambiguous times during DST transitions.
  260. * You can now use locale variants supported by gettext. These are usually used
  261. for languages which can be written in different scripts, for example Latin
  262. and Cyrillic (e.g. ``be@latin``).
  263. * Added the :func:`django.views.i18n.json_catalog` view to help build a custom
  264. client-side i18n library upon Django translations. It returns a JSON object
  265. containing a translations catalog, formatting settings, and a plural rule.
  266. * Added the ``name_translated`` attribute to the object returned by the
  267. :ttag:`get_language_info` template tag. Also added a corresponding template
  268. filter: :tfilter:`language_name_translated`.
  269. * You can now run :djadmin:`compilemessages` from the root directory of your
  270. project and it will find all the app message files that were created by
  271. :djadmin:`makemessages`.
  272. * :ttag:`blocktrans` supports assigning its output to a variable using
  273. ``asvar``.
  274. Management Commands
  275. ^^^^^^^^^^^^^^^^^^^
  276. * The new :djadmin:`sendtestemail` command lets you send a test email to
  277. easily confirm that email sending through Django is working.
  278. * To increase the readability of the SQL code generated by
  279. :djadmin:`sqlmigrate`, the SQL code generated for each migration operation is
  280. preceded by the operation's description.
  281. * The :djadmin:`dumpdata` command output is now deterministically ordered.
  282. Moreover, when the ``--ouput`` option is specified, it also shows a progress
  283. bar in the terminal.
  284. * The :djadmin:`createcachetable` command now has a ``--dry-run`` flag to
  285. print out the SQL rather than execute it.
  286. * The :djadmin:`startapp` command creates an ``apps.py`` file and adds
  287. ``default_app_config`` in ``__init__.py``.
  288. * When using the PostgreSQL backend, the :djadmin:`dbshell` command can connect
  289. to the database using the password from your settings file (instead of
  290. requiring it to be manually entered).
  291. Migrations
  292. ^^^^^^^^^^
  293. * Initial migrations are now marked with an :attr:`initial = True
  294. <django.db.migrations.Migration.initial>` class attribute which allows
  295. :djadminopt:`migrate --fake-initial <--fake-initial>` to more easily detect
  296. initial migrations.
  297. * Added support for serialization of ``functools.partial`` objects.
  298. Models
  299. ^^^^^^
  300. * :meth:`QuerySet.bulk_create() <django.db.models.query.QuerySet.bulk_create>`
  301. now works on proxy models.
  302. * Database configuration gained a :setting:`TIME_ZONE <DATABASE-TIME_ZONE>`
  303. option for interacting with databases that store datetimes in local time and
  304. don't support time zones when :setting:`USE_TZ` is ``True``.
  305. * Added the :meth:`RelatedManager.set()
  306. <django.db.models.fields.related.RelatedManager.set()>` method to the related
  307. managers created by ``ForeignKey``, ``GenericForeignKey``, and
  308. ``ManyToManyField``.
  309. * The :meth:`~django.db.models.fields.related.RelatedManager.add` method on
  310. a reverse foreign key now has a ``bulk`` parameter to allow executing one
  311. query regardless of the number of objects being added rather than one query
  312. per object.
  313. * Added the ``keep_parents`` parameter to :meth:`Model.delete()
  314. <django.db.models.Model.delete>` to allow deleting only a child's data in a
  315. model that uses multi-table inheritance.
  316. * :meth:`Model.delete() <django.db.models.Model.delete>`
  317. and :meth:`QuerySet.delete() <django.db.models.query.QuerySet.delete>` return
  318. the number of objects deleted.
  319. * Added a system check to prevent defining both ``Meta.ordering`` and
  320. ``order_with_respect_to`` on the same model.
  321. * :lookup:`Date and time <year>` lookups can be chained with other lookups
  322. (such as :lookup:`exact`, :lookup:`gt`, :lookup:`lt`, etc.). For example:
  323. ``Entry.objects.filter(pub_date__month__gt=6)``.
  324. * Time lookups (hour, minute, second) are now supported by
  325. :class:`~django.db.models.TimeField` for all database backends. Support for
  326. backends other than SQLite was added but undocumented in Django 1.7.
  327. * You can specify the ``output_field`` parameter of the
  328. :class:`~django.db.models.Avg` aggregate in order to aggregate over
  329. non-numeric columns, such as ``DurationField``.
  330. * Added the :lookup:`date` lookup to :class:`~django.db.models.DateTimeField`
  331. to allow querying the field by only the date portion.
  332. * Added the :class:`~django.db.models.functions.Greatest` and
  333. :class:`~django.db.models.functions.Least` database functions.
  334. * Added the :class:`~django.db.models.functions.Now` database function, which
  335. returns the current date and time.
  336. * :class:`~django.db.models.SlugField` now accepts an
  337. :attr:`~django.db.models.SlugField.allow_unicode` argument to allow Unicode
  338. characters in slugs.
  339. * Added support for referencing annotations in ``QuerySet.distinct()``.
  340. CSRF
  341. ^^^^
  342. * The request header's name used for CSRF authentication can be customized
  343. with :setting:`CSRF_HEADER_NAME`.
  344. Signals
  345. ^^^^^^^
  346. * ...
  347. Templates
  348. ^^^^^^^^^
  349. * Template tags created with the :meth:`~django.template.Library.simple_tag`
  350. helper can now store results in a template variable by using the ``as``
  351. argument.
  352. * Added a :meth:`Context.setdefault() <django.template.Context.setdefault>`
  353. method.
  354. * A warning will now be logged for missing context variables. These messages
  355. will be logged to the :ref:`django.template <django-template-logger>` logger.
  356. * The :ttag:`firstof` template tag supports storing the output in a variable
  357. using 'as'.
  358. * :meth:`Context.update() <django.template.Context.update>` can now be used as
  359. a context manager.
  360. * Django template loaders can now extend templates recursively.
  361. * The debug page template postmortem now include output from each engine that
  362. is installed.
  363. * :ref:`Debug page integration <template-debug-integration>` for custom
  364. template engines was added.
  365. * The :class:`~django.template.backends.django.DjangoTemplates` backend gained
  366. the ability to register libraries and builtins explicitly through the
  367. template :setting:`OPTIONS <TEMPLATES-OPTIONS>`.
  368. * The ``timesince`` and ``timeuntil`` filters were improved to deal with leap
  369. years when given large time spans.
  370. * The ``include`` tag now caches parsed templates objects during template
  371. rendering, speeding up reuse in places such as for loops.
  372. Requests and Responses
  373. ^^^^^^^^^^^^^^^^^^^^^^
  374. * Unless :attr:`HttpResponse.reason_phrase
  375. <django.http.HttpResponse.reason_phrase>` is explicitly set, it now is
  376. determined by the current value of :attr:`HttpResponse.status_code
  377. <django.http.HttpResponse.status_code>`. Modifying the value of
  378. ``status_code`` outside of the constructor will also modify the value of
  379. ``reason_phrase``.
  380. * The debug view now shows details of chained exceptions on Python 3.
  381. * The default 40x error views now accept a second positional parameter, the
  382. exception that triggered the view.
  383. * View error handlers now support
  384. :class:`~django.template.response.TemplateResponse`, commonly used with
  385. class-based views.
  386. * Exceptions raised by the ``render()`` method are now passed to the
  387. ``process_exception()`` method of each middleware.
  388. * Request middleware can now set :attr:`HttpRequest.urlconf
  389. <django.http.HttpRequest.urlconf>` to ``None`` to revert any changes made
  390. by previous middleware and return to using the :setting:`ROOT_URLCONF`.
  391. * The :setting:`DISALLOWED_USER_AGENTS` check in
  392. :class:`~django.middleware.common.CommonMiddleware` now raises a
  393. :class:`~django.core.exceptions.PermissionDenied` exception as opposed to
  394. returning an :class:`~django.http.HttpResponseForbidden` so that
  395. :data:`~django.conf.urls.handler403` is invoked.
  396. * Added :meth:`HttpRequest.get_port() <django.http.HttpRequest.get_port>` to
  397. fetch the originating port of the request.
  398. * Added the ``json_dumps_params`` parameter to
  399. :class:`~django.http.JsonResponse` to allow passing keyword arguments to the
  400. ``json.dumps()`` call used to generate the response.
  401. Tests
  402. ^^^^^
  403. * Added the :meth:`json() <django.test.Response.json>` method to test client
  404. responses to give access to the response body as JSON.
  405. * Added the :meth:`~django.test.Client.force_login()` method to the test
  406. client. Use this method to simulate the effect of a user logging into the
  407. site while skipping the authentication and verification steps of
  408. :meth:`~django.test.Client.login()`.
  409. URLs
  410. ^^^^
  411. * Regular expression lookaround assertions are now allowed in URL patterns.
  412. * The application namespace can now be set using an ``app_name`` attribute
  413. on the included module or object. It can also be set by passing a 2-tuple
  414. of (<list of patterns>, <application namespace>) as the first argument to
  415. :func:`~django.conf.urls.include`.
  416. Validators
  417. ^^^^^^^^^^
  418. * Added :func:`django.core.validators.int_list_validator` to generate
  419. validators of strings containing integers separated with a custom character.
  420. * :class:`~django.core.validators.EmailValidator` now limits the length of
  421. domain name labels to 63 characters per :rfc:`1034`.
  422. * Added :func:`~django.core.validators.validate_unicode_slug` to validate slugs
  423. that may contain Unicode characters.
  424. Database backends
  425. ^^^^^^^^^^^^^^^^^
  426. * The PostgreSQL backend (``django.db.backends.postgresql_psycopg2``) is also
  427. available as ``django.db.backends.postgresql``. The old name will continue to
  428. be available for backwards compatibility.
  429. Backwards incompatible changes in 1.9
  430. =====================================
  431. .. warning::
  432. In addition to the changes outlined in this section, be sure to review the
  433. :doc:`deprecation timeline </internals/deprecation>` for any features that
  434. have been removed. If you haven't updated your code within the
  435. deprecation timeline for a given feature, its removal may appear as a
  436. backwards incompatible change.
  437. Database backend API
  438. ~~~~~~~~~~~~~~~~~~~~
  439. * A couple of new tests rely on the ability of the backend to introspect column
  440. defaults (returning the result as ``Field.default``). You can set the
  441. ``can_introspect_default`` database feature to ``False`` if your backend
  442. doesn't implement this. You may want to review the implementation on the
  443. backends that Django includes for reference (:ticket:`24245`).
  444. * Registering a global adapter or converter at the level of the DB-API module
  445. to handle time zone information of :class:`~datetime.datetime` values passed
  446. as query parameters or returned as query results on databases that don't
  447. support time zones is discouraged. It can conflict with other libraries.
  448. The recommended way to add a time zone to :class:`~datetime.datetime` values
  449. fetched from the database is to register a converter for ``DateTimeField``
  450. in ``DatabaseOperations.get_db_converters()``.
  451. The ``needs_datetime_string_cast`` database feature was removed. Database
  452. backends that set it must register a converter instead, as explained above.
  453. * The ``DatabaseOperations.value_to_db_<type>()`` methods were renamed to
  454. ``adapt_<type>field_value()`` to mirror the ``convert_<type>field_value()``
  455. methods.
  456. * To use the new ``date`` lookup, third-party database backends may need to
  457. implement the ``DatabaseOperations.datetime_cast_date_sql()`` method.
  458. * The ``DatabaseOperations.time_extract_sql()`` method was added. It calls the
  459. existing ``date_extract_sql()`` method. This method is overridden by the
  460. SQLite backend to add time lookups (hour, minute, second) to
  461. :class:`~django.db.models.TimeField`, and may be needed by third-party
  462. database backends.
  463. * The ``DatabaseOperations.datetime_cast_sql()`` method (not to be confused
  464. with ``DatabaseOperations.datetime_cast_date_sql()`` mentioned above)
  465. has been removed. This method served to format dates on Oracle long
  466. before 1.0, but hasn't been overridden by any core backend in years
  467. and hasn't been called anywhere in Django's code or tests.
  468. Default settings that were tuples are now lists
  469. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  470. The default settings in ``django.conf.global_settings`` were a combination of
  471. lists and tuples. All settings that were formerly tuples are now lists.
  472. ``is_usable`` attribute on template loaders is removed
  473. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  474. Django template loaders previously required an ``is_usable`` attribute to be
  475. defined. If a loader was configured in the template settings and this attribute
  476. was ``False``, the loader would be silently ignored. In practice, this was only
  477. used by the egg loader to detect if setuptools was installed. The ``is_usable``
  478. attribute is now removed and the egg loader instead fails at runtime if
  479. setuptools is not installed.
  480. Related set direct assignment
  481. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  482. :ref:`Direct assignment <direct-assignment>`) used to perform a ``clear()``
  483. followed by a call to ``add()``. This caused needlessly large data changes
  484. and prevented using the :data:`~django.db.models.signals.m2m_changed` signal
  485. to track individual changes in many-to-many relations.
  486. Direct assignment now relies on the the new
  487. :meth:`django.db.models.fields.related.RelatedManager.set()` method on
  488. related managers which by default only processes changes between the
  489. existing related set and the one that's newly assigned. The previous behavior
  490. can be restored by replacing direct assignment by a call to ``set()`` with
  491. the keyword argument ``clear=True``.
  492. ``ModelForm``, and therefore ``ModelAdmin``, internally rely on direct
  493. assignment for many-to-many relations and as a consequence now use the new
  494. behavior.
  495. Filesystem-based template loaders catch more specific exceptions
  496. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  497. When using the :class:`filesystem.Loader <django.template.loaders.filesystem.Loader>`
  498. or :class:`app_directories.Loader <django.template.loaders.app_directories.Loader>`
  499. template loaders, earlier versions of Django raised a
  500. :exc:`~django.template.TemplateDoesNotExist` error if a template source existed
  501. but was unreadable. This could happen under many circumstances, such as if
  502. Django didn't have permissions to open the file, or if the template source was
  503. a directory. Now, Django only silences the exception if the template source
  504. does not exist. All other situations result in the original ``IOError`` being
  505. raised.
  506. HTTP redirects no longer forced to absolute URIs
  507. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  508. Relative redirects are no longer converted to absolute URIs. :rfc:`2616`
  509. required the ``Location`` header in redirect responses to be an absolute URI,
  510. but it has been superseded by :rfc:`7231` which allows relative URIs in
  511. ``Location``, recognizing the actual practice of user agents, almost all of
  512. which support them.
  513. Consequently, the expected URLs passed to ``assertRedirects`` should generally
  514. no longer include the scheme and domain part of the URLs. For example,
  515. ``self.assertRedirects(response, 'http://testserver/some-url/')`` should be
  516. replaced by ``self.assertRedirects(response, '/some-url/')`` (unless the
  517. redirection specifically contained an absolute URL, of course).
  518. Dropped support for PostgreSQL 9.0
  519. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  520. Upstream support for PostgreSQL 9.0 ended in September 2015. As a consequence,
  521. Django 1.9 sets 9.1 as the minimum PostgreSQL version it officially supports.
  522. Bulk behavior of ``add()`` method of related managers
  523. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  524. To improve performance, the ``add()`` methods of the related managers created
  525. by ``ForeignKey`` and ``GenericForeignKey`` changed from a series of
  526. ``Model.save()`` calls to a single ``QuerySet.update()`` call. The change means
  527. that ``pre_save`` and ``post_save`` signals aren't sent anymore. You can use
  528. the ``bulk=False`` keyword argument to revert to the previous behavior.
  529. Template ``LoaderOrigin`` and ``StringOrigin`` are removed
  530. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  531. In previous versions of Django, when a template engine was initialized with
  532. debug as ``True``, an instance of ``django.template.loader.LoaderOrigin`` or
  533. ``django.template.base.StringOrigin`` was set as the origin attribute on the
  534. template object. These classes have been combined into
  535. :class:`~django.template.base.Origin` and is now always set regardless of the
  536. engine debug setting.
  537. .. _default-logging-changes-19:
  538. Changes to the default logging configuration
  539. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  540. To make it easier to write custom logging configurations, Django's default
  541. logging configuration no longer defines 'django.request' and 'django.security'
  542. loggers. Instead, it defines a single 'django' logger with two handlers:
  543. * 'console': filtered at the ``INFO`` level and only active if ``DEBUG=True``.
  544. * 'mail_admins': filtered at the ``ERROR`` level and only active if
  545. ``DEBUG=False``.
  546. If you aren't overriding Django's default logging, you should see minimal
  547. changes in behavior, but you might see some new logging to the ``runserver``
  548. console, for example.
  549. If you are overriding Django's default logging, you should check to see how
  550. your configuration merges with the new defaults.
  551. ``HttpRequest`` details in error reporting
  552. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  553. It was redundant to display the full details of the
  554. :class:`~django.http.HttpRequest` each time it appeared as a stack frame
  555. variable in the HTML version of the debug page and error email. Thus, the HTTP
  556. request will now display the same standard representation as other variables
  557. (``repr(request)``). As a result, the method
  558. ``ExceptionReporterFilter.get_request_repr()`` was removed.
  559. The contents of the text version of the email were modified to provide a
  560. traceback of the same structure as in the case of AJAX requests. The traceback
  561. details are rendered by the ``ExceptionReporter.get_traceback_text()`` method.
  562. Removal of time zone aware global adapters and converters for datetimes
  563. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  564. Django no longer registers global adapters and converters for managing time
  565. zone information on :class:`~datetime.datetime` values sent to the database as
  566. query parameters or read from the database in query results. This change
  567. affects projects that meet all the following conditions:
  568. * The :setting:`USE_TZ` setting is ``True``.
  569. * The database is SQLite, MySQL, Oracle, or a third-party database that
  570. doesn't support time zones. In doubt, you can check the value of
  571. ``connection.features.supports_timezones``.
  572. * The code queries the database outside of the ORM, typically with
  573. ``cursor.execute(sql, params)``.
  574. If you're passing aware :class:`~datetime.datetime` parameters to such
  575. queries, you should turn them into naive datetimes in UTC::
  576. from django.utils import timezone
  577. param = timezone.make_naive(param, timezone.utc)
  578. If you fail to do so, Django 1.9 and 2.0 will perform the conversion like
  579. earlier versions but emit a deprecation warning. Django 2.0 won't perform any
  580. conversion, which may result in data corruption.
  581. If you're reading :class:`~datetime.datetime` values from the results, they
  582. will be naive instead of aware. You can compensate as follows::
  583. from django.utils import timezone
  584. value = timezone.make_aware(value, timezone.utc)
  585. You don't need any of this if you're querying the database through the ORM,
  586. even if you're using :meth:`raw() <django.db.models.query.QuerySet.raw>`
  587. queries. The ORM takes care of managing time zone information.
  588. Template tag modules are imported when templates are configured
  589. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  590. The :class:`~django.template.backends.django.DjangoTemplates` backend now
  591. performs discovery on installed template tag modules when instantiated. This
  592. update enables libraries to be provided explicitly via the ``'libraries'``
  593. key of :setting:`OPTIONS <TEMPLATES-OPTIONS>` when defining a
  594. :class:`~django.template.backends.django.DjangoTemplates` backend. Import
  595. or syntax errors in template tag modules now fail early at instantiation time
  596. rather than when a template with a :ttag:`{% load %}<load>` tag is first
  597. compiled.
  598. ``django.template.base.add_to_builtins()`` is removed
  599. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  600. Although it was a private API, projects commonly used ``add_to_builtins()`` to
  601. make template tags and filters available without using the
  602. :ttag:`{% load %}<load>` tag. This API has been formalized. Projects should now
  603. define built-in libraries via the ``'builtins'`` key of :setting:`OPTIONS
  604. <TEMPLATES-OPTIONS>` when defining a
  605. :class:`~django.template.backends.django.DjangoTemplates` backend.
  606. .. _simple-tag-conditional-escape-fix:
  607. ``simple_tag`` now wraps tag output in ``conditional_escape``
  608. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  609. In general, template tags do not autoescape their contents, and this behavior is
  610. :ref:`documented <tags-auto-escaping>`. For tags like
  611. :class:`~django.template.Library.inclusion_tag`, this is not a problem because
  612. the included template will perform autoescaping. For
  613. :class:`~django.template.Library.assignment_tag`, the output will be escaped
  614. when it is used as a variable in the template.
  615. For the intended use cases of :class:`~django.template.Library.simple_tag`,
  616. however, it is very easy to end up with incorrect HTML and possibly an XSS
  617. exploit. For example::
  618. @register.simple_tag(takes_context=True)
  619. def greeting(context):
  620. return "Hello {0}!".format(context['request'].user.first_name)
  621. In older versions of Django, this will be an XSS issue because
  622. ``user.first_name`` is not escaped.
  623. In Django 1.9, this is fixed: if the template context has ``autoescape=True``
  624. set (the default), then ``simple_tag`` will wrap the output of the tag function
  625. with :func:`~django.utils.html.conditional_escape`.
  626. To fix your ``simple_tag``\s, it is best to apply the following practices:
  627. * Any code that generates HTML should use either the template system or
  628. :func:`~django.utils.html.format_html`.
  629. * If the output of a ``simple_tag`` needs escaping, use
  630. :func:`~django.utils.html.escape` or
  631. :func:`~django.utils.html.conditional_escape`.
  632. * If you are absolutely certain that you are outputting HTML from a trusted
  633. source (e.g. a CMS field that stores HTML entered by admins), you can mark it
  634. as such using :func:`~django.utils.safestring.mark_safe`.
  635. Tags that follow these rules will be correct and safe whether they are run on
  636. Django 1.9+ or earlier.
  637. ``Paginator.page_range``
  638. ~~~~~~~~~~~~~~~~~~~~~~~~
  639. :attr:`Paginator.page_range <django.core.paginator.Paginator.page_range>` is
  640. now an iterator instead of a list.
  641. In versions of Django previous to 1.8, ``Paginator.page_range`` returned a
  642. ``list`` in Python 2 and a ``range`` in Python 3. Django 1.8 consistently
  643. returned a list, but an iterator is more efficient.
  644. Existing code that depends on ``list`` specific features, such as indexing,
  645. can be ported by converting the iterator into a ``list`` using ``list()``.
  646. Miscellaneous
  647. ~~~~~~~~~~~~~
  648. * CSS and images in ``contrib.admin`` to support Internet Explorer 6 & 7 have
  649. been removed as these browsers have reached end-of-life.
  650. * The jQuery static files in ``contrib.admin`` have been moved into a
  651. ``vendor/jquery`` subdirectory.
  652. * The text displayed for null columns in the admin changelist ``list_display``
  653. cells has changed from ``(None)`` (or its translated equivalent) to ``-``.
  654. * ``django.http.responses.REASON_PHRASES`` and
  655. ``django.core.handlers.wsgi.STATUS_CODE_TEXT`` have been removed. Use
  656. Python's stdlib instead: :data:`http.client.responses` for Python 3 and
  657. `httplib.responses`_ for Python 2.
  658. .. _`httplib.responses`: https://docs.python.org/2/library/httplib.html#httplib.responses
  659. * ``ValuesQuerySet`` and ``ValuesListQuerySet`` have been removed.
  660. * The ``admin/base.html`` template no longer sets
  661. ``window.__admin_media_prefix__`` or ``window.__admin_utc_offset__``. Image
  662. references in JavaScript that used that value to construct absolute URLs have
  663. been moved to CSS for easier customization. The UTC offset is stored on a
  664. data attribute of the ``<body>`` tag.
  665. * ``CommaSeparatedIntegerField`` validation has been refined to forbid values
  666. like ``','``, ``',1'``, and ``'1,,2'``.
  667. * Form initialization was moved from the :meth:`ProcessFormView.get()
  668. <django.views.generic.edit.ProcessFormView.get>` method to the new
  669. :meth:`FormMixin.get_context_data()
  670. <django.views.generic.edit.FormMixin.get_context_data>` method. This may be
  671. backwards incompatible if you have overridden the ``get_context_data()``
  672. method without calling ``super()``.
  673. * Support for PostGIS 1.5 has been dropped.
  674. * The ``django.contrib.sites.models.Site.domain`` field was changed to be
  675. :attr:`~django.db.models.Field.unique`.
  676. * In order to enforce test isolation, database queries are not allowed
  677. by default in :class:`~django.test.SimpleTestCase` tests anymore. You
  678. can disable this behavior by setting the
  679. :attr:`~django.test.SimpleTestCase.allow_database_queries` class attribute
  680. to ``True`` on your test class.
  681. * :attr:`ResolverMatch.app_name
  682. <django.core.urlresolvers.ResolverMatch.app_name>` was changed to contain
  683. the full namespace path in the case of nested namespaces. For consistency
  684. with :attr:`ResolverMatch.namespace
  685. <django.core.urlresolvers.ResolverMatch.namespace>`, the empty value is now
  686. an empty string instead of ``None``.
  687. * For security hardening, session keys must be at least 8 characters.
  688. * Private function ``django.utils.functional.total_ordering()`` has been
  689. removed. It contained a workaround for a ``functools.total_ordering()`` bug
  690. in Python versions older than 2.7.3.
  691. * XML serialization (either through :djadmin:`dumpdata` or the syndication
  692. framework) used to output any characters it received. Now if the content to
  693. be serialized contains any control characters not allowed in the XML 1.0
  694. standard, the serialization will fail with a :exc:`ValueError`.
  695. * :class:`~django.forms.CharField` now strips input of leading and trailing
  696. whitespace by default. This can be disabled by setting the new
  697. :attr:`~django.forms.CharField.strip` argument to ``False``.
  698. * Template text that is translated and uses two or more consecutive percent
  699. signs, e.g. ``"%%"``, may have a new `msgid` after ``makemessages`` is run
  700. (most likely the translation will be marked fuzzy). The new ``msgid`` will be
  701. marked ``"#, python-format"``.
  702. * If neither :attr:`request.current_app <django.http.HttpRequest.current_app>`
  703. nor :class:`Context.current_app <django.template.Context>` are set, the
  704. :ttag:`url` template tag will now use the namespace of the current request.
  705. Set ``request.current_app`` to ``None`` if you don't want to use a namespace
  706. hint.
  707. .. _deprecated-features-1.9:
  708. Features deprecated in 1.9
  709. ==========================
  710. ``assignment_tag()``
  711. ~~~~~~~~~~~~~~~~~~~~
  712. Django 1.4 added the ``assignment_tag`` helper to ease the creation of
  713. template tags that store results in a template variable. The
  714. :meth:`~django.template.Library.simple_tag` helper has gained this same
  715. ability, making the ``assignment_tag`` obsolete. Tags that use
  716. ``assignment_tag`` should be updated to use ``simple_tag``.
  717. ``{% cycle %}`` syntax with comma-separated arguments
  718. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  719. The :ttag:`cycle` tag supports an inferior old syntax from previous Django
  720. versions:
  721. .. code-block:: html+django
  722. {% cycle row1,row2,row3 %}
  723. Its parsing caused bugs with the current syntax, so support for the old syntax
  724. will be removed in Django 2.0 following an accelerated deprecation.
  725. ``ForeignKey`` and ``OneToOneField`` ``on_delete`` argument
  726. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  727. In order to increase awareness about cascading model deletion, the
  728. ``on_delete`` argument of ``ForeignKey`` and ``OneToOneField`` will be required
  729. in Django 2.0.
  730. Update models and existing migrations to explicitly set the argument. Since the
  731. default is ``models.CASCADE``, add ``on_delete=models.CASCADE`` to all
  732. ``ForeignKey`` and ``OneToOneField``\s that don't use a different option. You
  733. can also pass it as the second positional argument if you don't care about
  734. compatibility with older versions of Django.
  735. ``Field.rel`` changes
  736. ~~~~~~~~~~~~~~~~~~~~~
  737. ``Field.rel`` and its methods and attributes have changed to match the related
  738. fields API. The ``Field.rel`` attribute is renamed to ``remote_field`` and many
  739. of its methods and attributes are either changed or renamed.
  740. The aim of these changes is to provide a documented API for relation fields.
  741. ``GeoManager`` and ``GeoQuerySet`` custom methods
  742. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  743. All custom ``GeoQuerySet`` methods (``area()``, ``distance()``, ``gml()``, ...)
  744. have been replaced by equivalent geographic expressions in annotations (see in
  745. new features). Hence the need to set a custom ``GeoManager`` to GIS-enabled
  746. models is now obsolete. As soon as your code doesn't call any of the deprecated
  747. methods, you can simply remove the ``objects = GeoManager()`` lines from your
  748. models.
  749. Template loader APIs have changed
  750. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  751. Django template loaders have been updated to allow recursive template
  752. extending. This change necessitated a new template loader API. The old
  753. ``load_template()`` and ``load_template_sources()`` methods are now deprecated.
  754. Details about the new API can be found :ref:`in the template loader
  755. documentation <custom-template-loaders>`.
  756. Passing a 3-tuple or an ``app_name`` to :func:`~django.conf.urls.include()`
  757. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  758. The instance namespace part of passing a tuple as the first argument has been
  759. replaced by passing the ``namespace`` argument to ``include()``. The
  760. ``app_name`` argument to ``include()`` has been replaced by passing a 2-tuple,
  761. or passing an object or module with an ``app_name`` attribute.
  762. If the ``app_name`` is set in this new way, the ``namespace`` argument is no
  763. longer required. It will default to the value of ``app_name``.
  764. This change also means that the old way of including an ``AdminSite`` instance
  765. is deprecated. Instead, pass ``admin.site.urls`` directly to
  766. :func:`~django.conf.urls.url()`:
  767. .. snippet::
  768. :filename: urls.py
  769. from django.conf.urls import url
  770. from django.contrib import admin
  771. urlpatterns = [
  772. url(r'^admin/', admin.site.urls),
  773. ]
  774. URL application namespace required if setting an instance namespace
  775. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  776. In the past, an instance namespace without an application namespace
  777. would serve the same purpose as the application namespace, but it was
  778. impossible to reverse the patterns if there was an application namespace
  779. with the same name. Includes that specify an instance namespace require that
  780. the included URLconf sets an application namespace.
  781. ``current_app`` parameter to ``contrib.auth`` views
  782. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  783. All views in ``django.contrib.auth.views`` have the following structure::
  784. def view(request, ..., current_app=None, ...):
  785. ...
  786. if current_app is not None:
  787. request.current_app = current_app
  788. return TemplateResponse(request, template_name, context)
  789. As of Django 1.8, ``current_app`` is set on the ``request`` object. For
  790. consistency, these views will require the caller to set ``current_app`` on the
  791. ``request`` instead of passing it in a separate argument.
  792. ``django.contrib.gis.geoip``
  793. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  794. The :mod:`django.contrib.gis.geoip2` module supersedes
  795. ``django.contrib.gis.geoip``. The new module provides a similar API except that
  796. it doesn't provide the legacy GeoIP-Python API compatibility methods.
  797. Miscellaneous
  798. ~~~~~~~~~~~~~
  799. * The ``weak`` argument to ``django.dispatch.signals.Signal.disconnect()`` has
  800. been deprecated as it has no effect.
  801. * The ``check_aggregate_support()`` method of
  802. ``django.db.backends.base.BaseDatabaseOperations`` has been deprecated and
  803. will be removed in Django 2.0. The more general ``check_expression_support()``
  804. should be used instead.
  805. * ``django.forms.extras`` is deprecated. You can find
  806. :class:`~django.forms.SelectDateWidget` in ``django.forms.widgets``
  807. (or simply ``django.forms``) instead.
  808. * Private API ``django.db.models.fields.add_lazy_relation()`` is deprecated.
  809. * The ``django.contrib.auth.tests.utils.skipIfCustomUser()`` decorator is
  810. deprecated. With the test discovery changes in Django 1.6, the tests for
  811. ``django.contrib`` apps are no longer run as part of the user's project.
  812. Therefore, the ``@skipIfCustomUser`` decorator is no longer needed to
  813. decorate tests in ``django.contrib.auth``.
  814. * If you customized some :ref:`error handlers <error-views>`, the view
  815. signatures with only one request parameter are deprecated. The views should
  816. now also accept a second ``exception`` positional parameter.
  817. * The ``django.utils.feedgenerator.Atom1Feed.mime_type`` and
  818. ``django.utils.feedgenerator.RssFeed.mime_type`` attributes are deprecated in
  819. favor of ``content_type``.
  820. * :class:`~django.core.signing.Signer` now issues a warning if an invalid
  821. separator is used. This will become an exception in Django 1.10.
  822. * ``django.db.models.Field._get_val_from_obj()`` is deprecated in favor of
  823. ``Field.value_from_object()``.
  824. * ``django.template.loaders.eggs.Loader`` is deprecated as distributing
  825. applications as eggs is not recommended.
  826. * The ``callable_obj`` keyword argument to
  827. ``SimpleTestCase.assertRaisesMessage()`` is deprecated. Pass the callable as
  828. a positional argument instead.
  829. .. removed-features-1.9:
  830. Features removed in 1.9
  831. =======================
  832. These features have reached the end of their deprecation cycle and so have been
  833. removed in Django 1.9 (please see the :ref:`deprecation timeline
  834. <deprecation-removed-in-1.9>` for more details):
  835. * ``django.utils.dictconfig`` is removed.
  836. * ``django.utils.importlib`` is removed.
  837. * ``django.utils.tzinfo`` is removed.
  838. * ``django.utils.unittest`` is removed.
  839. * The ``syncdb`` command is removed.
  840. * ``django.db.models.signals.pre_syncdb`` and
  841. ``django.db.models.signals.post_syncdb`` is removed.
  842. * Support for ``allow_syncdb`` on database routers is removed.
  843. * The legacy method of syncing apps without migrations is removed,
  844. and migrations are compulsory for all apps. This includes automatic
  845. loading of ``initial_data`` fixtures and support for initial SQL data.
  846. * All models need to be defined inside an installed application or declare an
  847. explicit :attr:`~django.db.models.Options.app_label`. Furthermore, it isn't
  848. possible to import them before their application is loaded. In particular, it
  849. isn't possible to import models inside the root package of an application.
  850. * The model and form ``IPAddressField`` is removed. A stub field remains for
  851. compatibility with historical migrations.
  852. * ``AppCommand.handle_app()`` is no longer be supported.
  853. * ``RequestSite`` and ``get_current_site()`` are no longer importable from
  854. ``django.contrib.sites.models``.
  855. * FastCGI support via the ``runfcgi`` management command is removed.
  856. * ``django.utils.datastructures.SortedDict`` is removed.
  857. * ``ModelAdmin.declared_fieldsets`` is removed.
  858. * The ``util`` modules that provided backwards compatibility are removed:
  859. * ``django.contrib.admin.util``
  860. * ``django.contrib.gis.db.backends.util``
  861. * ``django.db.backends.util``
  862. * ``django.forms.util``
  863. * ``ModelAdmin.get_formsets`` is removed.
  864. * The backward compatible shims introduced to rename the
  865. ``BaseMemcachedCache._get_memcache_timeout()`` method to
  866. ``get_backend_timeout()`` is removed.
  867. * The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` are removed.
  868. * The ``use_natural_keys`` argument for ``serializers.serialize()`` is removed.
  869. * Private API ``django.forms.forms.get_declared_fields()`` is removed.
  870. * The ability to use a ``SplitDateTimeWidget`` with ``DateTimeField`` is
  871. removed.
  872. * The ``WSGIRequest.REQUEST`` property is removed.
  873. * The class ``django.utils.datastructures.MergeDict`` is removed.
  874. * The ``zh-cn`` and ``zh-tw`` language codes are removed.
  875. * The internal ``django.utils.functional.memoize()`` is removed.
  876. * ``django.core.cache.get_cache`` is removed.
  877. * ``django.db.models.loading`` is removed.
  878. * Passing callable arguments to querysets is no longer possible.
  879. * ``BaseCommand.requires_model_validation`` is removed in favor of
  880. ``requires_system_checks``. Admin validators is replaced by admin checks.
  881. * The ``ModelAdmin.validator_class`` and ``default_validator_class`` attributes
  882. are removed.
  883. * ``ModelAdmin.validate()`` is removed.
  884. * ``django.db.backends.DatabaseValidation.validate_field`` is removed in
  885. favor of the ``check_field`` method.
  886. * The ``validate`` management command is removed.
  887. * ``django.utils.module_loading.import_by_path`` is removed in favor of
  888. ``django.utils.module_loading.import_string``.
  889. * ``ssi`` and ``url`` template tags are removed from the ``future`` template
  890. tag library.
  891. * ``django.utils.text.javascript_quote()`` is removed.
  892. * Database test settings as independent entries in the database settings,
  893. prefixed by ``TEST_``, are no longer supported.
  894. * The `cache_choices` option to :class:`~django.forms.ModelChoiceField` and
  895. :class:`~django.forms.ModelMultipleChoiceField` is removed.
  896. * The default value of the
  897. :attr:`RedirectView.permanent <django.views.generic.base.RedirectView.permanent>`
  898. attribute has changed from ``True`` to ``False``.
  899. * ``django.contrib.sitemaps.FlatPageSitemap`` is removed in favor of
  900. ``django.contrib.flatpages.sitemaps.FlatPageSitemap``.
  901. * Private API ``django.test.utils.TestTemplateLoader`` is removed.
  902. * The ``django.contrib.contenttypes.generic`` module is removed.