1.9.txt 45 KB

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