1.11.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. =============================================
  2. Django 1.11 release notes - UNDER DEVELOPMENT
  3. =============================================
  4. Welcome to Django 1.11!
  5. These release notes cover the :ref:`new features <whats-new-1.11>`, as well as
  6. some :ref:`backwards incompatible changes <backwards-incompatible-1.11>` you'll
  7. want to be aware of when upgrading from Django 1.10 or older versions. We've
  8. :ref:`begun the deprecation process for some features
  9. <deprecated-features-1.11>`.
  10. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  11. project.
  12. Django 1.11 is designated as a :term:`long-term support release`. It will
  13. receive security updates for at least three years after its release. Support
  14. for the previous LTS, Django 1.8, will end in April 2018.
  15. Python compatibility
  16. ====================
  17. Like Django 1.10, Django 1.11 requires Python 2.7, 3.4, or 3.5. We **highly
  18. recommend** and only officially support the latest release of each series.
  19. The Django 1.11.x series is the last to support Python 2. The next major
  20. release, Django 2.0, will only support Python 3.5+.
  21. Deprecating warnings are no longer loud by default
  22. ==================================================
  23. Unlike older versions of Django, Django's own deprecation warnings are no
  24. longer displayed by default. This is consistent with Python's default behavior.
  25. This change allows third-party apps to support both Django 1.11 LTS and Django
  26. 1.8 LTS without having to add code to avoid deprecation warnings.
  27. Following the release of Django 2.0, we suggest that third-party app authors
  28. drop support for all versions of Django prior to 1.11. At that time, you should
  29. be able run your package's tests using ``python -Wd`` so that deprecation
  30. warnings do appear. After making the deprecation warning fixes, your app should
  31. be compatible with Django 2.0.
  32. .. _whats-new-1.11:
  33. What's new in Django 1.11
  34. =========================
  35. Class-based model indexes
  36. -------------------------
  37. The new :mod:`django.db.models.indexes` module contains classes which ease
  38. creating database indexes. Indexes are added to models using the
  39. :attr:`Meta.indexes <django.db.models.Options.indexes>` option.
  40. The :class:`~django.db.models.Index` class creates a b-tree index, as if you
  41. used :attr:`~django.db.models.Field.db_index` on the model field or
  42. :attr:`~django.db.models.Options.index_together` on the model ``Meta`` class.
  43. It can be subclassed to support different index types, such as
  44. :class:`~django.contrib.postgres.indexes.GinIndex`. It also allows defining the
  45. order (ASC/DESC) for the columns of the index.
  46. Minor features
  47. --------------
  48. :mod:`django.contrib.admin`
  49. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  50. * :attr:`.ModelAdmin.date_hierarchy` can now reference fields across relations.
  51. :mod:`django.contrib.admindocs`
  52. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  53. * ...
  54. :mod:`django.contrib.auth`
  55. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  56. * The default iteration count for the PBKDF2 password hasher is increased by
  57. 20%.
  58. * The :class:`~django.contrib.auth.views.LoginView` and
  59. :class:`~django.contrib.auth.views.LogoutView` class-based views supersede the
  60. deprecated ``login()`` and ``logout()`` function-based views.
  61. * The :class:`~django.contrib.auth.views.PasswordChangeView`,
  62. :class:`~django.contrib.auth.views.PasswordChangeDoneView`,
  63. :class:`~django.contrib.auth.views.PasswordResetView`,
  64. :class:`~django.contrib.auth.views.PasswordResetDoneView`,
  65. :class:`~django.contrib.auth.views.PasswordResetConfirmView`, and
  66. :class:`~django.contrib.auth.views.PasswordResetCompleteView` class-based
  67. views supersede the deprecated ``password_change()``,
  68. ``password_change_done()``, ``password_reset()``, ``password_reset_done()``,
  69. ``password_reset_confirm()``, and ``password_reset_complete()`` function-based
  70. views.
  71. * The new ``post_reset_login`` attribute for
  72. :class:`~django.contrib.auth.views.PasswordResetConfirmView` allows
  73. automatically logging in a user after a successful password reset.
  74. * :func:`~django.contrib.auth.update_session_auth_hash` now rotates the session
  75. key to allow a password change to invalidate stolen session cookies.
  76. :mod:`django.contrib.contenttypes`
  77. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  78. * When stale content types are detected after the ``migrate`` command, there's
  79. now a list of related objects such as ``auth.Permission``\s that will also be
  80. deleted. Previously, only the content types were listed.
  81. :mod:`django.contrib.gis`
  82. ~~~~~~~~~~~~~~~~~~~~~~~~~
  83. * The new :meth:`.GEOSGeometry.from_gml` and :meth:`.OGRGeometry.from_gml`
  84. methods allow creating geometries from GML.
  85. * Added support for the :lookup:`dwithin` lookup on SpatiaLite.
  86. :mod:`django.contrib.messages`
  87. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  88. * ...
  89. :mod:`django.contrib.postgres`
  90. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  91. * The new ``distinct`` argument for
  92. :class:`~django.contrib.postgres.aggregates.StringAgg` determines if
  93. concatenated values will be distinct.
  94. * The new :class:`~django.contrib.postgres.indexes.GinIndex` class allows
  95. creating gin indexes in the database.
  96. * :class:`~django.contrib.postgres.fields.JSONField` accepts a new ``encoder``
  97. parameter to specify a custom class to encode data types not supported by the
  98. standard encoder.
  99. :mod:`django.contrib.redirects`
  100. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  101. * ...
  102. :mod:`django.contrib.sessions`
  103. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  104. * ...
  105. :mod:`django.contrib.sitemaps`
  106. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  107. * ...
  108. :mod:`django.contrib.sites`
  109. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  110. * ...
  111. :mod:`django.contrib.staticfiles`
  112. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  113. * ...
  114. :mod:`django.contrib.syndication`
  115. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  116. * ...
  117. Cache
  118. ~~~~~
  119. * Memcached backends now pass the contents of :setting:`OPTIONS <CACHES-OPTIONS>`
  120. as keyword arguments to the client constructors, allowing for more advanced
  121. control of client behavior. See the :ref:`cache arguments <cache_arguments>`
  122. documentation for examples.
  123. * Memcached backends now allow defining multiple servers as a comma-delimited
  124. string in :setting:`LOCATION <CACHES-LOCATION>`, for convenience with
  125. third-party services that use such strings in environment variables.
  126. CSRF
  127. ~~~~
  128. * ...
  129. Database backends
  130. ~~~~~~~~~~~~~~~~~
  131. * Added the ``skip_locked`` argument to :meth:`.QuerySet.select_for_update()`
  132. on PostgreSQL 9.5+ and Oracle to execute queries with
  133. ``FOR UPDATE SKIP LOCKED``.
  134. * Added the :setting:`TEST['TEMPLATE'] <TEST_TEMPLATE>` setting to let
  135. PostgreSQL users specify a template for creating the test database.
  136. Email
  137. ~~~~~
  138. * Added the :setting:`EMAIL_USE_LOCALTIME` setting to allow sending SMTP date
  139. headers in the local time zone rather than in UTC.
  140. * ``EmailMessage.attach()`` and ``attach_file()`` now fall back to MIME type
  141. ``application/octet-stream`` when binary content that can't be decoded as
  142. UTF-8 is specified for a ``text/*`` attachment.
  143. File Storage
  144. ~~~~~~~~~~~~
  145. * To make it wrappable by :class:`io.TextIOWrapper`,
  146. :class:`~django.core.files.File` now has the ``readable()``, ``writable()``,
  147. and ``seekable()`` methods.
  148. File Uploads
  149. ~~~~~~~~~~~~
  150. * ...
  151. Forms
  152. ~~~~~
  153. * The new :attr:`CharField.empty_value <django.forms.CharField.empty_value>`
  154. attribute allows specifying the Python value to use to represent "empty".
  155. * The new :meth:`Form.get_initial_for_field()
  156. <django.forms.Form.get_initial_for_field>` method returns initial data for a
  157. form field.
  158. Generic Views
  159. ~~~~~~~~~~~~~
  160. * ...
  161. Internationalization
  162. ~~~~~~~~~~~~~~~~~~~~
  163. * Number formatting and the :setting:`NUMBER_GROUPING` setting support
  164. non-uniform digit grouping.
  165. Management Commands
  166. ~~~~~~~~~~~~~~~~~~~
  167. * The new :option:`loaddata --exclude` option allows excluding models and apps
  168. while loading data from fixtures.
  169. Migrations
  170. ~~~~~~~~~~
  171. * ...
  172. Models
  173. ~~~~~~
  174. * Added support for callable values in the ``defaults`` argument of
  175. :meth:`QuerySet.update_or_create()
  176. <django.db.models.query.QuerySet.update_or_create>` and
  177. :meth:`~django.db.models.query.QuerySet.get_or_create`.
  178. * :class:`~django.db.models.ImageField` now has a default
  179. :data:`~django.core.validators.validate_image_file_extension` validator.
  180. * Added support for time truncation to
  181. :class:`~django.db.models.functions.datetime.Trunc` functions.
  182. * Added the :class:`~django.db.models.functions.datetime.TruncTime` function
  183. to truncate :class:`~django.db.models.DateTimeField` to its time component
  184. and exposed it through the :lookup:`time` lookup.
  185. * Added support for expressions in :meth:`.QuerySet.values` and
  186. :meth:`~.QuerySet.values_list`.
  187. * Added support for query expressions on lookups that take multiple arguments,
  188. such as ``range``.
  189. Requests and Responses
  190. ~~~~~~~~~~~~~~~~~~~~~~
  191. * Added :meth:`QueryDict.fromkeys() <django.http.QueryDict.fromkeys>`.
  192. * :class:`~django.middleware.common.CommonMiddleware` now sets the
  193. ``Content-Length`` response header for non-streaming responses.
  194. * Added the :setting:`SECURE_HSTS_PRELOAD` setting to allow appending the
  195. ``preload`` directive to the ``Strict-Transport-Security`` header.
  196. Serialization
  197. ~~~~~~~~~~~~~
  198. * The new ``django.core.serializers.base.Serializer.stream_class`` attribute
  199. allows subclasses to customize the default stream.
  200. * The encoder used by the :ref:`JSON serializer <serialization-formats-json>`
  201. can now be customized by passing a ``cls`` keyword argument to the
  202. ``serializers.serialize()`` function.
  203. * :class:`~django.core.serializers.json.DjangoJSONEncoder` now serializes
  204. :class:`~datetime.timedelta` objects (used by
  205. :class:`~django.db.models.DurationField`).
  206. Signals
  207. ~~~~~~~
  208. * ...
  209. Templates
  210. ~~~~~~~~~
  211. * :meth:`~django.utils.safestring.mark_safe` can now be used as a decorator.
  212. * The :class:`~django.template.backends.jinja2.Jinja2` template backend now
  213. supports context processors by setting the ``'context_processors'`` option in
  214. :setting:`OPTIONS <TEMPLATES-OPTIONS>`.
  215. * The :ttag:`regroup` tag now returns ``namedtuple``\s instead of dictionaries
  216. so you can unpack the group object directly in a loop, e.g.
  217. ``{% for grouper, list in regrouped %}``.
  218. Tests
  219. ~~~~~
  220. * Added :meth:`.DiscoverRunner.get_test_runner_kwargs` to allow customizing the
  221. keyword arguments passed to the test runner.
  222. * Added the :option:`test --debug-mode` option to help troubleshoot test
  223. failures by setting the :setting:`DEBUG` setting to ``True``.
  224. * The new :func:`django.test.utils.setup_databases` (moved from
  225. ``django.test.runner``) and :func:`~django.test.utils.teardown_databases`
  226. functions make it easier to build custom test runners.
  227. * Added support for :meth:`python:unittest.TestCase.subTest`’s when using the
  228. :option:`test --parallel` option.
  229. URLs
  230. ~~~~
  231. * ...
  232. Validators
  233. ~~~~~~~~~~
  234. * Added :class:`~django.core.validators.FileExtensionValidator` to validate
  235. file extensions and
  236. :data:`~django.core.validators.validate_image_file_extension` to validate
  237. image files.
  238. .. _backwards-incompatible-1.11:
  239. Backwards incompatible changes in 1.11
  240. ======================================
  241. :mod:`django.contrib.gis`
  242. -------------------------
  243. * To simplify the codebase and because it's easier to install than when
  244. ``contrib.gis`` was first released, :ref:`gdalbuild` is now a required
  245. dependency for GeoDjango. In older versions, it's only required for SQLite.
  246. Database backend API
  247. --------------------
  248. * The ``DatabaseOperations.time_trunc_sql()`` method is added to support
  249. ``TimeField`` truncation. It accepts a ``lookup_type`` and ``field_name``
  250. arguments and returns the appropriate SQL to truncate the given time field
  251. ``field_name`` to a time object with only the given specificity. The
  252. ``lookup_type`` argument can be either ``'hour'``, ``'minute'``, or
  253. ``'second'``.
  254. * The ``DatabaseOperations.datetime_cast_time_sql()`` method is added to
  255. support the :lookup:`time` lookup. It accepts a ``field_name`` and ``tzname``
  256. arguments and returns the SQL necessary to cast a datetime value to time value.
  257. * To enable ``FOR UPDATE SKIP LOCKED`` support, set
  258. ``DatabaseFeatures.has_select_for_update_skip_locked = True``.
  259. * The new ``DatabaseFeatures.supports_index_column_ordering`` attribute
  260. specifies if a database allows defining ordering for columns in indexes. The
  261. default value is ``True`` and the ``DatabaseIntrospection.get_constraints()``
  262. method should include an ``'orders'`` key in each of the returned
  263. dictionaries with a list of ``'ASC'`` and/or ``'DESC'`` values corresponding
  264. to the the ordering of each column in the index.
  265. Dropped support for PostgreSQL 9.2 and PostGIS 2.0
  266. --------------------------------------------------
  267. Upstream support for PostgreSQL 9.2 ends in September 2017. As a consequence,
  268. Django 1.11 sets PostgreSQL 9.3 as the minimum version it officially supports.
  269. Support for PostGIS 2.0 is also removed as PostgreSQL 9.2 is the last version
  270. to support it.
  271. ``LiveServerTestCase`` binds to port zero
  272. -----------------------------------------
  273. Rather than taking a port range and iterating to find a free port,
  274. ``LiveServerTestCase`` binds to port zero and relies on the operating system
  275. to assign a free port. The ``DJANGO_LIVE_TEST_SERVER_ADDRESS`` environment
  276. variable is no longer used, and as it's also no longer used, the
  277. ``manage.py test --liveserver`` option is removed.
  278. Protection against insecure redirects in :mod:`django.contrib.auth` and ``i18n`` views
  279. --------------------------------------------------------------------------------------
  280. ``LoginView``, ``LogoutView`` (and the deprecated function-based equivalents),
  281. and :func:`~django.views.i18n.set_language` protect users from being redirected
  282. to non-HTTPS ``next`` URLs when the app is running over HTTPS.
  283. Miscellaneous
  284. -------------
  285. * If no items in the feed have a ``pubdate`` or ``updateddate`` attribute,
  286. :meth:`SyndicationFeed.latest_post_date()
  287. <django.utils.feedgenerator.SyndicationFeed.latest_post_date>` now returns
  288. the current UTC date/time, instead of a datetime without any timezone
  289. information.
  290. * Support for SpatiaLite < 4.0 is dropped.
  291. * CSRF failures are logged to the ``django.security.csrf`` logger instead of
  292. ``django.request``.
  293. * :setting:`ALLOWED_HOSTS` validation is no longer disabled when running tests.
  294. If your application includes tests with custom host names, you must include
  295. those host names in :setting:`ALLOWED_HOSTS`. See
  296. :ref:`topics-testing-advanced-multiple-hosts`.
  297. * Using a foreign key's id (e.g. ``'field_id'``) in ``ModelAdmin.list_display``
  298. displays the related object's ID. Remove the ``_id`` suffix if you want the
  299. old behavior of the string representation of the object.
  300. * In model forms, :class:`~django.db.models.CharField` with ``null=True`` now
  301. saves ``NULL`` for blank values instead of empty strings.
  302. * On Oracle, :meth:`Model.validate_unique()
  303. <django.db.models.Model.validate_unique>` no longer checks empty strings for
  304. uniqueness as the database interprets the value as ``NULL``.
  305. * If you subclass :class:`.AbstractUser` and override ``clean()``, be sure it
  306. calls ``super()``. :meth:`.BaseUserManager.normalize_email` is called in a
  307. new :meth:`.AbstractUser.clean` method so that normalization is applied in
  308. cases like model form validation.
  309. * ``EmailField`` and ``URLField`` no longer accept the ``strip`` keyword
  310. argument. Remove it because it doesn't have an effect in older versions of
  311. Django as these fields alway strip whitespace.
  312. * The ``checked`` attribute rendered by form widgets now uses HTML5 boolean
  313. syntax rather than XHTML's ``checked='checked'``.
  314. * :meth:`RelatedManager.add()
  315. <django.db.models.fields.related.RelatedManager.add>`,
  316. :meth:`~django.db.models.fields.related.RelatedManager.remove`,
  317. :meth:`~django.db.models.fields.related.RelatedManager.clear`, and
  318. :meth:`~django.db.models.fields.related.RelatedManager.set` now
  319. clear the ``prefetch_related()`` cache.
  320. * To prevent possible loss of saved settings,
  321. :func:`~django.test.utils.setup_test_environment` now raises an exception if
  322. called a second time before calling
  323. :func:`~django.test.utils.teardown_test_environment`.
  324. * The :djadmin:`makemessages` command now requires configured settings, like
  325. most other commands.
  326. * The undocumented ``DateTimeAwareJSONEncoder`` alias for
  327. :class:`~django.core.serializers.json.DjangoJSONEncoder` (renamed in Django
  328. 1.0) is removed.
  329. .. _deprecated-features-1.11:
  330. Features deprecated in 1.11
  331. ===========================
  332. Miscellaneous
  333. -------------
  334. * ``contrib.auth``’s ``login()`` and ``logout()`` function-based views are
  335. deprecated in favor of new class-based views
  336. :class:`~django.contrib.auth.views.LoginView` and
  337. :class:`~django.contrib.auth.views.LogoutView`.
  338. * The unused ``extra_context`` parameter of
  339. ``contrib.auth.views.logout_then_login()`` is deprecated.
  340. * ``contrib.auth``’s ``password_change()``, ``password_change_done()``,
  341. ``password_reset()``, ``password_reset_done()``, ``password_reset_confirm()``,
  342. and ``password_reset_complete()`` function-based views are deprecated in favor
  343. of new class-based views
  344. :class:`~django.contrib.auth.views.PasswordChangeView`,
  345. :class:`~django.contrib.auth.views.PasswordChangeDoneView`,
  346. :class:`~django.contrib.auth.views.PasswordResetView`,
  347. :class:`~django.contrib.auth.views.PasswordResetDoneView`,
  348. :class:`~django.contrib.auth.views.PasswordResetConfirmView`, and
  349. :class:`~django.contrib.auth.views.PasswordResetCompleteView`.
  350. * ``django.test.runner.setup_databases()`` is moved to
  351. :func:`django.test.utils.setup_databases`. The old location is deprecated.
  352. * ``django.utils.translation.string_concat()`` is deprecated in
  353. favor of :func:`django.utils.text.format_lazy`. ``string_concat(*strings)``
  354. can be replaced by ``format_lazy('{}' * len(strings), *strings)``.
  355. * For the ``PyLibMCCache`` cache backend, passing ``pylibmc`` behavior settings
  356. as top-level attributes of ``OPTIONS`` is deprecated. Set them under a
  357. ``behaviors`` key within ``OPTIONS`` instead.