1.8.txt 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817
  1. ============================================
  2. Django 1.8 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. Welcome to Django 1.8!
  5. These release notes cover the `new features`_, as well as some `backwards
  6. incompatible changes`_ you'll want to be aware of when upgrading from Django
  7. 1.6 or older versions. We've also dropped some features, which are detailed in
  8. :ref:`our deprecation plan <deprecation-removed-in-1.8>`, and we've `begun the
  9. deprecation process for some features`_.
  10. .. _`new features`: `What's new in Django 1.8`_
  11. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.8`_
  12. .. _`begun the deprecation process for some features`: `Features deprecated in 1.8`_
  13. Python compatibility
  14. ====================
  15. Like Django 1.7, Django 1.8 requires Python 2.7 or above, though we
  16. **highly recommend** the latest minor release.
  17. What's new in Django 1.8
  18. ========================
  19. Security enhancements
  20. ~~~~~~~~~~~~~~~~~~~~~
  21. Several features of the django-secure_ third-party library have been
  22. integrated into Django. :class:`django.middleware.security.SecurityMiddleware`
  23. provides several security enhancements to the request/response cycle. The new
  24. :djadminopt:`--deploy` option of the :djadmin:`check` command allows you to
  25. check your production settings file for ways to increase the security of your
  26. site.
  27. .. _django-secure: https://pypi.python.org/pypi/django-secure
  28. New data types
  29. ~~~~~~~~~~~~~~
  30. * Django now has a :class:`~django.db.models.UUIDField` for storing
  31. universally unique identifiers. There is a corresponding :class:`form field
  32. <django.forms.UUIDField>`. It is stored as the native ``uuid`` data type on
  33. PostgreSQL and as a fixed length character field on other backends.
  34. Minor features
  35. ~~~~~~~~~~~~~~
  36. :mod:`django.contrib.admin`
  37. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  38. * :class:`~django.contrib.admin.ModelAdmin` now has a
  39. :meth:`~django.contrib.admin.ModelAdmin.has_module_permission`
  40. method to allow limiting access to the module on the admin index page.
  41. * :class:`~django.contrib.admin.InlineModelAdmin` now has an attribute
  42. :attr:`~django.contrib.admin.InlineModelAdmin.show_change_link` that
  43. supports showing a link to an inline object's change form.
  44. * Use the new ``django.contrib.admin.RelatedOnlyFieldListFilter`` in
  45. :attr:`ModelAdmin.list_filter <django.contrib.admin.ModelAdmin.list_filter>`
  46. to limit the ``list_filter`` choices to foreign objects which are attached to
  47. those from the ``ModelAdmin``.
  48. * The :meth:`ModelAdmin.delete_view()
  49. <django.contrib.admin.ModelAdmin.delete_view>` displays a summary of objects
  50. to be deleted on the deletion confirmation page.
  51. * The jQuery library embedded in the admin has been upgraded to version 1.11.1.
  52. * You can now specify :attr:`AdminSite.site_url
  53. <django.contrib.admin.AdminSite.site_url>` in order to display a link to the
  54. front-end site.
  55. * You can now specify :attr:`ModelAdmin.show_full_result_count
  56. <django.contrib.admin.ModelAdmin.show_full_result_count>` to control whether
  57. or not the full count of objects should be displayed on a filtered admin page.
  58. :mod:`django.contrib.auth`
  59. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  60. * Authorization backends can now raise
  61. :class:`~django.core.exceptions.PermissionDenied` in
  62. :meth:`~django.contrib.auth.models.User.has_perm`
  63. and :meth:`~django.contrib.auth.models.User.has_module_perms`
  64. to short-circuit permission checking.
  65. * :class:`~django.contrib.auth.forms.PasswordResetForm` now
  66. has a method :meth:`~django.contrib.auth.forms.PasswordResetForm.send_email`
  67. that can be overridden to customize the mail to be sent.
  68. * The ``max_length`` of :attr:`Permission.name
  69. <django.contrib.auth.models.Permission.name>` has been increased from 50 to
  70. 255 characters. Please run the database migration.
  71. * :attr:`~django.contrib.auth.models.CustomUser.USERNAME_FIELD` and
  72. :attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS` now supports
  73. :class:`~django.db.models.ForeignKey`\s.
  74. :mod:`django.contrib.formtools`
  75. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  76. * A :doc:`form wizard </ref/contrib/formtools/form-wizard>` using the
  77. :class:`~django.contrib.formtools.wizard.views.CookieWizardView` will now ignore
  78. an invalid cookie, and the wizard will restart from the first step. An invalid
  79. cookie can occur in cases of intentional manipulation, but also after a secret
  80. key change. Previously, this would raise ``WizardViewCookieModified``, a
  81. ``SuspiciousOperation``, causing an exception for any user with an invalid cookie
  82. upon every request to the wizard, until the cookie is removed.
  83. :mod:`django.contrib.gis`
  84. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  85. * Compatibility shims for ``SpatialRefSys`` and ``GeometryColumns`` changed in
  86. Django 1.2 have been removed.
  87. * The Spatialite backend now supports ``Collect`` and ``Extent`` aggregates
  88. when the database version is 3.0 or later.
  89. :mod:`django.contrib.messages`
  90. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  91. * ...
  92. :mod:`django.contrib.redirects`
  93. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  94. * ...
  95. :mod:`django.contrib.sessions`
  96. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  97. * Session cookie is now deleted after
  98. :meth:`~django.contrib.sessions.backends.base.SessionBase.flush()` is called.
  99. :mod:`django.contrib.sitemaps`
  100. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  101. * The new :attr:`Sitemap.i18n <django.contrib.sitemaps.Sitemap.i18n>` attribute
  102. allows you to generate a sitemap based on the :setting:`LANGUAGES` setting.
  103. :mod:`django.contrib.sites`
  104. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  105. * :func:`~django.contrib.sites.shortcuts.get_current_site` will now lookup
  106. the current site based on :meth:`request.get_host()
  107. <django.http.HttpRequest.get_host>` if the :setting:`SITE_ID` setting is not
  108. defined.
  109. :mod:`django.contrib.staticfiles`
  110. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  111. * ...
  112. :mod:`django.contrib.syndication`
  113. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  114. * ...
  115. Cache
  116. ^^^^^
  117. * ...
  118. Email
  119. ^^^^^
  120. * :ref:`Email backends <topic-email-backends>` now support the context manager
  121. protocol for opening and closing connections.
  122. * The SMTP email backend now supports ``keyfile`` and ``certfile``
  123. authentication with the :setting:`EMAIL_SSL_CERTFILE` and
  124. :setting:`EMAIL_SSL_KEYFILE` settings.
  125. * The SMTP :class:`~django.core.mail.backends.smtp.EmailBackend` now supports
  126. setting the ``timeout`` parameter with the :setting:`EMAIL_TIMEOUT` setting.
  127. File Storage
  128. ^^^^^^^^^^^^
  129. * ...
  130. File Uploads
  131. ^^^^^^^^^^^^
  132. * ...
  133. Forms
  134. ^^^^^
  135. * Form widgets now render attributes with a value of ``True`` or ``False``
  136. as HTML5 boolean attributes.
  137. * The new :meth:`~django.forms.Form.has_error()` method allows checking
  138. if a specific error has happened.
  139. * If :attr:`~django.forms.Form.required_css_class` is defined on a form, then
  140. the ``<label>`` tags for required fields will have this class present in its
  141. attributes.
  142. * The rendering of non-field errors in unordered lists (``<ul>``) now includes
  143. ``nonfield`` in its list of classes to distinguish them from field-specific
  144. errors.
  145. * :class:`~django.forms.Field` now accepts a
  146. :attr:`~django.forms.Field.label_suffix` argument, which will override the
  147. form's :attr:`~django.forms.Form.label_suffix`. This enables customizing the
  148. suffix on a per-field basis — previously it wasn't possible to override
  149. a form's :attr:`~django.forms.Form.label_suffix` while using shortcuts such
  150. as ``{{ form.as_p }}`` in templates.
  151. * :class:`~django.forms.extras.widgets.SelectDateWidget` now accepts an
  152. :attr:`~django.forms.extras.widgets.SelectDateWidget.empty_label` argument, which will
  153. override the top list choice label when :class:`~django.forms.DateField` is not required.
  154. * After an :class:`~django.forms.ImageField` has been cleaned and validated, the
  155. ``UploadedFile`` object will have an additional ``image`` attribute containing
  156. the Pillow ``Image`` instance used to check if the file was a valid image. It
  157. will also update ``UploadedFile.content_type`` with the image's content type
  158. as determined by Pillow.
  159. Generic Views
  160. ^^^^^^^^^^^^^
  161. * Generic views that use :class:`~django.views.generic.list.MultipleObjectMixin`
  162. may now specify the ordering applied to the
  163. :attr:`~django.views.generic.list.MultipleObjectMixin.queryset` by setting
  164. :attr:`~django.views.generic.list.MultipleObjectMixin.ordering` or overriding
  165. :meth:`~django.views.generic.list.MultipleObjectMixin.get_ordering()`.
  166. * The new :attr:`SingleObjectMixin.query_pk_and_slug
  167. <django.views.generic.detail.SingleObjectMixin.query_pk_and_slug>`
  168. attribute allows changing the behavior of
  169. :meth:`~django.views.generic.detail.SingleObjectMixin.get_object()`
  170. so that it'll perform its lookup using both the primary key and the slug.
  171. Internationalization
  172. ^^^^^^^^^^^^^^^^^^^^
  173. * :setting:`FORMAT_MODULE_PATH` can now be a list of strings representing
  174. module paths. This allows importing several format modules from different
  175. reusable apps. It also allows overriding those custom formats in your main
  176. Django project.
  177. Management Commands
  178. ^^^^^^^^^^^^^^^^^^^
  179. * :djadmin:`dumpdata` now has the option :djadminopt:`--output` which allows
  180. specifying the file to which the serialized data is written.
  181. * :djadmin:`makemessages` and :djadmin:`compilemessages` now have the option
  182. :djadminopt:`--exclude` which allows exclusion of specific locales from
  183. processing.
  184. * The :djadminopt:`--ignorenonexistent` option of the :djadmin:`loaddata`
  185. management command now ignores data for models that no longer exist.
  186. * :djadmin:`runserver` now uses daemon threads for faster reloading.
  187. * :djadmin:`inspectdb` now outputs ``Meta.unique_together``.
  188. * When calling management commands from code through :ref:`call_command
  189. <call-command>` and passing options, the option name can match the command
  190. line option name (without the initial dashes) or the final option destination
  191. variable name, but in either case, the resulting option received by the
  192. command is now always the ``dest`` name specified in the command option
  193. definition (as long as the command uses the new :py:mod:`argparse` module).
  194. * The :djadmin:`dbshell` command now supports MySQL's optional SSL certificate
  195. authority setting (``--ssl-ca``).
  196. * The :djadminopt:`--name` option for :djadmin:`makemigrations` allows you to
  197. to give the migration(s) a custom name instead of a generated one.
  198. * :djadmin:`makemigrations` can now serialize timezone-aware values.
  199. Migrations
  200. ^^^^^^^^^^
  201. * The :class:`~django.db.migrations.operations.RunSQL` operation can now handle
  202. parameters passed to the SQL statements.
  203. Models
  204. ^^^^^^
  205. * Django now logs at most 9000 queries in ``connections.queries``, in order
  206. to prevent excessive memory usage in long-running processes in debug mode.
  207. * There is now a model ``Meta`` option to define a
  208. :attr:`default related name <django.db.models.Options.default_related_name>`
  209. for all relational fields of a model.
  210. * Pickling models and querysets across different versions of Django isn't
  211. officially supported (it may work, but there's no guarantee). An extra
  212. variable that specifies the current Django version is now added to the
  213. pickled state of models and querysets, and Django raises a ``RuntimeWarning``
  214. when these objects are unpickled in a different version than the one in
  215. which they were pickled.
  216. * Added :meth:`Model.from_db() <django.db.models.Model.from_db()>` which
  217. Django uses whenever objects are loaded using the ORM. The method allows
  218. customizing model loading behavior.
  219. * ``extra(select={...})`` now allows you to escape a literal ``%s`` sequence
  220. using ``%%s``.
  221. Signals
  222. ^^^^^^^
  223. * Exceptions from the ``(receiver, exception)`` tuples returned by
  224. :meth:`Signal.send_robust() <django.dispatch.Signal.send_robust>` now have
  225. their traceback attached as a ``__traceback__`` attribute.
  226. * The ``environ`` argument, which contains the WSGI environment structure from
  227. the request, was added to the :data:`~django.core.signals.request_started`
  228. signal.
  229. Templates
  230. ^^^^^^^^^
  231. * :tfilter:`urlize` now supports domain-only links that include characters after
  232. the top-level domain (e.g. ``djangoproject.com/`` and
  233. ``djangoproject.com/download/``).
  234. Requests and Responses
  235. ^^^^^^^^^^^^^^^^^^^^^^
  236. * ``WSGIRequest`` now respects paths starting with ``//``.
  237. * The :meth:`HttpRequest.build_absolute_uri()
  238. <django.http.HttpRequest.build_absolute_uri>` method now handles paths
  239. starting with ``//`` correctly.
  240. * If :setting:`DEBUG` is ``True`` and a request raises a
  241. :exc:`~django.core.exceptions.SuspiciousOperation`, the response will be
  242. rendered with a detailed error page.
  243. * The ``query_string`` argument of :class:`~django.http.QueryDict` is now
  244. optional, defaulting to ``None``, so a blank ``QueryDict`` can now be
  245. instantiated with ``QueryDict()`` instead of ``QueryDict(None)`` or
  246. ``QueryDict('')``.
  247. * The ``GET`` and ``POST`` attributes of an :class:`~django.http.HttpRequest`
  248. object are now :class:`~django.http.QueryDict`\s rather than dictionaries,
  249. and the ``FILES`` attribute is now a ``MultiValueDict``.
  250. This brings this class into line with the documentation and with
  251. ``WSGIRequest``.
  252. * The :attr:`HttpResponse.charset <django.http.HttpResponse.charset>` attribute
  253. was added.
  254. Tests
  255. ^^^^^
  256. * The ``count`` argument was added to
  257. :meth:`~django.test.SimpleTestCase.assertTemplateUsed`. This allows you to
  258. assert that a template was rendered a specific number of times.
  259. * The new :meth:`~django.test.SimpleTestCase.assertJSONNotEqual` assertion
  260. allows you to test that two JSON fragments are not equal.
  261. * Added the ability to preserve the test database by adding the
  262. :djadminopt:`--keepdb` flag.
  263. * Added the :attr:`~django.test.Response.resolver_match` attribute to test
  264. client responses.
  265. * Added several settings that allow customization of test tablespace parameters
  266. for Oracle: :setting:`DATAFILE`, :setting:`DATAFILE_TMP`,
  267. :setting:`DATAFILE_MAXSIZE` and :setting:`DATAFILE_TMP_MAXSIZE`.
  268. Validators
  269. ^^^^^^^^^^
  270. * ...
  271. Backwards incompatible changes in 1.8
  272. =====================================
  273. .. warning::
  274. In addition to the changes outlined in this section, be sure to review the
  275. :ref:`deprecation plan <deprecation-removed-in-1.8>` for any features that
  276. have been removed. If you haven't updated your code within the
  277. deprecation timeline for a given feature, its removal may appear as a
  278. backwards incompatible change.
  279. Related object operations are run in a transaction
  280. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  281. Some operations on related objects such as
  282. :meth:`~django.db.models.fields.related.RelatedManager.add()` or
  283. :ref:`direct assignment<direct-assignment>` ran multiple data modifying
  284. queries without wrapping them in transactions. To reduce the risk of data
  285. corruption, all data modifying methods that affect multiple related objects
  286. (i.e. ``add()``, ``remove()``, ``clear()``, and :ref:`direct assignment
  287. <direct-assignment>`) now perform their data modifying queries from within a
  288. transaction, provided your database supports transactions.
  289. This has one backwards incompatible side effect, signal handlers triggered from
  290. these methods are now executed within the method's transaction and any
  291. exception in a signal handler will prevent the whole operation.
  292. Assigning unsaved objects to relations raises an error
  293. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  294. Assigning unsaved objects to a :class:`~django.db.models.ForeignKey`,
  295. :class:`~django.contrib.contenttypes.fields.GenericForeignKey`, and
  296. :class:`~django.db.models.OneToOneField` now raises a :exc:`ValueError`.
  297. Previously, the assignment of an unsaved object would be silently ignored.
  298. For example::
  299. >>> book = Book.objects.create(name="Django")
  300. >>> book.author = Author(name="John")
  301. >>> book.author.save()
  302. >>> book.save()
  303. >>> Book.objects.get(name="Django")
  304. >>> book.author
  305. >>>
  306. Now, an error will be raised to prevent data loss::
  307. >>> book.author = Author(name="john")
  308. Traceback (most recent call last):
  309. ...
  310. ValueError: Cannot assign "<Author: John>": "Author" instance isn't saved in the database.
  311. Management commands that only accept positional arguments
  312. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  313. If you have written a custom management command that only accepts positional
  314. arguments and you didn't specify the
  315. :attr:`~django.core.management.BaseCommand.args` command variable, you might
  316. get an error like ``Error: unrecognized arguments: ...``, as variable parsing
  317. is now based on :py:mod:`argparse` which doesn't implicitly accept positional
  318. arguments. You can make your command backwards compatible by simply setting the
  319. :attr:`~django.core.management.BaseCommand.args` class variable. However, if
  320. you don't have to keep compatibility with older Django versions, it's better to
  321. implement the new :meth:`~django.core.management.BaseCommand.add_arguments`
  322. method as described in :doc:`/howto/custom-management-commands`.
  323. Custom test management command arguments through test runner
  324. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  325. The method to add custom arguments to the `test` management command through the
  326. test runner has changed. Previously, you could provide an `option_list` class
  327. variable on the test runner to add more arguments (à la :py:mod:`optparse`).
  328. Now to implement the same behavior, you have to create an
  329. ``add_arguments(cls, parser)`` class method on the test runner and call
  330. ``parser.add_argument`` to add any custom arguments, as parser is now an
  331. :py:class:`argparse.ArgumentParser` instance.
  332. Model check ensures auto-generated column names are within limits specified by database
  333. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  334. A field name that's longer than the column name length supported by a database
  335. can create problems. For example, with MySQL you'll get an exception trying to
  336. create the column, and with PostgreSQL the column name is truncated by the
  337. database (you may see a warning in the PostgreSQL logs).
  338. A model check has been introduced to better alert users to this scenario before
  339. the actual creation of database tables.
  340. If you have an existing model where this check seems to be a false positive,
  341. for example on PostgreSQL where the name was already being truncated, simply
  342. use :attr:`~django.db.models.Field.db_column` to specify the name that's being
  343. used.
  344. The check also applies to the columns generated in an implicit
  345. ``ManyToManyField.through`` model. If you run into an issue there, use
  346. :attr:`~django.db.models.ManyToManyField.through` to create an explicit model
  347. and then specify :attr:`~django.db.models.Field.db_column` on its column(s)
  348. as needed.
  349. Query relation lookups now check object types
  350. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  351. Querying for model lookups now checks if the object passed is of correct type
  352. and raises a :exc:`ValueError` if not. Previously, Django didn't care if the
  353. object was of correct type; it just used the object's related field attribute
  354. (e.g. ``id``) for the lookup. Now, an error is raised to prevent incorrect
  355. lookups::
  356. >>> book = Book.objects.create(name="Django")
  357. >>> book = Book.objects.filter(author=book)
  358. Traceback (most recent call last):
  359. ...
  360. ValueError: Cannot query "<Book: Django>": Must be "Author" instance.
  361. Default ``EmailField.max_length`` increased to 254
  362. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  363. The old default 75 character ``max_length`` was not capable of storing all
  364. possible RFC3696/5321-compliant email addresses. In order to store all
  365. possible valid email addresses, the ``max_length`` has been increased to 254
  366. characters. You will need to generate and apply database migrations for your
  367. affected models (or add ``max_length=75`` if you wish to keep the length on
  368. your current fields). A migration for
  369. :attr:`django.contrib.auth.models.User.email` is included.
  370. Support for PostgreSQL versions older than 9.0
  371. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  372. The end of upstream support periods was reached in July 2014 for PostgreSQL 8.4.
  373. As a consequence, Django 1.8 sets 9.0 as the minimum PostgreSQL version it
  374. officially supports.
  375. This also includes dropping support for PostGIS 1.3 and 1.4 as these versions
  376. are not supported on versions of PostgreSQL later than 8.4.
  377. Django also now requires the use of Psycopg2 version 2.0.9 or higher.
  378. Support for MySQL versions older than 5.5
  379. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  380. The end of upstream support periods was reached in January 2012 for MySQL 5.0
  381. and December 2013 for MySQL 5.1. As a consequence, Django 1.8 sets 5.5 as the
  382. minimum MySQL version it officially supports.
  383. Support for Oracle versions older than 11.1
  384. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  385. The end of upstream support periods was reached in July 2010 for Oracle 9.2,
  386. January 2012 for Oracle 10.1, and July 2013 for Oracle 10.2. As a consequence,
  387. Django 1.8 sets 11.1 as the minimum Oracle version it officially supports.
  388. Specific privileges used instead of roles for tests on Oracle
  389. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  390. Earlier versions of Django granted the CONNECT and RESOURCE roles to the test
  391. user on Oracle. These roles have been deprecated, so Django 1.8 uses the
  392. specific underlying privileges instead. This changes the privileges required
  393. of the main user for running tests (unless the project is configured to avoid
  394. creating a test user). The exact privileges required now are detailed in
  395. :ref:`Oracle notes <oracle-notes>`.
  396. ``AbstractUser.last_login`` allows null values
  397. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  398. The :attr:`AbstractUser.last_login <django.contrib.auth.models.User.last_login>`
  399. field now allows null values. Previously, it defaulted to the time when the user
  400. was created which was misleading if the user never logged in. Please run the
  401. database migration. If your custom user inherits from ``AbstractUser`` and you
  402. wish to set ``last_login`` to ``NULL`` for users who haven't logged in, you can
  403. run this query::
  404. from django.db import models
  405. from django.contrib.auth import get_user_model
  406. from django.contrib.auth.models import AbstractBaseUser
  407. UserModel = get_user_model()
  408. if issubclass(UserModel, AbstractBaseUser):
  409. UserModel._default_manager.filter(
  410. last_login=models.F('date_joined')
  411. ).update(last_login=None)
  412. Miscellaneous
  413. ~~~~~~~~~~~~~
  414. * ``connections.queries`` is now a read-only attribute.
  415. * Database connections are considered equal only if they're the same object.
  416. They aren't hashable any more.
  417. * :class:`~django.middleware.gzip.GZipMiddleware` used to disable compression
  418. for some content types when the request is from Internet Explorer, in order
  419. to work around a bug in IE6 and earlier. This behavior could affect
  420. performance on IE7 and later. It was removed.
  421. * ``URLField.to_python`` no longer adds a trailing slash to pathless URLs.
  422. * ``django.contrib.gis`` dropped support for GEOS 3.1 and GDAL 1.6.
  423. * The :tfilter:`length` template filter now returns ``0`` for an undefined
  424. variable, rather than an empty string.
  425. * Support for SpatiaLite < 2.4 has been dropped.
  426. * ``ForeignKey.default_error_message['invalid']`` has been changed from
  427. ``'%(model)s instance with pk %(pk)r does not exist.'`` to
  428. ``'%(model)s instance with %(field)s %(value)r does not exist.'`` If you are
  429. using this message in your own code, please update the list of interpolated
  430. parameters. Internally, Django will continue to provide the
  431. ``pk`` parameter in ``params`` for backwards compatibility.
  432. * ``UserCreationForm.errors_messages['duplicate_username']`` is no longer used.
  433. If you wish to customize that error message, :ref:`override it on the form
  434. <modelforms-overriding-default-fields>` using the ``'unique'`` key in
  435. ``Meta.errors_messages['username']`` or, if you have a custom form field for
  436. ``'username'``, using the the ``'unique'`` key in its
  437. :attr:`~django.forms.Field.error_messages` argument.
  438. * ``AdminSite`` no longer takes an ``app_name`` argument and its ``app_name``
  439. attribute has been removed. The application name is always ``admin`` (as
  440. opposed to the instance name which you can still customize using
  441. ``AdminSite(name="...")``.
  442. * Internal changes were made to the :class:`~django.forms.ClearableFileInput`
  443. widget to allow more customization. The undocumented ``url_markup_template``
  444. attribute was removed in favor of ``template_with_initial``.
  445. * For consistency with other major vendors, the ``en_GB`` locale now has Monday
  446. as the first day of the week.
  447. * Seconds have been removed from any locales that had them in ``TIME_FORMAT``,
  448. ``DATETIME_FORMAT``, or ``SHORT_DATETIME_FORMAT``.
  449. * The default max size of the Oracle test tablespace has increased from 200M
  450. to 500M.
  451. .. _deprecated-features-1.8:
  452. Features deprecated in 1.8
  453. ==========================
  454. Loading ``cycle`` and ``firstof`` template tags from ``future`` library
  455. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  456. Django 1.6 introduced ``{% load cycle from future %}`` and
  457. ``{% load firstof from future %}`` syntax for forward compatibility of the
  458. :ttag:`cycle` and :ttag:`firstof` template tags. This syntax is now deprecated
  459. and will be removed in Django 2.0. You can simply remove the
  460. ``{% load ... from future %}`` tags.
  461. ``django.conf.urls.patterns()``
  462. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  463. In the olden days of Django, it was encouraged to reference views as strings
  464. in ``urlpatterns``::
  465. urlpatterns = patterns('',
  466. url('^$', 'myapp.views.myview'),
  467. )
  468. and Django would magically import ``myapp.views.myview`` internally and turn
  469. the string into a real function reference. In order to reduce repetition when
  470. referencing many views from the same module, the ``patterns()`` function takes
  471. a required initial ``prefix`` argument which is prepended to all
  472. views-as-strings in that set of ``urlpatterns``::
  473. urlpatterns = patterns('myapp.views',
  474. url('^$', 'myview'),
  475. url('^other/$', 'otherview'),
  476. )
  477. In the modern era, we have updated the tutorial to instead recommend importing
  478. your views module and referencing your view functions (or classes) directly.
  479. This has a number of advantages, all deriving from the fact that we are using
  480. normal Python in place of "Django String Magic": the errors when you mistype a
  481. view name are less obscure, IDEs can help with autocompletion of view names,
  482. etc.
  483. So these days, the above use of the ``prefix`` arg is much more likely to be
  484. written (and is better written) as::
  485. from myapp import views
  486. urlpatterns = patterns('',
  487. url('^$', views.myview),
  488. url('^other/$', views.otherview),
  489. )
  490. Thus ``patterns()`` serves little purpose and is a burden when teaching new users
  491. (answering the newbie's question "why do I need this empty string as the first
  492. argument to ``patterns()``?"). For these reasons, we are deprecating it.
  493. Updating your code is as simple as ensuring that ``urlpatterns`` is a list of
  494. :func:`django.conf.urls.url` instances. For example::
  495. from django.conf.urls import url
  496. from myapp import views
  497. urlpatterns = [
  498. url('^$', views.myview),
  499. url('^other/$', views.otherview),
  500. ]
  501. Passing a string as ``view`` to :func:`~django.conf.urls.url`
  502. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  503. Related to the previous item, referencing views as strings in the ``url()``
  504. function is deprecated. Pass the callable view as described in the previous
  505. section instead.
  506. ``django.test.SimpleTestCase.urls``
  507. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  508. The attribute :attr:`SimpleTestCase.urls <django.test.SimpleTestCase.urls>`
  509. for specifying URLconf configuration in tests has been deprecated and will be
  510. removed in Django 2.0. Use :func:`@override_settings(ROOT_URLCONF=...)
  511. <django.test.override_settings>` instead.
  512. ``prefix`` argument to :func:`~django.conf.urls.i18n.i18n_patterns`
  513. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  514. Related to the previous item, the ``prefix`` argument to
  515. :func:`django.conf.urls.i18n.i18n_patterns` has been deprecated. Simply pass a
  516. list of :func:`django.conf.urls.url` instances instead.
  517. Using an incorrect count of unpacked values in the :ttag:`for` template tag
  518. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  519. Using an incorrect count of unpacked values in :ttag:`for` tag will raise an
  520. exception rather than fail silently in Django 2.0.
  521. Passing a dotted path to :func:`~django.core.urlresolvers.reverse()` and :ttag:`url`
  522. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  523. Reversing URLs by Python path is an expensive operation as it causes the
  524. path being reversed to be imported. This behavior has also resulted in a
  525. `security issue`_. Use :ref:`named URL patterns <naming-url-patterns>`
  526. for reversing instead.
  527. If you are using :mod:`django.contrib.sitemaps`, add the ``name`` argument to
  528. the ``url`` that references :func:`django.contrib.sitemaps.views.sitemap`::
  529. from django.contrib.sitemaps.views import sitemap
  530. url(r'^sitemap\.xml$', sitemap, {'sitemaps': sitemaps},
  531. name='django.contrib.sitemaps.views.sitemap')
  532. to ensure compatibility when reversing by Python path is removed in Django 2.0.
  533. Similarly for GIS sitemaps, add ``name='django.contrib.gis.sitemaps.views.kml'``
  534. or ``name='django.contrib.gis.sitemaps.views.kmz'``.
  535. .. _security issue: https://www.djangoproject.com/weblog/2014/apr/21/security/#s-issue-unexpected-code-execution-using-reverse
  536. Extending management command arguments through ``Command.option_list``
  537. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  538. Management commands now use :py:mod:`argparse` instead of :py:mod:`optparse` to
  539. parse command-line arguments passed to commands. This also means that the way
  540. to add custom arguments to commands has changed: instead of extending the
  541. ``option_list`` class list, you should now override the
  542. :meth:`~django.core.management.BaseCommand.add_arguments` method and add
  543. arguments through ``argparse.add_argument()``. See
  544. :ref:`this example <custom-commands-options>` for more details.
  545. ``django.core.management.NoArgsCommand``
  546. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  547. The class :class:`~django.core.management.NoArgsCommand` is now deprecated and
  548. will be removed in Django 2.0. Use :class:`~django.core.management.BaseCommand`
  549. instead, which takes no arguments by default.
  550. ``cache_choices`` option of ``ModelChoiceField`` and ``ModelMultipleChoiceField``
  551. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  552. :class:`~django.forms.ModelChoiceField` and
  553. :class:`~django.forms.ModelMultipleChoiceField` took an undocumented, untested
  554. option ``cache_choices``. This cached querysets between multiple renderings of
  555. the same ``Form`` object. This option is subject to an accelerated deprecation
  556. and will be removed in Django 1.9.
  557. ``django.template.resolve_variable()``
  558. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  559. The function has been informally marked as "Deprecated" for some time. Replace
  560. ``resolve_variable(path, context)`` with
  561. ``django.template.Variable(path).resolve(context)``.
  562. ``django.contrib.webdesign``
  563. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  564. It provided the :ttag:`lorem` template tag which is now included in the
  565. built-in tags. Simply remove ``'django.contrib.webdesign'`` from
  566. :setting:`INSTALLED_APPS` and ``{% load webdesign %}`` from your templates.
  567. ``error_message`` argument to ``django.forms.RegexField``
  568. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  569. It provided backwards compatibility for pre-1.0 code, but its functionality is
  570. redundant. Use ``Field.error_messages['invalid']`` instead.
  571. Old :tfilter:`unordered_list` syntax
  572. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  573. An older (pre-1.0), more restrictive and verbose input format for the
  574. :tfilter:`unordered_list` template filter has been deprecated::
  575. ``['States', [['Kansas', [['Lawrence', []], ['Topeka', []]]], ['Illinois', []]]]``
  576. Using the new syntax, this becomes::
  577. ``['States', ['Kansas', ['Lawrence', 'Topeka'], 'Illinois']]``
  578. ``django.forms.Field._has_changed()``
  579. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  580. Rename this method to :meth:`~django.forms.Field.has_changed` by removing the
  581. leading underscore. The old name will still work until Django 2.0.
  582. ``django.utils.html.remove_tags()`` and ``removetags`` template filter
  583. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  584. ``django.utils.html.remove_tags()`` as well as the template filter
  585. ``removetags`` have been deprecated as they cannot guarantee safe output. Their
  586. existence is likely to lead to their use in security-sensitive contexts where
  587. they are not actually safe.
  588. The unused and undocumented ``django.utils.html.strip_entities()`` function has
  589. also been deprecated.
  590. ``is_admin_site`` argument to ``django.contrib.auth.views.password_reset()``
  591. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  592. It's a legacy option that should no longer be necessary.
  593. ``SubfieldBase``
  594. ~~~~~~~~~~~~~~~~
  595. ``django.db.models.fields.subclassing.SubfieldBase`` has been deprecated and
  596. will be removed in Django 2.0. Historically, it was used to handle fields where
  597. type conversion was needed when loading from the database, but it was not used
  598. in ``.values()`` calls or in aggregates. It has been replaced with
  599. :meth:`~django.db.models.Field.from_db_value`. Note that the new approach does
  600. not call the :meth:`~django.db.models.Field.to_python` method on assignment
  601. as was the case with ``SubfieldBase``.