1.9.txt 57 KB

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