1.10.txt 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145
  1. =============================================
  2. Django 1.10 release notes - UNDER DEVELOPMENT
  3. =============================================
  4. Welcome to Django 1.10!
  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.9 or older versions. We've :ref:`dropped some features<removed-features-1.10>`
  8. that have reached the end of their deprecation cycle, and we've `begun the
  9. deprecation process for some features`_.
  10. .. _`new features`: `What's new in Django 1.10`_
  11. .. _`backwards incompatible changes`: `Backwards incompatible changes in 1.10`_
  12. .. _`dropped some features`: `Features removed in 1.10`_
  13. .. _`begun the deprecation process for some features`: `Features deprecated in 1.10`_
  14. Python compatibility
  15. ====================
  16. Like Django 1.9, Django 1.10 requires Python 2.7, 3.4, or 3.5. We **highly
  17. recommend** and only officially support the latest release of each series.
  18. What's new in Django 1.10
  19. =========================
  20. ...
  21. Minor features
  22. --------------
  23. :mod:`django.contrib.admin`
  24. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  25. * For sites running on a subpath, the default :attr:`URL for the "View site"
  26. link <django.contrib.admin.AdminSite.site_url>` at the top of each admin page
  27. will now point to ``request.META['SCRIPT_NAME']`` if set, instead of ``/``.
  28. * The success message that appears after adding or editing an object now
  29. contains a link to the object's change form.
  30. * All inline JavaScript is removed so you can enable the
  31. ``Content-Security-Policy`` HTTP header if you wish.
  32. * The new :attr:`InlineModelAdmin.classes
  33. <django.contrib.admin.InlineModelAdmin.classes>` attribute allows specifying
  34. classes on inline fieldsets. Inlines with a ``collapse`` class will be
  35. initially collapsed and their header will have a small "show" link.
  36. * If a user doesn't have the add permission, the ``object-tools`` block on a
  37. model's changelist will now be rendered (without the add button, of course).
  38. This makes it easier to add custom tools in this case.
  39. * The :class:`~django.contrib.admin.models.LogEntry` model now stores change
  40. messages in a JSON structure so that the message can be dynamically translated
  41. using the current active language. A new ``LogEntry.get_change_message()``
  42. method is now the preferred way of retrieving the change message.
  43. * Selected objects for fields in ``ModelAdmin.raw_id_fields`` now have a link
  44. to object's change form.
  45. * Added "No date" and "Has date" choices for ``DateFieldListFilter`` if the
  46. field is nullable.
  47. :mod:`django.contrib.admindocs`
  48. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  49. * ...
  50. :mod:`django.contrib.auth`
  51. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  52. * Added support for the :ref:`Argon2 password hash <argon2_usage>`. It's
  53. recommended over PBKDF2, however, it's not the default as it requires a
  54. third-party library.
  55. * The default iteration count for the PBKDF2 password hasher has been increased
  56. by 25%. This backwards compatible change will not affect users who have
  57. subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to change the
  58. default value.
  59. * The :func:`~django.contrib.auth.views.logout` view sends "no-cache" headers
  60. to prevent an issue where Safari caches redirects and prevents a user from
  61. being able to log out.
  62. * Added the optional ``backend`` argument to :func:`~django.contrib.auth.login`
  63. to allow using it without credentials.
  64. * The new :setting:`LOGOUT_REDIRECT_URL` setting controls the redirect of the
  65. :func:`~django.contrib.auth.views.logout` view, if the view doesn't get a
  66. ``next_page`` argument.
  67. * The new ``redirect_authenticated_user`` parameter for the
  68. :func:`~django.contrib.auth.views.login` view allows redirecting
  69. authenticated users visiting the login page.
  70. :mod:`django.contrib.contenttypes`
  71. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  72. * ...
  73. :mod:`django.contrib.gis`
  74. ~~~~~~~~~~~~~~~~~~~~~~~~~
  75. * :ref:`Distance lookups <distance-lookups>` now accept expressions as the
  76. distance value parameter.
  77. * The new :attr:`GEOSGeometry.unary_union
  78. <django.contrib.gis.geos.GEOSGeometry.unary_union>` property computes the
  79. union of all the elements of this geometry.
  80. * Added the :meth:`GEOSGeometry.covers()
  81. <django.contrib.gis.geos.GEOSGeometry.covers>` binary predicate.
  82. * Added the :meth:`GDALBand.statistics()
  83. <django.contrib.gis.gdal.GDALBand.statistics>` method and
  84. :attr:`~django.contrib.gis.gdal.GDALBand.mean`
  85. and :attr:`~django.contrib.gis.gdal.GDALBand.std` attributes.
  86. * Added support for the :class:`~django.contrib.gis.db.models.MakeLine`
  87. aggregate and :class:`~django.contrib.gis.db.models.functions.GeoHash`
  88. function on SpatiaLite.
  89. * Added support for the
  90. :class:`~django.contrib.gis.db.models.functions.Difference`,
  91. :class:`~django.contrib.gis.db.models.functions.Intersection`, and
  92. :class:`~django.contrib.gis.db.models.functions.SymDifference`
  93. functions on MySQL.
  94. * Added support for instantiating empty GEOS geometries.
  95. * The new :attr:`~django.contrib.gis.geos.WKTWriter.trim` and
  96. :attr:`~django.contrib.gis.geos.WKTWriter.precision` properties
  97. of :class:`~django.contrib.gis.geos.WKTWriter` allow controlling
  98. output of the fractional part of the coordinates in WKT.
  99. * Added the :attr:`LineString.closed
  100. <django.contrib.gis.geos.LineString.closed>` and
  101. :attr:`MultiLineString.closed
  102. <django.contrib.gis.geos.MultiLineString.closed>` properties.
  103. * The :doc:`GeoJSON serializer </ref/contrib/gis/serializers>` now outputs the
  104. primary key of objects in the ``properties`` dictionary if specific fields
  105. aren't specified.
  106. * The ability to replicate input data on the :meth:`GDALBand.data()
  107. <django.contrib.gis.gdal.GDALBand.data>` method was added. Band data can
  108. now be updated with repeated values efficiently.
  109. * Added database functions
  110. :class:`~django.contrib.gis.db.models.functions.IsValid` and
  111. :class:`~django.contrib.gis.db.models.functions.MakeValid`, as well as the
  112. :lookup:`isvalid` lookup, all for PostGIS. This allows filtering and
  113. repairing invalid geometries on the database side.
  114. :mod:`django.contrib.messages`
  115. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  116. * ...
  117. :mod:`django.contrib.postgres`
  118. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  119. * For convenience, :class:`~django.contrib.postgres.fields.HStoreField` now
  120. casts its keys and values to strings.
  121. :mod:`django.contrib.redirects`
  122. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  123. * ...
  124. :mod:`django.contrib.sessions`
  125. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  126. * The :djadmin:`clearsessions` management command now removes file-based
  127. sessions.
  128. :mod:`django.contrib.sitemaps`
  129. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  130. * ...
  131. :mod:`django.contrib.sites`
  132. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  133. * The :class:`~django.contrib.sites.models.Site` model now supports
  134. :ref:`natural keys <topics-serialization-natural-keys>`.
  135. :mod:`django.contrib.staticfiles`
  136. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  137. * The :ttag:`static` template tag now uses ``django.contrib.staticfiles``
  138. if it's in ``INSTALLED_APPS``. This is especially useful for third-party apps
  139. which can now always use ``{% load static %}`` (instead of
  140. ``{% load staticfiles %}`` or ``{% load static from staticfiles %}``) and
  141. not worry about whether or not the ``staticfiles`` app is installed.
  142. :mod:`django.contrib.syndication`
  143. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  144. * ...
  145. Cache
  146. ~~~~~
  147. * The file-based cache backend now uses the highest pickling protocol.
  148. CSRF
  149. ~~~~
  150. * The default :setting:`CSRF_FAILURE_VIEW`, ``views.csrf.csrf_failure()`` now
  151. accepts an optional ``template_name`` parameter, defaulting to
  152. ``'403_csrf.html'``, to control the template used to render the page.
  153. Database backends
  154. ~~~~~~~~~~~~~~~~~
  155. * Temporal data subtraction was unified on all backends.
  156. * If the database supports it, backends can set
  157. ``DatabaseFeatures.can_return_ids_from_bulk_insert=True`` and implement
  158. ``DatabaseOperations.fetch_returned_insert_ids()`` to set primary keys
  159. on objects created using ``QuerySet.bulk_create()``.
  160. * Added keyword arguments to the ``as_sql()`` methods of various expressions
  161. (``Func``, ``When``, ``Case``, and ``OrderBy``) to allow database backends to
  162. customize them without mutating ``self``, which isn't safe when using
  163. different database backends. See the ``arg_joiner`` and ``**extra_context``
  164. parameters of :meth:`Func.as_sql() <django.db.models.Func.as_sql>` for an
  165. example.
  166. Email
  167. ~~~~~
  168. * ...
  169. File Storage
  170. ~~~~~~~~~~~~
  171. * Storage backends now present a timezone-aware API with new methods
  172. :meth:`~django.core.files.storage.Storage.get_accessed_time`,
  173. :meth:`~django.core.files.storage.Storage.get_created_time`, and
  174. :meth:`~django.core.files.storage.Storage.get_modified_time`. They return a
  175. timezone-aware ``datetime`` if :setting:`USE_TZ` is ``True`` and a naive
  176. ``datetime`` in the local timezone otherwise.
  177. File Uploads
  178. ~~~~~~~~~~~~
  179. * ...
  180. Forms
  181. ~~~~~
  182. * Form and widget ``Media`` is now served using
  183. :mod:`django.contrib.staticfiles` if installed.
  184. * The ``<input>`` tag rendered by :class:`~django.forms.CharField` now includes
  185. a ``minlength`` attribute if the field has a ``min_length``.
  186. * Required form fields now have the ``required`` HTML attribute. Set the new
  187. :attr:`Form.use_required_attribute <django.forms.Form.use_required_attribute>`
  188. attribute to ``False`` to disable it. The ``required`` attribute isn't
  189. included on forms of formsets because the browser validation may not be
  190. correct when adding and deleting formsets.
  191. Generic Views
  192. ~~~~~~~~~~~~~
  193. * The :class:`~django.views.generic.base.View` class can now be imported from
  194. ``django.views``.
  195. Internationalization
  196. ~~~~~~~~~~~~~~~~~~~~
  197. * The :func:`~django.conf.urls.i18n.i18n_patterns` helper function can now be
  198. used in a root URLConf specified using :attr:`request.urlconf
  199. <django.http.HttpRequest.urlconf>`.
  200. * By setting the new ``prefix_default_language`` parameter for
  201. :func:`~django.conf.urls.i18n.i18n_patterns` to ``False``, you can allow
  202. accessing the default language without a URL prefix.
  203. * :func:`~django.views.i18n.set_language` now returns a 204 status code (No
  204. Content) for AJAX requests when there is no ``next`` parameter in ``POST`` or
  205. ``GET``.
  206. * The :class:`~django.views.i18n.JavaScriptCatalog` and
  207. :class:`~django.views.i18n.JSONCatalog` class-based views supersede the
  208. deprecated ``javascript_catalog()`` and ``json_catalog()`` function-based
  209. views. The new views are almost equivalent to the old ones except that by
  210. default the new views collect all JavaScript strings in the ``djangojs``
  211. translation domain from all installed apps rather than only the JavaScript
  212. strings from :setting:`LOCALE_PATHS`.
  213. Management Commands
  214. ~~~~~~~~~~~~~~~~~~~
  215. * :func:`~django.core.management.call_command` now returns the value returned
  216. from the ``command.handle()`` method.
  217. * The new :option:`check --fail-level` option allows specifying the message
  218. level that will cause the command to exit with a non-zero status.
  219. * The new :option:`makemigrations --check` option makes the command exit
  220. with a non-zero status when model changes without migrations are detected.
  221. * :djadmin:`makemigrations` now displays the path to the migration files that
  222. it generates.
  223. * The :option:`shell --interface` option now accepts ``python`` to force use of
  224. the "plain" Python interpreter.
  225. * The new :option:`shell --command` option lets you run a command as Django and
  226. exit, instead of opening the interactive shell.
  227. * Added a warning to :djadmin:`dumpdata` if a proxy model is specified (which
  228. results in no output) without its concrete parent.
  229. * The new :attr:`BaseCommand.requires_migrations_checks
  230. <django.core.management.BaseCommand.requires_migrations_checks>` attribute
  231. may be set to ``True`` if you want your command to print a warning, like
  232. :djadmin:`runserver` does, if the set of migrations on disk don't match the
  233. migrations in the database.
  234. * To assist with testing, :func:`~django.core.management.call_command` now
  235. accepts a command object as the first argument.
  236. * The :djadmin:`shell` command supports tab completion on systems using
  237. ``libedit``, e.g. Mac OSX.
  238. * The :djadmin:`inspectdb` command lets you choose what tables should be
  239. inspected by specifying their names as arguments.
  240. Migrations
  241. ~~~~~~~~~~
  242. * Added support for serialization of ``enum.Enum`` objects.
  243. * Added the ``elidable`` argument to the
  244. :class:`~django.db.migrations.operations.RunSQL` and
  245. :class:`~django.db.migrations.operations.RunPython` operations to allow them
  246. to be removed when squashing migrations.
  247. * Added support for :ref:`non-atomic migrations <non-atomic-migrations>` by
  248. setting the ``atomic`` attribute on a ``Migration``.
  249. * The ``migrate`` and ``makemigrations`` commands now check for a consistent
  250. migration history. If they find some unapplied dependencies of an applied
  251. migration, ``InconsistentMigrationHistory`` is raised.
  252. Models
  253. ~~~~~~
  254. * Reverse foreign keys from proxy models are now propagated to their
  255. concrete class. The reverse relation attached by a
  256. :class:`~django.db.models.ForeignKey` pointing to a proxy model is now
  257. accessible as a descriptor on the proxied model class and may be referenced in
  258. queryset filtering.
  259. * The new :meth:`Field.rel_db_type() <django.db.models.Field.rel_db_type>`
  260. method returns the database column data type for fields such as ``ForeignKey``
  261. and ``OneToOneField`` that point to another field.
  262. * The :attr:`~django.db.models.Func.arity` class attribute is added to
  263. :class:`~django.db.models.Func`. This attribute can be used to set the number
  264. of arguments the function accepts.
  265. * Added :class:`~django.db.models.BigAutoField` which acts much like an
  266. :class:`~django.db.models.AutoField` except that it is guaranteed
  267. to fit numbers from ``1`` to ``9223372036854775807``.
  268. * :meth:`QuerySet.in_bulk() <django.db.models.query.QuerySet.in_bulk>`
  269. may be called without any arguments to return all objects in the queryset.
  270. * :attr:`~django.db.models.ForeignKey.related_query_name` now supports
  271. app label and class interpolation using the ``'%(app_label)s'`` and
  272. ``'%(class)s'`` strings.
  273. * The :func:`~django.db.models.prefetch_related_objects` function is now a
  274. public API.
  275. * :meth:`QuerySet.bulk_create() <django.db.models.query.QuerySet.bulk_create>`
  276. sets the primary key on objects when using PostgreSQL.
  277. * Added the :class:`~django.db.models.functions.Cast` database function.
  278. * A proxy model may now inherit multiple proxy models that share a common
  279. non-abstract parent class.
  280. Requests and Responses
  281. ~~~~~~~~~~~~~~~~~~~~~~
  282. * Added ``request.user`` to the debug view.
  283. * Added :class:`~django.http.HttpResponse` methods
  284. :meth:`~django.http.HttpResponse.readable()` and
  285. :meth:`~django.http.HttpResponse.seekable()` to make an instance a
  286. stream-like object and allow wrapping it with :py:class:`io.TextIOWrapper`.
  287. * Added the :attr:`HttpResponse.content_type
  288. <django.http.HttpRequest.content_type>` and
  289. :attr:`~django.http.HttpRequest.content_params` attributes which are
  290. parsed from the ``CONTENT_TYPE`` header.
  291. * The parser for ``request.COOKIES`` is simplified to better match the behavior
  292. of browsers. ``request.COOKIES`` may now contain cookies that are invalid
  293. according to :rfc:`6265` but are possible to set via ``document.cookie``.
  294. Serialization
  295. ~~~~~~~~~~~~~
  296. * The ``django.core.serializers.json.DjangoJSONEncoder`` now knows how to
  297. serialize lazy strings, typically used for translatable content.
  298. Signals
  299. ~~~~~~~
  300. * ...
  301. Templates
  302. ~~~~~~~~~
  303. * Added the ``autoescape`` option to the
  304. :class:`~django.template.backends.django.DjangoTemplates` backend and the
  305. :class:`~django.template.Engine` class.
  306. * Added the ``is`` and ``is not`` comparison operators to the :ttag:`if` tag.
  307. * Allowed :tfilter:`dictsort` to order a list of lists by an element at a
  308. specified index.
  309. * The :func:`~django.template.context_processors.debug` context processor
  310. contains queries for all database aliases instead of only the default alias.
  311. Tests
  312. ~~~~~
  313. * To better catch bugs, :class:`~django.test.TestCase` now checks deferrable
  314. database constraints at the end of each test.
  315. * Tests and test cases can be :ref:`marked with tags <topics-tagging-tests>`
  316. and run selectively with the new :option:`test --tag` and :option:`test
  317. --exclude-tag` options.
  318. * Added the :setting:`DATABASES['TEST']['MIGRATE'] <TEST_MIGRATE>` option to
  319. allow disabling of migrations during test database creation.
  320. * You can now login and use sessions with the test client even if
  321. :mod:`django.contrib.sessions` is not in :setting:`INSTALLED_APPS`.
  322. URLs
  323. ~~~~
  324. * An addition in :func:`django.setup()` allows URL resolving that happens
  325. outside of the request/response cycle (e.g. in management commands and
  326. standalone scripts) to take :setting:`FORCE_SCRIPT_NAME` into account when it
  327. is set.
  328. Validators
  329. ~~~~~~~~~~
  330. * :class:`~django.core.validators.URLValidator` now limits the length of
  331. domain name labels to 63 characters and the total length of domain
  332. names to 253 characters per :rfc:`1034`.
  333. * :func:`~django.core.validators.int_list_validator` now accepts an optional
  334. ``allow_negative`` boolean parameter, defaulting to ``False``, to allow
  335. negative integers.
  336. Backwards incompatible changes in 1.10
  337. ======================================
  338. .. warning::
  339. In addition to the changes outlined in this section, be sure to review the
  340. :ref:`removed-features-1.10` for the features that have reached the end of
  341. their deprecation cycle and therefore been removed. If you haven't updated
  342. your code within the deprecation timeline for a given feature, its removal
  343. may appear as a backwards incompatible change.
  344. Database backend API
  345. --------------------
  346. * GIS's ``AreaField`` uses an unspecified underlying numeric type that could in
  347. practice be any numeric Python type. ``decimal.Decimal`` values retrieved
  348. from the database are now converted to ``float`` to make it easier to combine
  349. them with values used by the GIS libraries.
  350. * In order to enable temporal subtraction you must set the
  351. ``supports_temporal_subtraction`` database feature flag to ``True`` and
  352. implement the ``DatabaseOperations.subtract_temporals()`` method. This
  353. method should return the SQL and parameters required to compute the
  354. difference in microseconds between the ``lhs`` and ``rhs`` arguments in the
  355. datatype used to store :class:`~django.db.models.DurationField`.
  356. ``select_related()`` prohibits non-relational fields for nested relations
  357. -------------------------------------------------------------------------
  358. Django 1.8 added validation for non-relational fields in ``select_related()``::
  359. >>> Book.objects.select_related('title')
  360. Traceback (most recent call last):
  361. ...
  362. FieldError: Non-relational field given in select_related: 'title'
  363. But it didn't prohibit nested non-relation fields as it does now::
  364. >>> Book.objects.select_related('author__name')
  365. Traceback (most recent call last):
  366. ...
  367. FieldError: Non-relational field given in select_related: 'name'
  368. ``_meta.get_fields()`` returns consistent reverse fields for proxy models
  369. -------------------------------------------------------------------------
  370. Before Django 1.10, the :meth:`~django.db.models.options.Options.get_fields`
  371. method returned different reverse fields when called on a proxy model compared
  372. to its proxied concrete class. This inconsistency was fixed by returning the
  373. full set of fields pointing to a concrete class or one of its proxies in both
  374. cases.
  375. :attr:`AbstractUser.username <django.contrib.auth.models.User.username>` ``max_length`` increased to 150
  376. --------------------------------------------------------------------------------------------------------
  377. A migration for :attr:`django.contrib.auth.models.User.username` is included.
  378. If you have a custom user model inheriting from ``AbstractUser``, you'll need
  379. to generate and apply a database migration for your user model.
  380. We considered an increase to 254 characters to more easily allow the use of
  381. email addresses (which are limited to 254 characters) as usernames but rejected
  382. it due to a MySQL limitation. When using the ``utf8mb4`` encoding (recommended
  383. for proper Unicode support), MySQL can only create unique indexes with 191
  384. characters by default. Therefore, if you need a longer length, please use a
  385. custom user model.
  386. If you want to preserve the 30 character limit for usernames, use a custom form
  387. when creating a user or changing usernames::
  388. from django.contrib.auth.forms import UserCreationForm
  389. class MyUserCreationForm(UserCreationForm):
  390. username = forms.CharField(
  391. max_length=30,
  392. help_text='Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only.',
  393. )
  394. If you wish to keep this restriction in the admin, set ``UserAdmin.add_form``
  395. to use this form::
  396. from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
  397. from django.contrib.auth.models import User
  398. class UserAdmin(BaseUserAdmin):
  399. add_form = MyUserCreationForm
  400. admin.site.unregister(User)
  401. admin.site.register(User, UserAdmin)
  402. Dropped support for PostgreSQL 9.1
  403. ----------------------------------
  404. Upstream support for PostgreSQL 9.1 ends in September 2016. As a consequence,
  405. Django 1.10 sets PostgreSQL 9.2 as the minimum version it officially supports.
  406. ``runserver`` output goes through logging
  407. -----------------------------------------
  408. Request and response handling of the ``runserver`` command is sent to the
  409. :ref:`django-server-logger` logger instead of to ``sys.stderr``. If you
  410. disable Django's logging configuration or override it with your own, you'll
  411. need to add the appropriate logging configuration if you want to see that
  412. output::
  413. 'formatters': {
  414. 'django.server': {
  415. '()': 'django.utils.log.ServerFormatter',
  416. 'format': '[%(server_time)s] %(message)s',
  417. }
  418. },
  419. 'handlers': {
  420. 'django.server': {
  421. 'level': 'INFO',
  422. 'class': 'logging.StreamHandler',
  423. 'formatter': 'django.server',
  424. },
  425. },
  426. 'loggers': {
  427. 'django.server': {
  428. 'handlers': ['django.server'],
  429. 'level': 'INFO',
  430. 'propagate': False,
  431. }
  432. }
  433. ``auth.CustomUser`` and ``auth.ExtensionUser`` test models were removed
  434. -----------------------------------------------------------------------
  435. Since the introduction of migrations for the contrib apps in Django 1.8, the
  436. tables of these custom user test models were not created anymore making them
  437. unusable in a testing context.
  438. Apps registry is no longer auto-populated when unpickling models outside of Django
  439. ----------------------------------------------------------------------------------
  440. The apps registry is no longer auto-populated when unpickling models. This was
  441. added in Django 1.7.2 as an attempt to allow unpickling models outside of
  442. Django, such as in an RQ worker, without calling ``django.setup()``, but it
  443. creates the possibility of a deadlock. To adapt your code in the case of RQ,
  444. you can `provide your own worker script <http://python-rq.org/docs/workers/>`_
  445. that calls ``django.setup()``.
  446. Removed null assignment check for non-null foreign key fields
  447. -------------------------------------------------------------
  448. In older versions, assigning ``None`` to a non-nullable ``ForeignKey`` or
  449. ``OneToOneField`` raised ``ValueError('Cannot assign None: "model.field" does
  450. not allow null values.')``. For consistency with other model fields which don't
  451. have a similar check, this check is removed.
  452. Removed weak password hashers from the default ``PASSWORD_HASHERS`` setting
  453. ---------------------------------------------------------------------------
  454. Django 0.90 stored passwords as unsalted MD5. Django 0.91 added support for
  455. salted SHA1 with automatic upgrade of passwords when a user logs in. Django 1.4
  456. added PBKDF2 as the default password hasher.
  457. If you have an old Django project with MD5 or SHA1 (even salted) encoded
  458. passwords, be aware that these can be cracked fairly easily with today's
  459. hardware. To make Django users acknowledge continued use of weak hashers, the
  460. following hashers are removed from the default :setting:`PASSWORD_HASHERS`
  461. setting::
  462. 'django.contrib.auth.hashers.SHA1PasswordHasher'
  463. 'django.contrib.auth.hashers.MD5PasswordHasher'
  464. 'django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher'
  465. 'django.contrib.auth.hashers.UnsaltedMD5PasswordHasher'
  466. 'django.contrib.auth.hashers.CryptPasswordHasher'
  467. Consider using a :ref:`wrapped password hasher <wrapping-password-hashers>` to
  468. strengthen the hashes in your database. If that's not feasible, add the
  469. :setting:`PASSWORD_HASHERS` setting to your project and add back any hashers
  470. that you need.
  471. You can check if your database has any of the removed hashers like this::
  472. from django.contrib.auth import get_user_model
  473. User = get_user_model()
  474. # Unsalted MD5/SHA1:
  475. User.objects.filter(password__startswith='md5$$')
  476. User.objects.filter(password__startswith='sha1$$')
  477. # Salted MD5/SHA1:
  478. User.objects.filter(password__startswith='md5$').exclude(password__startswith='md5$$')
  479. User.objects.filter(password__startswith='sha1$').exclude(password__startswith='sha1$$')
  480. # Crypt hasher:
  481. User.objects.filter(password__startswith='crypt$$')
  482. from django.db.models import CharField
  483. from django.db.models.functions import Length
  484. CharField.register_lookup(Length)
  485. # Unsalted MD5 passwords might not have an 'md5$$' prefix:
  486. User.objects.filter(password__length=32)
  487. :mod:`django.contrib.gis`
  488. -------------------------
  489. * Support for SpatiaLite < 3.0 and GEOS < 3.3 is dropped.
  490. * The ``add_postgis_srs()`` backwards compatibility alias for
  491. ``django.contrib.gis.utils.add_srs_entry()`` is removed.
  492. * On Oracle/GIS, the :class:`~django.contrib.gis.db.models.functions.Area`
  493. aggregate function now returns a ``float`` instead of ``decimal.Decimal``.
  494. (It's still wrapped in a measure of square meters.)
  495. * The default :class:`~django.contrib.gis.geos.GEOSGeometry` representation (WKT
  496. output) is trimmed by default. That is, instead of
  497. ``POINT (23.0000000000000000 5.5000000000000000)``, you'll get
  498. ``POINT (23 5.5)``.
  499. Miscellaneous
  500. -------------
  501. * The ``repr()`` of a ``QuerySet`` is wrapped in ``<QuerySet >`` to
  502. disambiguate it from a plain list when debugging.
  503. * ``utils.version.get_version()`` returns :pep:`440` compliant release
  504. candidate versions (e.g. '1.10rc1' instead of '1.10c1').
  505. * The ``LOGOUT_URL`` setting is removed as Django hasn't made use of it
  506. since pre-1.0. If you use it in your project, you can add it to your
  507. project's settings. The default value was ``'/accounts/logout/'``.
  508. * Objects with a ``close()`` method such as files and generators passed to
  509. :class:`~django.http.HttpResponse` are now closed immediately instead of when
  510. the WSGI server calls ``close()`` on the response.
  511. * A redundant ``transaction.atomic()`` call in ``QuerySet.update_or_create()``
  512. is removed. This may affect query counts tested by
  513. ``TransactionTestCase.assertNumQueries()``.
  514. * Support for ``skip_validation`` in ``BaseCommand.execute(**options)`` is
  515. removed. Use ``skip_checks`` (added in Django 1.7) instead.
  516. * :djadmin:`loaddata` now raises a ``CommandError`` instead of showing a
  517. warning when the specified fixture file is not found.
  518. * Instead of directly accessing the ``LogEntry.change_message`` attribute, it's
  519. now better to call the ``LogEntry.get_change_message()`` method which will
  520. provide the message in the current language.
  521. * The default error views now raise ``TemplateDoesNotExist`` if a nonexistent
  522. ``template_name`` is specified.
  523. * The unused ``choices`` keyword argument of the ``Select`` and
  524. ``SelectMultiple`` widgets' ``render()`` method is removed. The ``choices``
  525. argument of the ``render_options()`` method is also removed, making
  526. ``selected_choices`` the first argument.
  527. * Tests that violate deferrable database constraints will now error when run on
  528. a database that supports deferrable constraints.
  529. * Built-in management commands now use indexing of keys in ``options``, e.g.
  530. ``options['verbosity']``, instead of ``options.get()`` and no longer perform
  531. any type coercion. This could be a problem if you're calling commands using
  532. ``Command.execute()`` (which bypasses the argument parser that sets a default
  533. value) instead of :func:`~django.core.management.call_command`. Instead of
  534. calling ``Command.execute()``, pass the command object as the first argument
  535. to ``call_command()``.
  536. * :class:`~django.contrib.auth.backends.ModelBackend` and
  537. :class:`~django.contrib.auth.backends.RemoteUserBackend` now reject inactive
  538. users. This means that inactive users can't login and will be logged
  539. out if they are switched from ``is_active=True`` to ``False``. If you need
  540. the previous behavior, use the new
  541. :class:`~django.contrib.auth.backends.AllowAllUsersModelBackend` or
  542. :class:`~django.contrib.auth.backends.AllowAllUsersRemoteUserBackend`
  543. in :setting:`AUTHENTICATION_BACKENDS` instead.
  544. * In light of the previous change, the test client's
  545. :meth:`~django.test.Client.login()` method no longer always rejects inactive
  546. users but instead delegates this decision to the authentication backend.
  547. * :func:`django.views.i18n.set_language` may now return a 204 status code for
  548. AJAX requests.
  549. * The ``base_field`` attribute of
  550. :class:`~django.contrib.postgres.fields.RangeField` is now a type of field,
  551. not an instance of a field. If you have created a custom subclass of
  552. :class:`~django.contrib.postgres.fields.RangeField`, you should change the
  553. ``base_field`` attribute.
  554. * Middleware classes are now initialized when the server starts rather than
  555. during the first request.
  556. * If you override ``is_authenticated()`` or ``is_anonymous()`` in a custom user
  557. model, you must convert them to attributes or properties as described in
  558. :ref:`the deprecation note <user-is-auth-anon-deprecation>`.
  559. * When using :attr:`ModelAdmin.save_as=True
  560. <django.contrib.admin.ModelAdmin.save_as>`, the "Save as new" button now
  561. redirects to the change view for the new object instead of to the model's
  562. changelist. If you need the previous behavior, set the new
  563. :attr:`ModelAdmin.save_as_continue
  564. <django.contrib.admin.ModelAdmin.save_as_continue>` attribute to ``False``.
  565. * Required form fields now have the ``required`` HTML attribute. Set the
  566. :attr:`Form.use_required_attribute <django.forms.Form.use_required_attribute>`
  567. attribute to ``False`` to disable it. You could also add the ``novalidate``
  568. attribute to ``<form>`` if you don't want browser validation.
  569. .. _deprecated-features-1.10:
  570. Features deprecated in 1.10
  571. ===========================
  572. Direct assignment to a reverse foreign key or many-to-many relation
  573. -------------------------------------------------------------------
  574. Instead of assigning related objects using direct assignment::
  575. >>> new_list = [obj1, obj2, obj3]
  576. >>> e.related_set = new_list
  577. Use the :meth:`~django.db.models.fields.related.RelatedManager.set` method
  578. added in Django 1.9::
  579. >>> e.related_set.set([obj1, obj2, obj3])
  580. This prevents confusion about an assignment resulting in an implicit save.
  581. Non-timezone-aware :class:`~django.core.files.storage.Storage` API
  582. ------------------------------------------------------------------
  583. The old, non-timezone-aware methods ``accessed_time()``, ``created_time()``,
  584. and ``modified_time()`` are deprecated in favor of the new ``get_*_time()``
  585. methods.
  586. Third-party storage backends should implement the new methods and mark the old
  587. ones as deprecated. Until then, the new ``get_*_time()`` methods on the base
  588. :class:`~django.core.files.storage.Storage` class convert ``datetime``\s from
  589. the old methods as required and emit a deprecation warning as they do so.
  590. Third-party storage backends may retain the old methods as long as they
  591. wish to support earlier versions of Django.
  592. :mod:`django.contrib.gis`
  593. -------------------------
  594. * The ``get_srid()`` and ``set_srid()`` methods of
  595. :class:`~django.contrib.gis.geos.GEOSGeometry` are deprecated in favor
  596. of the :attr:`~django.contrib.gis.geos.GEOSGeometry.srid` property.
  597. * The ``get_x()``, ``set_x()``, ``get_y()``, ``set_y()``, ``get_z()``, and
  598. ``set_z()`` methods of :class:`~django.contrib.gis.geos.Point` are deprecated
  599. in favor of the ``x``, ``y``, and ``z`` properties.
  600. * The ``get_coords()`` and ``set_coords()`` methods of
  601. :class:`~django.contrib.gis.geos.Point` are deprecated in favor of the
  602. ``tuple`` property.
  603. * The ``cascaded_union`` property of
  604. :class:`~django.contrib.gis.geos.MultiPolygon` is deprecated in favor of the
  605. :attr:`~django.contrib.gis.geos.GEOSGeometry.unary_union` property.
  606. * The ``django.contrib.gis.utils.precision_wkt()`` function is deprecated in
  607. favor of :class:`~django.contrib.gis.geos.WKTWriter`.
  608. ``CommaSeparatedIntegerField`` model field
  609. ------------------------------------------
  610. ``CommaSeparatedIntegerField`` is deprecated in favor of
  611. :class:`~django.db.models.CharField` with the
  612. :func:`~django.core.validators.validate_comma_separated_integer_list`
  613. validator::
  614. from django.core.validators import validate_comma_separated_integer_list
  615. from django.db import models
  616. class MyModel(models.Model):
  617. numbers = models.CharField(..., validators=[validate_comma_separated_integer_list])
  618. If you're using Oracle, ``CharField`` uses a different database field type
  619. (``NVARCHAR2``) than ``CommaSeparatedIntegerField`` (``VARCHAR2``). Depending
  620. on your database settings, this might imply a different encoding, and thus a
  621. different length (in bytes) for the same contents. If your stored values are
  622. longer than the 4000 byte limit of ``NVARCHAR2``, you should use ``TextField``
  623. (``NCLOB``) instead. In this case, if you have any queries that group by the
  624. field (e.g. annotating the model with an aggregation or using ``distinct()``)
  625. you'll need to change them (to defer the field).
  626. Using a model name as a query lookup when ``default_related_name`` is set
  627. -------------------------------------------------------------------------
  628. Assume the following models::
  629. from django.db import models
  630. class Foo(models.Model):
  631. pass
  632. class Bar(models.Model):
  633. foo = models.ForeignKey(Foo)
  634. class Meta:
  635. default_related_name = 'bars'
  636. In older versions, :attr:`~django.db.models.Options.default_related_name`
  637. couldn't be used as a query lookup. This is fixed and support for the old
  638. lookup name is deprecated. For example, since ``default_related_name`` is set
  639. in model ``Bar``, instead of using the model name ``bar`` as the lookup::
  640. >>> bar = Bar.objects.get(pk=1)
  641. >>> Foo.objects.get(bar=bar)
  642. use the default_related_name ``bars``::
  643. >>> Foo.objects.get(bars=bar)
  644. .. _search-lookup-replacement:
  645. ``__search`` query lookup
  646. -------------------------
  647. The ``search`` lookup, which supports MySQL only and is extremely limited in
  648. features, is deprecated. Replace it with a custom lookup::
  649. from django.db import models
  650. class Search(models.Lookup):
  651. lookup_name = 'search'
  652. def as_mysql(self, compiler, connection):
  653. lhs, lhs_params = self.process_lhs(compiler, connection)
  654. rhs, rhs_params = self.process_rhs(compiler, connection)
  655. params = lhs_params + rhs_params
  656. return 'MATCH (%s) AGAINST (%s IN BOOLEAN MODE)' % (lhs, rhs), params
  657. models.CharField.register_lookup(Search)
  658. models.TextField.register_lookup(Search)
  659. .. _user-is-auth-anon-deprecation:
  660. Using ``User.is_authenticated()`` and ``User.is_anonymous()`` as methods
  661. ------------------------------------------------------------------------
  662. The ``is_authenticated()`` and ``is_anonymous()`` methods of
  663. :class:`~django.contrib.auth.models.AbstractBaseUser` and
  664. :class:`~django.contrib.auth.models.AnonymousUser` classes are now
  665. properties. They will still work as methods until Django 2.0, but all usage
  666. in Django now uses attribute access.
  667. For example, if you use
  668. :class:`~django.contrib.auth.middleware.AuthenticationMiddleware` and want
  669. to know whether the user is currently logged-in you would use::
  670. if request.user.is_authenticated:
  671. ... # Do something for logged-in users.
  672. else:
  673. ... # Do something for anonymous users.
  674. instead of ``request.user.is_authenticated()``.
  675. This change avoids accidental information leakage if you forget to call the
  676. method, e.g.::
  677. if request.user.is_authenticated:
  678. return sensitive_information
  679. If you override these methods in a custom user model, you must change them to
  680. properties or attributes.
  681. Custom manager classes available through ``prefetch_related`` must define a ``_apply_rel_filters()`` method
  682. -----------------------------------------------------------------------------------------------------------
  683. If you defined a custom manager class available through
  684. :meth:`~django.db.models.query.QuerySet.prefetch_related` you must make sure
  685. it defines a ``_apply_rel_filters()`` method.
  686. This method must accept a :class:`~django.db.models.query.QuerySet` instance
  687. as its single argument and return a filtered version of the queryset for the
  688. model instance the manager is bound to.
  689. Miscellaneous
  690. -------------
  691. * The ``makemigrations --exit`` option is deprecated in favor of the
  692. :option:`makemigrations --check` option.
  693. * ``django.utils.functional.allow_lazy()`` is deprecated in favor of the new
  694. :func:`~django.utils.functional.keep_lazy` function which can be used with a
  695. more natural decorator syntax.
  696. * The ``shell --plain`` option is deprecated in favor of ``-i python`` or
  697. ``--interface python``.
  698. * Importing from the ``django.core.urlresolvers`` module is deprecated in
  699. favor of its new location, :mod:`django.urls`.
  700. * The template ``Context.has_key()`` method is deprecated in favor of ``in``.
  701. * The private attribute ``virtual_fields`` of ``Model._meta`` is
  702. deprecated in favor of ``private_fields``.
  703. * The private keyword arguments ``virtual_only`` in
  704. ``Field.contribute_to_class()`` and ``virtual`` in
  705. ``Model._meta.add_field()`` are deprecated in favor of ``private_only``
  706. and ``private``, respectively.
  707. * The ``javascript_catalog()`` and ``json_catalog()`` views are deprecated in
  708. favor of class-based views :class:`~django.views.i18n.JavaScriptCatalog`
  709. and :class:`~django.views.i18n.JSONCatalog`.
  710. .. _removed-features-1.10:
  711. Features removed in 1.10
  712. ========================
  713. These features have reached the end of their deprecation cycle and so have been
  714. removed in Django 1.10 (please see the :ref:`deprecation timeline
  715. <deprecation-removed-in-1.10>` for more details):
  716. * Support for calling a ``SQLCompiler`` directly as an alias for calling its
  717. ``quote_name_unless_alias`` method is removed.
  718. * The ``cycle`` and ``firstof`` template tags are removed from the ``future``
  719. template tag library.
  720. * ``django.conf.urls.patterns()`` is removed.
  721. * Support for the ``prefix`` argument to
  722. ``django.conf.urls.i18n.i18n_patterns()`` is removed.
  723. * ``SimpleTestCase.urls`` is removed.
  724. * Using an incorrect count of unpacked values in the ``for`` template tag
  725. raises an exception rather than failing silently.
  726. * The ability to :func:`~django.urls.reverse` URLs using a dotted Python path
  727. is removed.
  728. * The ability to use a dotted Python path for the ``LOGIN_URL`` and
  729. ``LOGIN_REDIRECT_URL`` settings is removed.
  730. * Support for ``optparse`` is dropped for custom management commands.
  731. * The class ``django.core.management.NoArgsCommand`` is removed.
  732. * ``django.core.context_processors`` module is removed.
  733. * ``django.db.models.sql.aggregates`` module is removed.
  734. * ``django.contrib.gis.db.models.sql.aggregates`` module is removed.
  735. * The following methods and properties of ``django.db.sql.query.Query`` are
  736. removed:
  737. * Properties: ``aggregates`` and ``aggregate_select``
  738. * Methods: ``add_aggregate``, ``set_aggregate_mask``, and
  739. ``append_aggregate_mask``.
  740. * ``django.template.resolve_variable`` is removed.
  741. * The following private APIs are removed from
  742. :class:`django.db.models.options.Options` (``Model._meta``):
  743. * ``get_field_by_name()``
  744. * ``get_all_field_names()``
  745. * ``get_fields_with_model()``
  746. * ``get_concrete_fields_with_model()``
  747. * ``get_m2m_with_model()``
  748. * ``get_all_related_objects()``
  749. * ``get_all_related_objects_with_model()``
  750. * ``get_all_related_many_to_many_objects()``
  751. * ``get_all_related_m2m_objects_with_model()``
  752. * The ``error_message`` argument of ``django.forms.RegexField`` is removed.
  753. * The ``unordered_list`` filter no longer supports old style lists.
  754. * Support for string ``view`` arguments to ``url()`` is removed.
  755. * The backward compatible shim to rename ``django.forms.Form._has_changed()``
  756. to ``has_changed()`` is removed.
  757. * The ``removetags`` template filter is removed.
  758. * The ``remove_tags()`` and ``strip_entities()`` functions in
  759. ``django.utils.html`` is removed.
  760. * The ``is_admin_site`` argument to
  761. ``django.contrib.auth.views.password_reset()`` is removed.
  762. * ``django.db.models.field.subclassing.SubfieldBase`` is removed.
  763. * ``django.utils.checksums`` is removed.
  764. * The ``original_content_type_id`` attribute on
  765. ``django.contrib.admin.helpers.InlineAdminForm`` is removed.
  766. * The backwards compatibility shim to allow ``FormMixin.get_form()`` to be
  767. defined with no default value for its ``form_class`` argument is removed.
  768. * The following settings are removed:
  769. * ``ALLOWED_INCLUDE_ROOTS``
  770. * ``TEMPLATE_CONTEXT_PROCESSORS``
  771. * ``TEMPLATE_DEBUG``
  772. * ``TEMPLATE_DIRS``
  773. * ``TEMPLATE_LOADERS``
  774. * ``TEMPLATE_STRING_IF_INVALID``
  775. * The backwards compatibility alias ``django.template.loader.BaseLoader`` is
  776. removed.
  777. * Django template objects returned by
  778. :func:`~django.template.loader.get_template` and
  779. :func:`~django.template.loader.select_template` no longer accept a
  780. :class:`~django.template.Context` in their
  781. :meth:`~django.template.backends.base.Template.render()` method.
  782. * :doc:`Template response APIs </ref/template-response>` enforce the use of
  783. :class:`dict` and backend-dependent template objects instead of
  784. :class:`~django.template.Context` and :class:`~django.template.Template`
  785. respectively.
  786. * The ``current_app`` parameter for the following function and classes is
  787. removed:
  788. * ``django.shortcuts.render()``
  789. * ``django.template.Context()``
  790. * ``django.template.RequestContext()``
  791. * ``django.template.response.TemplateResponse()``
  792. * The ``dictionary`` and ``context_instance`` parameters for the following
  793. functions are removed:
  794. * ``django.shortcuts.render()``
  795. * ``django.shortcuts.render_to_response()``
  796. * ``django.template.loader.render_to_string()``
  797. * The ``dirs`` parameter for the following functions is removed:
  798. * ``django.template.loader.get_template()``
  799. * ``django.template.loader.select_template()``
  800. * ``django.shortcuts.render()``
  801. * ``django.shortcuts.render_to_response()``
  802. * Session verification is enabled regardless of whether or not
  803. ``'django.contrib.auth.middleware.SessionAuthenticationMiddleware'`` is in
  804. ``MIDDLEWARE_CLASSES``. ``SessionAuthenticationMiddleware`` no longer has
  805. any purpose and can be removed from ``MIDDLEWARE_CLASSES``. It's kept as
  806. a stub until Django 2.0 as a courtesy for users who don't read this note.
  807. * Private attribute ``django.db.models.Field.related`` is removed.
  808. * The ``--list`` option of the ``migrate`` management command is removed.
  809. * The ``ssi`` template tag is removed.
  810. * Support for the ``=`` comparison operator in the ``if`` template tag is
  811. removed.
  812. * The backwards compatibility shims to allow ``Storage.get_available_name()``
  813. and ``Storage.save()`` to be defined without a ``max_length`` argument are
  814. removed.
  815. * Support for the legacy ``%(<foo>)s`` syntax in ``ModelFormMixin.success_url``
  816. is removed.
  817. * ``GeoQuerySet`` aggregate methods ``collect()``, ``extent()``, ``extent3d()``,
  818. ``make_line()``, and ``unionagg()`` are removed.
  819. * The ability to specify ``ContentType.name`` when creating a content type
  820. instance is removed.
  821. * Support for the old signature of ``allow_migrate`` is removed.
  822. * Support for the syntax of ``{% cycle %}`` that uses comma-separated arguments
  823. is removed.
  824. * The warning that :class:`~django.core.signing.Signer` issued when given an
  825. invalid separator is now a ``ValueError``.