1.9.txt 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521
  1. ========================
  2. Django 1.9 release notes
  3. ========================
  4. *December 1, 2015*
  5. Welcome to Django 1.9!
  6. These release notes cover the :ref:`new features <whats-new-1.9>`, as well as
  7. some :ref:`backwards incompatible changes <backwards-incompatible-1.9>` you'll
  8. want to be aware of when upgrading from Django 1.8 or older versions. We've
  9. :ref:`dropped some features<removed-features-1.9>` that have reached the end of
  10. their deprecation cycle, and we've :ref:`begun the deprecation process for some
  11. features <deprecated-features-1.9>`.
  12. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  13. project.
  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. The Django 1.8 series is the last to support Python 3.2 and 3.3.
  19. .. _whats-new-1.9:
  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.org/project/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``\'
  76. implementation, 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: https://django-braces.readthedocs.io/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 :option:`--parallel <test
  103. --parallel>` option to 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 ``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 (among 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. * The default OpenLayers library version included in widgets has been updated
  195. from 2.13 to 2.13.1.
  196. :mod:`django.contrib.postgres`
  197. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  198. * Added support for the :lookup:`rangefield.contained_by` lookup for some built
  199. in fields which correspond to the range fields.
  200. * Added ``django.contrib.postgres.fields.JSONField``.
  201. * Added :doc:`/ref/contrib/postgres/aggregates`.
  202. * Added the :class:`~django.contrib.postgres.functions.TransactionNow` database
  203. function.
  204. :mod:`django.contrib.sessions`
  205. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  206. * The session model and ``SessionStore`` classes for the ``db`` and
  207. ``cached_db`` backends are refactored to allow a custom database session
  208. backend to build upon them. See
  209. :ref:`extending-database-backed-session-engines` for more details.
  210. :mod:`django.contrib.sites`
  211. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  212. * :func:`~django.contrib.sites.shortcuts.get_current_site` now handles the case
  213. where ``request.get_host()`` returns ``domain:port``, e.g.
  214. ``example.com:80``. If the lookup fails because the host does not match a
  215. record in the database and the host has a port, the port is stripped and the
  216. lookup is retried with the domain part only.
  217. :mod:`django.contrib.syndication`
  218. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  219. * Support for multiple enclosures per feed item has been added. If multiple
  220. enclosures are defined on a RSS feed, an exception is raised as RSS feeds,
  221. unlike Atom feeds, do not support multiple enclosures per feed item.
  222. Cache
  223. ~~~~~
  224. * ``django.core.cache.backends.base.BaseCache`` now has a ``get_or_set()``
  225. method.
  226. * :func:`django.views.decorators.cache.never_cache` now sends more persuasive
  227. headers (added ``no-cache, no-store, must-revalidate`` to ``Cache-Control``)
  228. to better prevent caching. This was also added in Django 1.8.8.
  229. CSRF
  230. ~~~~
  231. * The request header's name used for CSRF authentication can be customized
  232. with :setting:`CSRF_HEADER_NAME`.
  233. * The CSRF referer header is now validated against the
  234. :setting:`CSRF_COOKIE_DOMAIN` setting if set. See :ref:`how-csrf-works` for
  235. details.
  236. * The new :setting:`CSRF_TRUSTED_ORIGINS` setting provides a way to allow
  237. cross-origin unsafe requests (e.g. ``POST``) over HTTPS.
  238. Database backends
  239. ~~~~~~~~~~~~~~~~~
  240. * The PostgreSQL backend (``django.db.backends.postgresql_psycopg2``) is also
  241. available as ``django.db.backends.postgresql``. The old name will continue to
  242. be available for backwards compatibility.
  243. File Storage
  244. ~~~~~~~~~~~~
  245. * :meth:`Storage.get_valid_name()
  246. <django.core.files.storage.Storage.get_valid_name>` is now called when
  247. the :attr:`~django.db.models.FileField.upload_to` is a callable.
  248. * :class:`~django.core.files.File` now has the ``seekable()`` method when using
  249. Python 3.
  250. Forms
  251. ~~~~~
  252. * :class:`~django.forms.ModelForm` accepts the new ``Meta`` option
  253. ``field_classes`` to customize the type of the fields. See
  254. :ref:`modelforms-overriding-default-fields` for details.
  255. * You can now specify the order in which form fields are rendered with the
  256. :attr:`~django.forms.Form.field_order` attribute, the ``field_order``
  257. constructor argument , or the :meth:`~django.forms.Form.order_fields` method.
  258. * A form prefix can be specified inside a form class, not only when
  259. instantiating a form. See :ref:`form-prefix` for details.
  260. * You can now :ref:`specify keyword arguments <custom-formset-form-kwargs>`
  261. that you want to pass to the constructor of forms in a formset.
  262. * :class:`~django.forms.SlugField` now accepts an
  263. :attr:`~django.forms.SlugField.allow_unicode` argument to allow Unicode
  264. characters in slugs.
  265. * :class:`~django.forms.CharField` now accepts a
  266. :attr:`~django.forms.CharField.strip` argument to strip input data of leading
  267. and trailing whitespace. As this defaults to ``True`` this is different
  268. behavior from previous releases.
  269. * Form fields now support the :attr:`~django.forms.Field.disabled` argument,
  270. allowing the field widget to be displayed disabled by browsers.
  271. * It's now possible to customize bound fields by overriding a field's
  272. :meth:`~django.forms.Field.get_bound_field()` method.
  273. Generic Views
  274. ~~~~~~~~~~~~~
  275. * Class-based views generated using ``as_view()`` now have ``view_class``
  276. and ``view_initkwargs`` attributes.
  277. * :func:`~django.utils.decorators.method_decorator` can now be used with a list
  278. or tuple of decorators. It can also be used to :ref:`decorate classes instead
  279. of methods <decorating-class-based-views>`.
  280. Internationalization
  281. ~~~~~~~~~~~~~~~~~~~~
  282. * The :func:`django.views.i18n.set_language` view now properly redirects to
  283. :ref:`translated URLs <url-internationalization>`, when available.
  284. * The ``django.views.i18n.javascript_catalog()`` view now works correctly
  285. if used multiple times with different configurations on the same page.
  286. * The :func:`django.utils.timezone.make_aware` function gained an ``is_dst``
  287. argument to help resolve ambiguous times during DST transitions.
  288. * You can now use locale variants supported by gettext. These are usually used
  289. for languages which can be written in different scripts, for example Latin
  290. and Cyrillic (e.g. ``be@latin``).
  291. * Added the ``django.views.i18n.json_catalog()`` view to help build a custom
  292. client-side i18n library upon Django translations. It returns a JSON object
  293. containing a translations catalog, formatting settings, and a plural rule.
  294. * Added the ``name_translated`` attribute to the object returned by the
  295. :ttag:`get_language_info` template tag. Also added a corresponding template
  296. filter: :tfilter:`language_name_translated`.
  297. * You can now run :djadmin:`compilemessages` from the root directory of your
  298. project and it will find all the app message files that were created by
  299. :djadmin:`makemessages`.
  300. * :djadmin:`makemessages` now calls xgettext once per locale directory rather
  301. than once per translatable file. This speeds up localization builds.
  302. * :ttag:`blocktrans` supports assigning its output to a variable using
  303. ``asvar``.
  304. * Two new languages are available: Colombian Spanish and Scottish Gaelic.
  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 ``--output`` 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. Since it doesn't
  318. use ``default_app_config`` (:ref:`a discouraged API
  319. <configuring-applications-ref>`), you must specify the app config's path,
  320. e.g. ``'polls.apps.PollsConfig'``, in :setting:`INSTALLED_APPS` for it to be
  321. used (instead of just ``'polls'``).
  322. * When using the PostgreSQL backend, the :djadmin:`dbshell` command can connect
  323. to the database using the password from your settings file (instead of
  324. requiring it to be manually entered).
  325. * The ``django`` package may be run as a script, i.e. ``python -m django``,
  326. which will behave the same as ``django-admin``.
  327. * Management commands that have the ``--noinput`` option now also take
  328. ``--no-input`` as an alias for that option.
  329. Migrations
  330. ~~~~~~~~~~
  331. * Initial migrations are now marked with an :attr:`initial = True
  332. <django.db.migrations.Migration.initial>` class attribute which allows
  333. :option:`migrate --fake-initial` to more easily detect initial migrations.
  334. * Added support for serialization of ``functools.partial`` and ``LazyObject``
  335. instances.
  336. * When supplying ``None`` as a value in :setting:`MIGRATION_MODULES`, Django
  337. will consider the app an app without migrations.
  338. * When applying migrations, the "Rendering model states" step that's displayed
  339. when running migrate with verbosity 2 or higher now computes only the states
  340. for the migrations that have already been applied. The model states for
  341. migrations being applied are generated on demand, drastically reducing the
  342. amount of required memory.
  343. However, this improvement is not available when unapplying migrations and
  344. therefore still requires the precomputation and storage of the intermediate
  345. migration states.
  346. This improvement also requires that Django no longer supports mixed migration
  347. plans. Mixed plans consist of a list of migrations where some are being
  348. applied and others are being unapplied. This was never officially supported
  349. and never had a public API that supports this behavior.
  350. * The :djadmin:`squashmigrations` command now supports specifying the starting
  351. migration from which migrations will be squashed.
  352. Models
  353. ~~~~~~
  354. * :meth:`QuerySet.bulk_create() <django.db.models.query.QuerySet.bulk_create>`
  355. now works on proxy models.
  356. * Database configuration gained a :setting:`TIME_ZONE <DATABASE-TIME_ZONE>`
  357. option for interacting with databases that store datetimes in local time and
  358. don't support time zones when :setting:`USE_TZ` is ``True``.
  359. * Added the :meth:`RelatedManager.set()
  360. <django.db.models.fields.related.RelatedManager.set()>` method to the related
  361. managers created by ``ForeignKey``, ``GenericForeignKey``, and
  362. ``ManyToManyField``.
  363. * The :meth:`~django.db.models.fields.related.RelatedManager.add` method on
  364. a reverse foreign key now has a ``bulk`` parameter to allow executing one
  365. query regardless of the number of objects being added rather than one query
  366. per object.
  367. * Added the ``keep_parents`` parameter to :meth:`Model.delete()
  368. <django.db.models.Model.delete>` to allow deleting only a child's data in a
  369. model that uses multi-table inheritance.
  370. * :meth:`Model.delete() <django.db.models.Model.delete>`
  371. and :meth:`QuerySet.delete() <django.db.models.query.QuerySet.delete>` return
  372. the number of objects deleted.
  373. * Added a system check to prevent defining both ``Meta.ordering`` and
  374. ``order_with_respect_to`` on the same model.
  375. * :lookup:`Date and time <year>` lookups can be chained with other lookups
  376. (such as :lookup:`exact`, :lookup:`gt`, :lookup:`lt`, etc.). For example:
  377. ``Entry.objects.filter(pub_date__month__gt=6)``.
  378. * Time lookups (hour, minute, second) are now supported by
  379. :class:`~django.db.models.TimeField` for all database backends. Support for
  380. backends other than SQLite was added but undocumented in Django 1.7.
  381. * You can specify the ``output_field`` parameter of the
  382. :class:`~django.db.models.Avg` aggregate in order to aggregate over
  383. non-numeric columns, such as ``DurationField``.
  384. * Added the :lookup:`date` lookup to :class:`~django.db.models.DateTimeField`
  385. to allow querying the field by only the date portion.
  386. * Added the :class:`~django.db.models.functions.Greatest` and
  387. :class:`~django.db.models.functions.Least` database functions.
  388. * Added the :class:`~django.db.models.functions.Now` database function, which
  389. returns the current date and time.
  390. * :class:`~django.db.models.Transform` is now a subclass of
  391. :ref:`Func() <func-expressions>` which allows ``Transform``\s to be used on
  392. the right hand side of an expression, just like regular ``Func``\s. This
  393. allows registering some database functions like
  394. :class:`~django.db.models.functions.Length`,
  395. :class:`~django.db.models.functions.Lower`, and
  396. :class:`~django.db.models.functions.Upper` as transforms.
  397. * :class:`~django.db.models.SlugField` now accepts an
  398. :attr:`~django.db.models.SlugField.allow_unicode` argument to allow Unicode
  399. characters in slugs.
  400. * Added support for referencing annotations in ``QuerySet.distinct()``.
  401. * ``connection.queries`` shows queries with substituted parameters on SQLite.
  402. * :doc:`Query expressions </ref/models/expressions>` can now be used when
  403. creating new model instances using ``save()``, ``create()``, and
  404. ``bulk_create()``.
  405. Requests and Responses
  406. ~~~~~~~~~~~~~~~~~~~~~~
  407. * Unless :attr:`HttpResponse.reason_phrase
  408. <django.http.HttpResponse.reason_phrase>` is explicitly set, it now is
  409. determined by the current value of :attr:`HttpResponse.status_code
  410. <django.http.HttpResponse.status_code>`. Modifying the value of
  411. ``status_code`` outside of the constructor will also modify the value of
  412. ``reason_phrase``.
  413. * The debug view now shows details of chained exceptions on Python 3.
  414. * The default 40x error views now accept a second positional parameter, the
  415. exception that triggered the view.
  416. * View error handlers now support
  417. :class:`~django.template.response.TemplateResponse`, commonly used with
  418. class-based views.
  419. * Exceptions raised by the ``render()`` method are now passed to the
  420. ``process_exception()`` method of each middleware.
  421. * Request middleware can now set :attr:`HttpRequest.urlconf
  422. <django.http.HttpRequest.urlconf>` to ``None`` to revert any changes made
  423. by previous middleware and return to using the :setting:`ROOT_URLCONF`.
  424. * The :setting:`DISALLOWED_USER_AGENTS` check in
  425. :class:`~django.middleware.common.CommonMiddleware` now raises a
  426. :class:`~django.core.exceptions.PermissionDenied` exception as opposed to
  427. returning an :class:`~django.http.HttpResponseForbidden` so that
  428. :data:`~django.conf.urls.handler403` is invoked.
  429. * Added :meth:`HttpRequest.get_port() <django.http.HttpRequest.get_port>` to
  430. fetch the originating port of the request.
  431. * Added the ``json_dumps_params`` parameter to
  432. :class:`~django.http.JsonResponse` to allow passing keyword arguments to the
  433. ``json.dumps()`` call used to generate the response.
  434. * The :class:`~django.middleware.common.BrokenLinkEmailsMiddleware` now
  435. ignores 404s when the referer is equal to the requested URL. To circumvent
  436. the empty referer check already implemented, some Web bots set the referer to
  437. the requested URL.
  438. Templates
  439. ~~~~~~~~~
  440. * Template tags created with the :meth:`~django.template.Library.simple_tag`
  441. helper can now store results in a template variable by using the ``as``
  442. argument.
  443. * Added a :meth:`Context.setdefault() <django.template.Context.setdefault>`
  444. method.
  445. * The :ref:`django.template <django-template-logger>` logger was added and
  446. includes the following messages:
  447. * A ``DEBUG`` level message for missing context variables.
  448. * A ``WARNING`` level message for uncaught exceptions raised
  449. during the rendering of an ``{% include %}`` when debug mode is off
  450. (helpful since ``{% include %}`` silences the exception and returns an
  451. empty string).
  452. * The :ttag:`firstof` template tag supports storing the output in a variable
  453. using 'as'.
  454. * :meth:`Context.update() <django.template.Context.update>` can now be used as
  455. a context manager.
  456. * Django template loaders can now extend templates recursively.
  457. * The debug page template postmortem now include output from each engine that
  458. is installed.
  459. * :ref:`Debug page integration <template-debug-integration>` for custom
  460. template engines was added.
  461. * The :class:`~django.template.backends.django.DjangoTemplates` backend gained
  462. the ability to register libraries and builtins explicitly through the
  463. template :setting:`OPTIONS <TEMPLATES-OPTIONS>`.
  464. * The ``timesince`` and ``timeuntil`` filters were improved to deal with leap
  465. years when given large time spans.
  466. * The ``include`` tag now caches parsed templates objects during template
  467. rendering, speeding up reuse in places such as for loops.
  468. Tests
  469. ~~~~~
  470. * Added the :meth:`json() <django.test.Response.json>` method to test client
  471. responses to give access to the response body as JSON.
  472. * Added the :meth:`~django.test.Client.force_login()` method to the test
  473. client. Use this method to simulate the effect of a user logging into the
  474. site while skipping the authentication and verification steps of
  475. :meth:`~django.test.Client.login()`.
  476. URLs
  477. ~~~~
  478. * Regular expression lookaround assertions are now allowed in URL patterns.
  479. * The application namespace can now be set using an ``app_name`` attribute
  480. on the included module or object. It can also be set by passing a 2-tuple
  481. of (<list of patterns>, <application namespace>) as the first argument to
  482. ``include()``.
  483. * System checks have been added for common URL pattern mistakes.
  484. Validators
  485. ~~~~~~~~~~
  486. * Added :func:`django.core.validators.int_list_validator` to generate
  487. validators of strings containing integers separated with a custom character.
  488. * :class:`~django.core.validators.EmailValidator` now limits the length of
  489. domain name labels to 63 characters per :rfc:`1034`.
  490. * Added :func:`~django.core.validators.validate_unicode_slug` to validate slugs
  491. that may contain Unicode characters.
  492. .. _backwards-incompatible-1.9:
  493. Backwards incompatible changes in 1.9
  494. =====================================
  495. .. warning::
  496. In addition to the changes outlined in this section, be sure to review the
  497. :ref:`removed-features-1.9` for the features that have reached the end of
  498. their deprecation cycle and therefore been removed. If you haven't updated
  499. your code within the deprecation timeline for a given feature, its removal
  500. may appear as a backwards incompatible change.
  501. Database backend API
  502. --------------------
  503. * A couple of new tests rely on the ability of the backend to introspect column
  504. defaults (returning the result as ``Field.default``). You can set the
  505. ``can_introspect_default`` database feature to ``False`` if your backend
  506. doesn't implement this. You may want to review the implementation on the
  507. backends that Django includes for reference (:ticket:`24245`).
  508. * Registering a global adapter or converter at the level of the DB-API module
  509. to handle time zone information of :class:`~datetime.datetime` values passed
  510. as query parameters or returned as query results on databases that don't
  511. support time zones is discouraged. It can conflict with other libraries.
  512. The recommended way to add a time zone to :class:`~datetime.datetime` values
  513. fetched from the database is to register a converter for ``DateTimeField``
  514. in ``DatabaseOperations.get_db_converters()``.
  515. The ``needs_datetime_string_cast`` database feature was removed. Database
  516. backends that set it must register a converter instead, as explained above.
  517. * The ``DatabaseOperations.value_to_db_<type>()`` methods were renamed to
  518. ``adapt_<type>field_value()`` to mirror the ``convert_<type>field_value()``
  519. methods.
  520. * To use the new ``date`` lookup, third-party database backends may need to
  521. implement the ``DatabaseOperations.datetime_cast_date_sql()`` method.
  522. * The ``DatabaseOperations.time_extract_sql()`` method was added. It calls the
  523. existing ``date_extract_sql()`` method. This method is overridden by the
  524. SQLite backend to add time lookups (hour, minute, second) to
  525. :class:`~django.db.models.TimeField`, and may be needed by third-party
  526. database backends.
  527. * The ``DatabaseOperations.datetime_cast_sql()`` method (not to be confused
  528. with ``DatabaseOperations.datetime_cast_date_sql()`` mentioned above)
  529. has been removed. This method served to format dates on Oracle long
  530. before 1.0, but hasn't been overridden by any core backend in years
  531. and hasn't been called anywhere in Django's code or tests.
  532. * In order to support test parallelization, you must implement the
  533. ``DatabaseCreation._clone_test_db()`` method and set
  534. ``DatabaseFeatures.can_clone_databases = True``. You may have to adjust
  535. ``DatabaseCreation.get_test_db_clone_settings()``.
  536. Default settings that were tuples are now lists
  537. -----------------------------------------------
  538. The default settings in ``django.conf.global_settings`` were a combination of
  539. lists and tuples. All settings that were formerly tuples are now lists.
  540. ``is_usable`` attribute on template loaders is removed
  541. ------------------------------------------------------
  542. Django template loaders previously required an ``is_usable`` attribute to be
  543. defined. If a loader was configured in the template settings and this attribute
  544. was ``False``, the loader would be silently ignored. In practice, this was only
  545. used by the egg loader to detect if setuptools was installed. The ``is_usable``
  546. attribute is now removed and the egg loader instead fails at runtime if
  547. setuptools is not installed.
  548. Related set direct assignment
  549. -----------------------------
  550. Direct assignment of related objects in the ORM used to perform a ``clear()``
  551. followed by a call to ``add()``. This caused needlessly large data changes and
  552. prevented using the :data:`~django.db.models.signals.m2m_changed` signal to
  553. track individual changes in many-to-many relations.
  554. Direct assignment now relies on the new
  555. :meth:`~django.db.models.fields.related.RelatedManager.set` method on related
  556. managers which by default only processes changes between the existing related
  557. set and the one that's newly assigned. The previous behavior can be restored by
  558. replacing direct assignment by a call to ``set()`` with the keyword argument
  559. ``clear=True``.
  560. ``ModelForm``, and therefore ``ModelAdmin``, internally rely on direct
  561. assignment for many-to-many relations and as a consequence now use the new
  562. behavior.
  563. Filesystem-based template loaders catch more specific exceptions
  564. ----------------------------------------------------------------
  565. When using the :class:`filesystem.Loader <django.template.loaders.filesystem.Loader>`
  566. or :class:`app_directories.Loader <django.template.loaders.app_directories.Loader>`
  567. template loaders, earlier versions of Django raised a
  568. :exc:`~django.template.TemplateDoesNotExist` error if a template source existed
  569. but was unreadable. This could happen under many circumstances, such as if
  570. Django didn't have permissions to open the file, or if the template source was
  571. a directory. Now, Django only silences the exception if the template source
  572. does not exist. All other situations result in the original ``IOError`` being
  573. raised.
  574. HTTP redirects no longer forced to absolute URIs
  575. ------------------------------------------------
  576. Relative redirects are no longer converted to absolute URIs. :rfc:`2616`
  577. required the ``Location`` header in redirect responses to be an absolute URI,
  578. but it has been superseded by :rfc:`7231` which allows relative URIs in
  579. ``Location``, recognizing the actual practice of user agents, almost all of
  580. which support them.
  581. Consequently, the expected URLs passed to ``assertRedirects`` should generally
  582. no longer include the scheme and domain part of the URLs. For example,
  583. ``self.assertRedirects(response, 'http://testserver/some-url/')`` should be
  584. replaced by ``self.assertRedirects(response, '/some-url/')`` (unless the
  585. redirection specifically contained an absolute URL).
  586. In the rare case that you need the old behavior (discovered with an ancient
  587. version of Apache with ``mod_scgi`` that interprets a relative redirect as an
  588. "internal redirect"), you can restore it by writing a custom middleware::
  589. class LocationHeaderFix(object):
  590. def process_response(self, request, response):
  591. if 'Location' in response:
  592. response['Location'] = request.build_absolute_uri(response['Location'])
  593. return response
  594. Dropped support for PostgreSQL 9.0
  595. ----------------------------------
  596. Upstream support for PostgreSQL 9.0 ended in September 2015. As a consequence,
  597. Django 1.9 sets 9.1 as the minimum PostgreSQL version it officially supports.
  598. Dropped support for Oracle 11.1
  599. -------------------------------
  600. Upstream support for Oracle 11.1 ended in August 2015. As a consequence, Django
  601. 1.9 sets 11.2 as the minimum Oracle version it officially supports.
  602. Bulk behavior of ``add()`` method of related managers
  603. -----------------------------------------------------
  604. To improve performance, the ``add()`` methods of the related managers created
  605. by ``ForeignKey`` and ``GenericForeignKey`` changed from a series of
  606. ``Model.save()`` calls to a single ``QuerySet.update()`` call. The change means
  607. that ``pre_save`` and ``post_save`` signals aren't sent anymore. You can use
  608. the ``bulk=False`` keyword argument to revert to the previous behavior.
  609. Template ``LoaderOrigin`` and ``StringOrigin`` are removed
  610. ----------------------------------------------------------
  611. In previous versions of Django, when a template engine was initialized with
  612. debug as ``True``, an instance of ``django.template.loader.LoaderOrigin`` or
  613. ``django.template.base.StringOrigin`` was set as the origin attribute on the
  614. template object. These classes have been combined into
  615. :class:`~django.template.base.Origin` and is now always set regardless of the
  616. engine debug setting. For a minimal level of backwards compatibility, the old
  617. class names will be kept as aliases to the new ``Origin`` class until
  618. Django 2.0.
  619. .. _default-logging-changes-19:
  620. Changes to the default logging configuration
  621. --------------------------------------------
  622. To make it easier to write custom logging configurations, Django's default
  623. logging configuration no longer defines ``django.request`` and
  624. ``django.security`` loggers. Instead, it defines a single ``django`` logger,
  625. filtered at the ``INFO`` level, with two handlers:
  626. * ``console``: filtered at the ``INFO`` level and only active if ``DEBUG=True``.
  627. * ``mail_admins``: filtered at the ``ERROR`` level and only active if
  628. ``DEBUG=False``.
  629. If you aren't overriding Django's default logging, you should see minimal
  630. changes in behavior, but you might see some new logging to the ``runserver``
  631. console, for example.
  632. If you are overriding Django's default logging, you should check to see how
  633. your configuration merges with the new defaults.
  634. ``HttpRequest`` details in error reporting
  635. ------------------------------------------
  636. It was redundant to display the full details of the
  637. :class:`~django.http.HttpRequest` each time it appeared as a stack frame
  638. variable in the HTML version of the debug page and error email. Thus, the HTTP
  639. request will now display the same standard representation as other variables
  640. (``repr(request)``). As a result, the
  641. ``ExceptionReporterFilter.get_request_repr()`` method and the undocumented
  642. ``django.http.build_request_repr()`` function were removed.
  643. The contents of the text version of the email were modified to provide a
  644. traceback of the same structure as in the case of AJAX requests. The traceback
  645. details are rendered by the ``ExceptionReporter.get_traceback_text()`` method.
  646. Removal of time zone aware global adapters and converters for datetimes
  647. -----------------------------------------------------------------------
  648. Django no longer registers global adapters and converters for managing time
  649. zone information on :class:`~datetime.datetime` values sent to the database as
  650. query parameters or read from the database in query results. This change
  651. affects projects that meet all the following conditions:
  652. * The :setting:`USE_TZ` setting is ``True``.
  653. * The database is SQLite, MySQL, Oracle, or a third-party database that
  654. doesn't support time zones. In doubt, you can check the value of
  655. ``connection.features.supports_timezones``.
  656. * The code queries the database outside of the ORM, typically with
  657. ``cursor.execute(sql, params)``.
  658. If you're passing aware :class:`~datetime.datetime` parameters to such
  659. queries, you should turn them into naive datetimes in UTC::
  660. from django.utils import timezone
  661. param = timezone.make_naive(param, timezone.utc)
  662. If you fail to do so, the conversion will be performed as in earlier versions
  663. (with a deprecation warning) up until Django 1.11. Django 2.0 won't perform any
  664. conversion, which may result in data corruption.
  665. If you're reading :class:`~datetime.datetime` values from the results, they
  666. will be naive instead of aware. You can compensate as follows::
  667. from django.utils import timezone
  668. value = timezone.make_aware(value, timezone.utc)
  669. You don't need any of this if you're querying the database through the ORM,
  670. even if you're using :meth:`raw() <django.db.models.query.QuerySet.raw>`
  671. queries. The ORM takes care of managing time zone information.
  672. Template tag modules are imported when templates are configured
  673. ---------------------------------------------------------------
  674. The :class:`~django.template.backends.django.DjangoTemplates` backend now
  675. performs discovery on installed template tag modules when instantiated. This
  676. update enables libraries to be provided explicitly via the ``'libraries'``
  677. key of :setting:`OPTIONS <TEMPLATES-OPTIONS>` when defining a
  678. :class:`~django.template.backends.django.DjangoTemplates` backend. Import
  679. or syntax errors in template tag modules now fail early at instantiation time
  680. rather than when a template with a :ttag:`{% load %}<load>` tag is first
  681. compiled.
  682. ``django.template.base.add_to_builtins()`` is removed
  683. -----------------------------------------------------
  684. Although it was a private API, projects commonly used ``add_to_builtins()`` to
  685. make template tags and filters available without using the
  686. :ttag:`{% load %}<load>` tag. This API has been formalized. Projects should now
  687. define built-in libraries via the ``'builtins'`` key of :setting:`OPTIONS
  688. <TEMPLATES-OPTIONS>` when defining a
  689. :class:`~django.template.backends.django.DjangoTemplates` backend.
  690. .. _simple-tag-conditional-escape-fix:
  691. ``simple_tag`` now wraps tag output in ``conditional_escape``
  692. -------------------------------------------------------------
  693. In general, template tags do not autoescape their contents, and this behavior is
  694. :ref:`documented <tags-auto-escaping>`. For tags like
  695. :class:`~django.template.Library.inclusion_tag`, this is not a problem because
  696. the included template will perform autoescaping. For ``assignment_tag()``,
  697. the output will be escaped when it is used as a variable in the template.
  698. For the intended use cases of :class:`~django.template.Library.simple_tag`,
  699. however, it is very easy to end up with incorrect HTML and possibly an XSS
  700. exploit. For example::
  701. @register.simple_tag(takes_context=True)
  702. def greeting(context):
  703. return "Hello {0}!".format(context['request'].user.first_name)
  704. In older versions of Django, this will be an XSS issue because
  705. ``user.first_name`` is not escaped.
  706. In Django 1.9, this is fixed: if the template context has ``autoescape=True``
  707. set (the default), then ``simple_tag`` will wrap the output of the tag function
  708. with :func:`~django.utils.html.conditional_escape`.
  709. To fix your ``simple_tag``\s, it is best to apply the following practices:
  710. * Any code that generates HTML should use either the template system or
  711. :func:`~django.utils.html.format_html`.
  712. * If the output of a ``simple_tag`` needs escaping, use
  713. :func:`~django.utils.html.escape` or
  714. :func:`~django.utils.html.conditional_escape`.
  715. * If you are absolutely certain that you are outputting HTML from a trusted
  716. source (e.g. a CMS field that stores HTML entered by admins), you can mark it
  717. as such using :func:`~django.utils.safestring.mark_safe`.
  718. Tags that follow these rules will be correct and safe whether they are run on
  719. Django 1.9+ or earlier.
  720. ``Paginator.page_range``
  721. ------------------------
  722. :attr:`Paginator.page_range <django.core.paginator.Paginator.page_range>` is
  723. now an iterator instead of a list.
  724. In versions of Django previous to 1.8, ``Paginator.page_range`` returned a
  725. ``list`` in Python 2 and a ``range`` in Python 3. Django 1.8 consistently
  726. returned a list, but an iterator is more efficient.
  727. Existing code that depends on ``list`` specific features, such as indexing,
  728. can be ported by converting the iterator into a ``list`` using ``list()``.
  729. Implicit ``QuerySet`` ``__in`` lookup removed
  730. ---------------------------------------------
  731. In earlier versions, queries such as::
  732. Model.objects.filter(related_id=RelatedModel.objects.all())
  733. would implicitly convert to::
  734. Model.objects.filter(related_id__in=RelatedModel.objects.all())
  735. resulting in SQL like ``"related_id IN (SELECT id FROM ...)"``.
  736. This implicit ``__in`` no longer happens so the "IN" SQL is now "=", and if the
  737. subquery returns multiple results, at least some databases will throw an error.
  738. .. _admin-browser-support-19:
  739. ``contrib.admin`` browser support
  740. ---------------------------------
  741. The admin no longer supports Internet Explorer 8 and below, as these browsers
  742. have reached end-of-life.
  743. CSS and images to support Internet Explorer 6 and 7 have been removed. PNG and
  744. GIF icons have been replaced with SVG icons, which are not supported by
  745. Internet Explorer 8 and earlier.
  746. The jQuery library embedded in the admin has been upgraded from version 1.11.2
  747. to 2.1.4. jQuery 2.x has the same API as jQuery 1.x, but does not support
  748. Internet Explorer 6, 7, or 8, allowing for better performance and a smaller
  749. file size. If you need to support IE8 and must also use the latest version of
  750. Django, you can override the admin's copy of jQuery with your own by creating
  751. a Django application with this structure::
  752. app/static/admin/js/vendor/
  753. jquery.js
  754. jquery.min.js
  755. .. _syntax-error-old-setuptools-django-19:
  756. ``SyntaxError`` when installing Django setuptools 5.5.x
  757. -------------------------------------------------------
  758. When installing Django 1.9 or 1.9.1 with setuptools 5.5.x, you'll see::
  759. Compiling django/conf/app_template/apps.py ...
  760. File "django/conf/app_template/apps.py", line 4
  761. class {{ camel_case_app_name }}Config(AppConfig):
  762. ^
  763. SyntaxError: invalid syntax
  764. Compiling django/conf/app_template/models.py ...
  765. File "django/conf/app_template/models.py", line 1
  766. {{ unicode_literals }}from django.db import models
  767. ^
  768. SyntaxError: invalid syntax
  769. It's safe to ignore these errors (Django will still install just fine), but you
  770. can avoid them by upgrading setuptools to a more recent version. If you're
  771. using pip, you can upgrade pip using ``python -m pip install -U pip`` which
  772. will also upgrade setuptools. This is resolved in later versions of Django as
  773. described in the :doc:`/releases/1.9.2`.
  774. Miscellaneous
  775. -------------
  776. * The jQuery static files in ``contrib.admin`` have been moved into a
  777. ``vendor/jquery`` subdirectory.
  778. * The text displayed for null columns in the admin changelist ``list_display``
  779. cells has changed from ``(None)`` (or its translated equivalent) to ``-`` (a
  780. dash).
  781. * ``django.http.responses.REASON_PHRASES`` and
  782. ``django.core.handlers.wsgi.STATUS_CODE_TEXT`` have been removed. Use
  783. Python's stdlib instead: :data:`http.client.responses` for Python 3 and
  784. `httplib.responses`_ for Python 2.
  785. .. _`httplib.responses`: https://docs.python.org/2/library/httplib.html#httplib.responses
  786. * ``ValuesQuerySet`` and ``ValuesListQuerySet`` have been removed.
  787. * The ``admin/base.html`` template no longer sets
  788. ``window.__admin_media_prefix__`` or ``window.__admin_utc_offset__``. Image
  789. references in JavaScript that used that value to construct absolute URLs have
  790. been moved to CSS for easier customization. The UTC offset is stored on a
  791. data attribute of the ``<body>`` tag.
  792. * ``CommaSeparatedIntegerField`` validation has been refined to forbid values
  793. like ``','``, ``',1'``, and ``'1,,2'``.
  794. * Form initialization was moved from the :meth:`ProcessFormView.get()
  795. <django.views.generic.edit.ProcessFormView.get>` method to the new
  796. :meth:`FormMixin.get_context_data()
  797. <django.views.generic.edit.FormMixin.get_context_data>` method. This may be
  798. backwards incompatible if you have overridden the ``get_context_data()``
  799. method without calling ``super()``.
  800. * Support for PostGIS 1.5 has been dropped.
  801. * The ``django.contrib.sites.models.Site.domain`` field was changed to be
  802. :attr:`~django.db.models.Field.unique`.
  803. * In order to enforce test isolation, database queries are not allowed
  804. by default in :class:`~django.test.SimpleTestCase` tests anymore. You
  805. can disable this behavior by setting the ``allow_database_queries`` class
  806. attribute to ``True`` on your test class.
  807. * ``ResolverMatch.app_name`` was changed to contain the full namespace path in
  808. the case of nested namespaces. For consistency with
  809. ``ResolverMatch.namespace``, the empty value is now an empty string instead
  810. of ``None``.
  811. * For security hardening, session keys must be at least 8 characters.
  812. * Private function ``django.utils.functional.total_ordering()`` has been
  813. removed. It contained a workaround for a ``functools.total_ordering()`` bug
  814. in Python versions older than 2.7.3.
  815. * XML serialization (either through :djadmin:`dumpdata` or the syndication
  816. framework) used to output any characters it received. Now if the content to
  817. be serialized contains any control characters not allowed in the XML 1.0
  818. standard, the serialization will fail with a :exc:`ValueError`.
  819. * :class:`~django.forms.CharField` now strips input of leading and trailing
  820. whitespace by default. This can be disabled by setting the new
  821. :attr:`~django.forms.CharField.strip` argument to ``False``.
  822. * Template text that is translated and uses two or more consecutive percent
  823. signs, e.g. ``"%%"``, may have a new ``msgid`` after ``makemessages`` is run
  824. (most likely the translation will be marked fuzzy). The new ``msgid`` will be
  825. marked ``"#, python-format"``.
  826. * If neither :attr:`request.current_app <django.http.HttpRequest.current_app>`
  827. nor :class:`Context.current_app <django.template.Context>` are set, the
  828. :ttag:`url` template tag will now use the namespace of the current request.
  829. Set ``request.current_app`` to ``None`` if you don't want to use a namespace
  830. hint.
  831. * The :setting:`SILENCED_SYSTEM_CHECKS` setting now silences messages of all
  832. levels. Previously, messages of ``ERROR`` level or higher were printed to the
  833. console.
  834. * The ``FlatPage.enable_comments`` field is removed from the ``FlatPageAdmin``
  835. as it's unused by the application. If your project or a third-party app makes
  836. use of it, :ref:`create a custom ModelAdmin <flatpages-admin>` to add it back.
  837. * The return value of
  838. :meth:`~django.test.runner.DiscoverRunner.setup_databases` and the first
  839. argument of :meth:`~django.test.runner.DiscoverRunner.teardown_databases`
  840. changed. They used to be ``(old_names, mirrors)`` tuples. Now they're just
  841. the first item, ``old_names``.
  842. * By default :class:`~django.test.LiveServerTestCase` attempts to find an
  843. available port in the 8081-8179 range instead of just trying port 8081.
  844. * The system checks for :class:`~django.contrib.admin.ModelAdmin` now check
  845. instances rather than classes.
  846. * The private API to apply mixed migration plans has been dropped for
  847. performance reasons. Mixed plans consist of a list of migrations where some
  848. are being applied and others are being unapplied.
  849. * The related model object descriptor classes in
  850. ``django.db.models.fields.related`` (private API) are moved from the
  851. ``related`` module to ``related_descriptors`` and renamed as follows:
  852. * ``ReverseSingleRelatedObjectDescriptor`` is ``ForwardManyToOneDescriptor``
  853. * ``SingleRelatedObjectDescriptor`` is ``ReverseOneToOneDescriptor``
  854. * ``ForeignRelatedObjectsDescriptor`` is ``ReverseManyToOneDescriptor``
  855. * ``ManyRelatedObjectsDescriptor`` is ``ManyToManyDescriptor``
  856. * If you implement a custom :data:`~django.conf.urls.handler404` view, it must
  857. return a response with an HTTP 404 status code. Use
  858. :class:`~django.http.HttpResponseNotFound` or pass ``status=404`` to the
  859. :class:`~django.http.HttpResponse`. Otherwise, :setting:`APPEND_SLASH` won't
  860. work correctly with ``DEBUG=False``.
  861. .. _deprecated-features-1.9:
  862. Features deprecated in 1.9
  863. ==========================
  864. ``assignment_tag()``
  865. --------------------
  866. Django 1.4 added the ``assignment_tag`` helper to ease the creation of
  867. template tags that store results in a template variable. The
  868. :meth:`~django.template.Library.simple_tag` helper has gained this same
  869. ability, making the ``assignment_tag`` obsolete. Tags that use
  870. ``assignment_tag`` should be updated to use ``simple_tag``.
  871. ``{% cycle %}`` syntax with comma-separated arguments
  872. -----------------------------------------------------
  873. The :ttag:`cycle` tag supports an inferior old syntax from previous Django
  874. versions:
  875. .. code-block:: html+django
  876. {% cycle row1,row2,row3 %}
  877. Its parsing caused bugs with the current syntax, so support for the old syntax
  878. will be removed in Django 1.10 following an accelerated deprecation.
  879. ``ForeignKey`` and ``OneToOneField`` ``on_delete`` argument
  880. -----------------------------------------------------------
  881. In order to increase awareness about cascading model deletion, the
  882. ``on_delete`` argument of ``ForeignKey`` and ``OneToOneField`` will be required
  883. in Django 2.0.
  884. Update models and existing migrations to explicitly set the argument. Since the
  885. default is ``models.CASCADE``, add ``on_delete=models.CASCADE`` to all
  886. ``ForeignKey`` and ``OneToOneField``\s that don't use a different option. You
  887. can also pass it as the second positional argument if you don't care about
  888. compatibility with older versions of Django.
  889. ``Field.rel`` changes
  890. ---------------------
  891. ``Field.rel`` and its methods and attributes have changed to match the related
  892. fields API. The ``Field.rel`` attribute is renamed to ``remote_field`` and many
  893. of its methods and attributes are either changed or renamed.
  894. The aim of these changes is to provide a documented API for relation fields.
  895. ``GeoManager`` and ``GeoQuerySet`` custom methods
  896. -------------------------------------------------
  897. All custom ``GeoQuerySet`` methods (``area()``, ``distance()``, ``gml()``, ...)
  898. have been replaced by equivalent geographic expressions in annotations (see in
  899. new features). Hence the need to set a custom ``GeoManager`` to GIS-enabled
  900. models is now obsolete. As soon as your code doesn't call any of the deprecated
  901. methods, you can simply remove the ``objects = GeoManager()`` lines from your
  902. models.
  903. Template loader APIs have changed
  904. ---------------------------------
  905. Django template loaders have been updated to allow recursive template
  906. extending. This change necessitated a new template loader API. The old
  907. ``load_template()`` and ``load_template_sources()`` methods are now deprecated.
  908. Details about the new API can be found :ref:`in the template loader
  909. documentation <custom-template-loaders>`.
  910. Passing a 3-tuple or an ``app_name`` to ``include()``
  911. -----------------------------------------------------
  912. The instance namespace part of passing a tuple as an argument to ``include()``
  913. has been replaced by passing the ``namespace`` argument to ``include()``. For
  914. example::
  915. polls_patterns = [
  916. url(...),
  917. ]
  918. urlpatterns = [
  919. url(r'^polls/', include((polls_patterns, 'polls', 'author-polls'))),
  920. ]
  921. becomes::
  922. polls_patterns = ([
  923. url(...),
  924. ], 'polls') # 'polls' is the app_name
  925. urlpatterns = [
  926. url(r'^polls/', include(polls_patterns, namespace='author-polls')),
  927. ]
  928. The ``app_name`` argument to ``include()`` has been replaced by passing a
  929. 2-tuple (as above), or passing an object or module with an ``app_name``
  930. attribute (as below). If the ``app_name`` is set in this new way, the
  931. ``namespace`` argument is no longer required. It will default to the value of
  932. ``app_name``. For example, the URL patterns in the tutorial are changed from:
  933. .. code-block:: python
  934. :caption: mysite/urls.py
  935. urlpatterns = [
  936. url(r'^polls/', include('polls.urls', namespace="polls")),
  937. ...
  938. ]
  939. to:
  940. .. code-block:: python
  941. :caption: mysite/urls.py
  942. urlpatterns = [
  943. url(r'^polls/', include('polls.urls')), # 'namespace="polls"' removed
  944. ...
  945. ]
  946. .. code-block:: python
  947. :caption: polls/urls.py
  948. app_name = 'polls' # added
  949. urlpatterns = [...]
  950. This change also means that the old way of including an ``AdminSite`` instance
  951. is deprecated. Instead, pass ``admin.site.urls`` directly to
  952. ``django.conf.urls.url()``:
  953. .. code-block:: python
  954. :caption: urls.py
  955. from django.conf.urls import url
  956. from django.contrib import admin
  957. urlpatterns = [
  958. url(r'^admin/', admin.site.urls),
  959. ]
  960. URL application namespace required if setting an instance namespace
  961. -------------------------------------------------------------------
  962. In the past, an instance namespace without an application namespace
  963. would serve the same purpose as the application namespace, but it was
  964. impossible to reverse the patterns if there was an application namespace
  965. with the same name. Includes that specify an instance namespace require that
  966. the included URLconf sets an application namespace.
  967. ``current_app`` parameter to ``contrib.auth`` views
  968. ---------------------------------------------------
  969. All views in ``django.contrib.auth.views`` have the following structure::
  970. def view(request, ..., current_app=None, ...):
  971. ...
  972. if current_app is not None:
  973. request.current_app = current_app
  974. return TemplateResponse(request, template_name, context)
  975. As of Django 1.8, ``current_app`` is set on the ``request`` object. For
  976. consistency, these views will require the caller to set ``current_app`` on the
  977. ``request`` instead of passing it in a separate argument.
  978. ``django.contrib.gis.geoip``
  979. ----------------------------
  980. The :mod:`django.contrib.gis.geoip2` module supersedes
  981. ``django.contrib.gis.geoip``. The new module provides a similar API except that
  982. it doesn't provide the legacy GeoIP-Python API compatibility methods.
  983. Miscellaneous
  984. -------------
  985. * The ``weak`` argument to ``django.dispatch.signals.Signal.disconnect()`` has
  986. been deprecated as it has no effect.
  987. * The ``check_aggregate_support()`` method of
  988. ``django.db.backends.base.BaseDatabaseOperations`` has been deprecated and
  989. will be removed in Django 2.0. The more general ``check_expression_support()``
  990. should be used instead.
  991. * ``django.forms.extras`` is deprecated. You can find
  992. :class:`~django.forms.SelectDateWidget` in ``django.forms.widgets``
  993. (or simply ``django.forms``) instead.
  994. * Private API ``django.db.models.fields.add_lazy_relation()`` is deprecated.
  995. * The ``django.contrib.auth.tests.utils.skipIfCustomUser()`` decorator is
  996. deprecated. With the test discovery changes in Django 1.6, the tests for
  997. ``django.contrib`` apps are no longer run as part of the user's project.
  998. Therefore, the ``@skipIfCustomUser`` decorator is no longer needed to
  999. decorate tests in ``django.contrib.auth``.
  1000. * If you customized some :ref:`error handlers <error-views>`, the view
  1001. signatures with only one request parameter are deprecated. The views should
  1002. now also accept a second ``exception`` positional parameter.
  1003. * The ``django.utils.feedgenerator.Atom1Feed.mime_type`` and
  1004. ``django.utils.feedgenerator.RssFeed.mime_type`` attributes are deprecated in
  1005. favor of ``content_type``.
  1006. * :class:`~django.core.signing.Signer` now issues a warning if an invalid
  1007. separator is used. This will become an exception in Django 1.10.
  1008. * ``django.db.models.Field._get_val_from_obj()`` is deprecated in favor of
  1009. ``Field.value_from_object()``.
  1010. * ``django.template.loaders.eggs.Loader`` is deprecated as distributing
  1011. applications as eggs is not recommended.
  1012. * The ``callable_obj`` keyword argument to
  1013. ``SimpleTestCase.assertRaisesMessage()`` is deprecated. Pass the callable as
  1014. a positional argument instead.
  1015. * The ``allow_tags`` attribute on methods of ``ModelAdmin`` has been
  1016. deprecated. Use :func:`~django.utils.html.format_html`,
  1017. :func:`~django.utils.html.format_html_join`, or
  1018. :func:`~django.utils.safestring.mark_safe` when constructing the method's
  1019. return value instead.
  1020. * The ``enclosure`` keyword argument to ``SyndicationFeed.add_item()`` is
  1021. deprecated. Use the new ``enclosures`` argument which accepts a list of
  1022. ``Enclosure`` objects instead of a single one.
  1023. * The ``django.template.loader.LoaderOrigin`` and
  1024. ``django.template.base.StringOrigin`` aliases for
  1025. ``django.template.base.Origin`` are deprecated.
  1026. .. _removed-features-1.9:
  1027. Features removed in 1.9
  1028. =======================
  1029. These features have reached the end of their deprecation cycle and are removed
  1030. in Django 1.9. See :ref:`deprecated-features-1.7` for details, including how to
  1031. remove usage of these features.
  1032. * ``django.utils.dictconfig`` is removed.
  1033. * ``django.utils.importlib`` is removed.
  1034. * ``django.utils.tzinfo`` is removed.
  1035. * ``django.utils.unittest`` is removed.
  1036. * The ``syncdb`` command is removed.
  1037. * ``django.db.models.signals.pre_syncdb`` and
  1038. ``django.db.models.signals.post_syncdb`` is removed.
  1039. * Support for ``allow_syncdb`` on database routers is removed.
  1040. * Automatic syncing of apps without migrations is removed. Migrations are
  1041. compulsory for all apps unless you pass the :option:`migrate --run-syncdb`
  1042. option.
  1043. * The SQL management commands for apps without migrations, ``sql``, ``sqlall``,
  1044. ``sqlclear``, ``sqldropindexes``, and ``sqlindexes``, are removed.
  1045. * Support for automatic loading of ``initial_data`` fixtures and initial SQL
  1046. data is removed.
  1047. * All models need to be defined inside an installed application or declare an
  1048. explicit :attr:`~django.db.models.Options.app_label`. Furthermore, it isn't
  1049. possible to import them before their application is loaded. In particular, it
  1050. isn't possible to import models inside the root package of an application.
  1051. * The model and form ``IPAddressField`` is removed. A stub field remains for
  1052. compatibility with historical migrations.
  1053. * ``AppCommand.handle_app()`` is no longer supported.
  1054. * ``RequestSite`` and ``get_current_site()`` are no longer importable from
  1055. ``django.contrib.sites.models``.
  1056. * FastCGI support via the ``runfcgi`` management command is removed.
  1057. * ``django.utils.datastructures.SortedDict`` is removed.
  1058. * ``ModelAdmin.declared_fieldsets`` is removed.
  1059. * The ``util`` modules that provided backwards compatibility are removed:
  1060. * ``django.contrib.admin.util``
  1061. * ``django.contrib.gis.db.backends.util``
  1062. * ``django.db.backends.util``
  1063. * ``django.forms.util``
  1064. * ``ModelAdmin.get_formsets`` is removed.
  1065. * The backward compatible shims introduced to rename the
  1066. ``BaseMemcachedCache._get_memcache_timeout()`` method to
  1067. ``get_backend_timeout()`` is removed.
  1068. * The ``--natural`` and ``-n`` options for :djadmin:`dumpdata` are removed.
  1069. * The ``use_natural_keys`` argument for ``serializers.serialize()`` is removed.
  1070. * Private API ``django.forms.forms.get_declared_fields()`` is removed.
  1071. * The ability to use a ``SplitDateTimeWidget`` with ``DateTimeField`` is
  1072. removed.
  1073. * The ``WSGIRequest.REQUEST`` property is removed.
  1074. * The class ``django.utils.datastructures.MergeDict`` is removed.
  1075. * The ``zh-cn`` and ``zh-tw`` language codes are removed.
  1076. * The internal ``django.utils.functional.memoize()`` is removed.
  1077. * ``django.core.cache.get_cache`` is removed.
  1078. * ``django.db.models.loading`` is removed.
  1079. * Passing callable arguments to querysets is no longer possible.
  1080. * ``BaseCommand.requires_model_validation`` is removed in favor of
  1081. ``requires_system_checks``. Admin validators is replaced by admin checks.
  1082. * The ``ModelAdmin.validator_class`` and ``default_validator_class`` attributes
  1083. are removed.
  1084. * ``ModelAdmin.validate()`` is removed.
  1085. * ``django.db.backends.DatabaseValidation.validate_field`` is removed in
  1086. favor of the ``check_field`` method.
  1087. * The ``validate`` management command is removed.
  1088. * ``django.utils.module_loading.import_by_path`` is removed in favor of
  1089. ``django.utils.module_loading.import_string``.
  1090. * ``ssi`` and ``url`` template tags are removed from the ``future`` template
  1091. tag library.
  1092. * ``django.utils.text.javascript_quote()`` is removed.
  1093. * Database test settings as independent entries in the database settings,
  1094. prefixed by ``TEST_``, are no longer supported.
  1095. * The ``cache_choices`` option to :class:`~django.forms.ModelChoiceField` and
  1096. :class:`~django.forms.ModelMultipleChoiceField` is removed.
  1097. * The default value of the
  1098. :attr:`RedirectView.permanent <django.views.generic.base.RedirectView.permanent>`
  1099. attribute has changed from ``True`` to ``False``.
  1100. * ``django.contrib.sitemaps.FlatPageSitemap`` is removed in favor of
  1101. ``django.contrib.flatpages.sitemaps.FlatPageSitemap``.
  1102. * Private API ``django.test.utils.TestTemplateLoader`` is removed.
  1103. * The ``django.contrib.contenttypes.generic`` module is removed.