2.0.txt 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. ============================================
  2. Django 2.0 release notes - UNDER DEVELOPMENT
  3. ============================================
  4. Welcome to Django 2.0!
  5. These release notes cover the :ref:`new features <whats-new-2.0>`, as well as
  6. some :ref:`backwards incompatible changes <backwards-incompatible-2.0>` you'll
  7. want to be aware of when upgrading from Django 1.11 or earlier. We've
  8. :ref:`dropped some features<removed-features-2.0>` that have reached the end of
  9. their deprecation cycle, and we've :ref:`begun the deprecation process for some
  10. features <deprecated-features-2.0>`.
  11. See the :doc:`/howto/upgrade-version` guide if you're updating an existing
  12. project.
  13. Python compatibility
  14. ====================
  15. Django 2.0 supports Python 3.5+. Since Django 1.11, support for Python 2.7 and
  16. 3.4 is removed. We **highly recommend** and only officially support the latest
  17. release of each series.
  18. Third-party library support for older version of Django
  19. =======================================================
  20. Following the release of Django 2.0, we suggest that third-party app authors
  21. drop support for all versions of Django prior to 1.11. At that time, you should
  22. be able run your package's tests using ``python -Wd`` so that deprecation
  23. warnings do appear. After making the deprecation warning fixes, your app should
  24. be compatible with Django 2.0.
  25. .. _whats-new-2.0:
  26. What's new in Django 2.0
  27. ========================
  28. Minor features
  29. --------------
  30. :mod:`django.contrib.admin`
  31. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  32. * ...
  33. :mod:`django.contrib.admindocs`
  34. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  35. * ...
  36. :mod:`django.contrib.auth`
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. * The default iteration count for the PBKDF2 password hasher is increased from
  39. 36,000 to 100,000.
  40. :mod:`django.contrib.contenttypes`
  41. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  42. * ...
  43. :mod:`django.contrib.gis`
  44. ~~~~~~~~~~~~~~~~~~~~~~~~~
  45. * Added MySQL support for the
  46. :class:`~django.contrib.gis.db.models.functions.AsGeoJSON` function,
  47. :class:`~django.contrib.gis.db.models.functions.GeoHash` function,
  48. :class:`~django.contrib.gis.db.models.functions.IsValid` function, and
  49. :lookup:`isvalid` lookup.
  50. * Added the :class:`~django.contrib.gis.db.models.functions.Azimuth` and
  51. :class:`~django.contrib.gis.db.models.functions.LineLocatePoint` functions,
  52. supported on PostGIS and SpatiaLite.
  53. * Any :class:`~django.contrib.gis.geos.GEOSGeometry` imported from GeoJSON now
  54. has its SRID set.
  55. * Added the :attr:`.OSMWidget.default_zoom` attribute to customize the map's
  56. default zoom level.
  57. * Made metadata readable and editable on rasters through the
  58. :attr:`~django.contrib.gis.gdal.GDALRaster.metadata`,
  59. :attr:`~django.contrib.gis.gdal.GDALRaster.info`, and
  60. :attr:`~django.contrib.gis.gdal.GDALBand.metadata` attributes.
  61. * Allowed passing driver-specific creation options to
  62. :class:`~django.contrib.gis.gdal.GDALRaster` objects using ``papsz_options``.
  63. :mod:`django.contrib.messages`
  64. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  65. * ...
  66. :mod:`django.contrib.postgres`
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  68. * The new ``distinct`` argument for
  69. :class:`~django.contrib.postgres.aggregates.ArrayAgg` determines if
  70. concatenated values will be distinct.
  71. * The new :class:`~django.contrib.postgres.functions.RandomUUID` database
  72. function returns a version 4 UUID. It requires use of PostgreSQL's
  73. ``pgcrypto`` extension which can be activated using the new
  74. :class:`~django.contrib.postgres.operations.CryptoExtension` migration
  75. operation.
  76. :mod:`django.contrib.redirects`
  77. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  78. * ...
  79. :mod:`django.contrib.sessions`
  80. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  81. * ...
  82. :mod:`django.contrib.sitemaps`
  83. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  84. * Added the ``protocol`` keyword argument to the
  85. :class:`~django.contrib.sitemaps.GenericSitemap` constructor.
  86. :mod:`django.contrib.sites`
  87. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  88. * ...
  89. :mod:`django.contrib.staticfiles`
  90. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  91. * ...
  92. :mod:`django.contrib.syndication`
  93. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  94. * ...
  95. Cache
  96. ~~~~~
  97. * ...
  98. CSRF
  99. ~~~~
  100. * ...
  101. Database backends
  102. ~~~~~~~~~~~~~~~~~
  103. * ...
  104. Email
  105. ~~~~~
  106. * ...
  107. File Storage
  108. ~~~~~~~~~~~~
  109. * :meth:`File.open() <django.core.files.File.open>` can be used as a context
  110. manager, e.g. ``with file.open() as f:``.
  111. File Uploads
  112. ~~~~~~~~~~~~
  113. * ...
  114. Forms
  115. ~~~~~
  116. * The new ``date_attrs`` and ``time_attrs`` arguments for
  117. :class:`~django.forms.SplitDateTimeWidget` and
  118. :class:`~django.forms.SplitHiddenDateTimeWidget` allow specifying different
  119. HTML attributes for the ``DateInput`` and ``TimeInput`` (or hidden)
  120. subwidgets.
  121. * The new :meth:`Form.errors.get_json_data()
  122. <django.forms.Form.errors.get_json_data>` method returns form errors as
  123. a dictionary suitable for including in a JSON response.
  124. Generic Views
  125. ~~~~~~~~~~~~~
  126. * ...
  127. Internationalization
  128. ~~~~~~~~~~~~~~~~~~~~
  129. * ...
  130. Management Commands
  131. ~~~~~~~~~~~~~~~~~~~
  132. * :djadmin:`inspectdb` now translates MySQL's unsigned integer columns to
  133. ``PositiveIntegerField`` or ``PositiveSmallIntegerField``.
  134. * The new :option:`makemessages --add-location` option controls the comment
  135. format in PO files.
  136. * :djadmin:`loaddata` can now :ref:`read from stdin <loading-fixtures-stdin>`.
  137. * The new :option:`diffsettings --output` option allows formatting the output
  138. in a unified diff format.
  139. * On Oracle, :djadmin:`inspectdb` can now introspect ``AutoField`` if the
  140. column is created as an identity column.
  141. Migrations
  142. ~~~~~~~~~~
  143. * ...
  144. Models
  145. ~~~~~~
  146. * The new :class:`~django.db.models.functions.StrIndex` database function
  147. finds the starting index of a string inside another string.
  148. * On Oracle, ``AutoField`` and ``BigAutoField`` are now created as `identity
  149. columns`_.
  150. .. _`identity columns`: https://docs.oracle.com/database/121/DRDAA/migr_tools_feat.htm#DRDAA109
  151. * The new ``chunk_size`` parameter of :meth:`.QuerySet.iterator` controls the
  152. number of rows fetched by the Python database client when streaming results
  153. from the database. For databases that don't support server-side cursors, it
  154. controls the number of results Django fetches from the database adapter.
  155. * Added the :class:`~django.db.models.functions.datetime.ExtractQuarter`
  156. function to extract the quarter from :class:`~django.db.models.DateField` and
  157. :class:`~django.db.models.DateTimeField`, and exposed it through the
  158. :lookup:`quarter` lookup.
  159. * Added the :class:`~django.db.models.functions.datetime.TruncQuarter`
  160. function to truncate :class:`~django.db.models.DateField` and
  161. :class:`~django.db.models.DateTimeField` to the first day of a quarter.
  162. Requests and Responses
  163. ~~~~~~~~~~~~~~~~~~~~~~
  164. * The :djadmin:`runserver` Web server supports HTTP 1.1.
  165. Serialization
  166. ~~~~~~~~~~~~~
  167. * ...
  168. Signals
  169. ~~~~~~~
  170. * ...
  171. Templates
  172. ~~~~~~~~~
  173. * To increase the usefulness of :meth:`.Engine.get_default` in third-party
  174. apps, it now returns the first engine if multiple ``DjangoTemplates`` engines
  175. are configured in ``TEMPLATES`` rather than raising ``ImproperlyConfigured``.
  176. * Custom template tags may now accept keyword-only arguments.
  177. Tests
  178. ~~~~~
  179. * Added threading support to :class:`~django.test.LiveServerTestCase`.
  180. * Added settings that allow customizing the test tablespace parameters for
  181. Oracle: :setting:`DATAFILE_SIZE`, :setting:`DATAFILE_TMP_SIZE`,
  182. :setting:`DATAFILE_EXTSIZE`, and :setting:`DATAFILE_TMP_EXTSIZE`.
  183. URLs
  184. ~~~~
  185. * ...
  186. Validators
  187. ~~~~~~~~~~
  188. * ...
  189. .. _backwards-incompatible-2.0:
  190. Backwards incompatible changes in 2.0
  191. =====================================
  192. Removed support for bytestrings in some places
  193. ----------------------------------------------
  194. To support native Python 2 strings, older Django versions had to accept both
  195. bytestrings and unicode strings. Now that Python 2 support is dropped,
  196. bytestrings should only be encountered around input/output boundaries (handling
  197. of binary fields or HTTP streams, for example). You might have to update your
  198. code to limit bytestring usage to a minimum, as Django no longer accepts
  199. bytestrings in certain code paths.
  200. Database backend API
  201. --------------------
  202. This section describes changes that may be needed in third-party database
  203. backends.
  204. * The ``DatabaseOperations.datetime_cast_date_sql()``,
  205. ``datetime_cast_time_sql()``, ``datetime_trunc_sql()``, and
  206. ``datetime_extract_sql()`` methods now return only the SQL to perform the
  207. operation instead of SQL and a list of parameters.
  208. * Third-party database backends should add a ``DatabaseWrapper.display_name``
  209. attribute with the name of the database that your backend works with. Django
  210. may use it in various messages, such as in system checks.
  211. * The first argument of ``SchemaEditor._alter_column_type_sql()`` is now
  212. ``model`` rather than ``table``.
  213. Dropped support for Oracle 11.2
  214. -------------------------------
  215. The end of upstream support for Oracle 11.2 is Dec. 2020. Django 1.11 will be
  216. supported until April 2020 which almost reaches this date. Django 2.0
  217. officially supports Oracle 12.1+.
  218. Default MySQL isolation level is read committed
  219. -----------------------------------------------
  220. MySQL's default isolation level, repeatable read, may cause data loss in
  221. typical Django usage. To prevent that and for consistency with other databases,
  222. the default isolation level is now read committed. You can use the
  223. :setting:`DATABASES` setting to :ref:`use a different isolation level
  224. <mysql-isolation-level>`, if needed.
  225. :attr:`AbstractUser.last_name <django.contrib.auth.models.User.last_name>` ``max_length`` increased to 150
  226. ----------------------------------------------------------------------------------------------------------
  227. A migration for :attr:`django.contrib.auth.models.User.last_name` is included.
  228. If you have a custom user model inheriting from ``AbstractUser``, you'll need
  229. to generate and apply a database migration for your user model.
  230. If you want to preserve the 30 character limit for last names, use a custom
  231. form::
  232. from django.contrib.auth.forms import UserChangeForm
  233. class MyUserChangeForm(UserChangeForm):
  234. last_name = forms.CharField(max_length=30, required=False)
  235. If you wish to keep this restriction in the admin when editing users, set
  236. ``UserAdmin.form`` to use this form::
  237. from django.contrib.auth.admin import UserAdmin
  238. from django.contrib.auth.models import User
  239. class MyUserAdmin(UserAdmin):
  240. form = MyUserChangeForm
  241. admin.site.unregister(User)
  242. admin.site.register(User, MyUserAdmin)
  243. ``QuerySet.reverse()`` and ``last()`` are prohibited after slicing
  244. ------------------------------------------------------------------
  245. Calling ``QuerySet.reverse()`` or ``last()`` on a sliced queryset leads to
  246. unexpected results due to the slice being applied after reordering. This is
  247. now prohibited, e.g.::
  248. >>> Model.objects.all()[:2].reverse()
  249. Traceback (most recent call last):
  250. ...
  251. TypeError: Cannot reverse a query once a slice has been taken.
  252. Form fields no longer accept optional arguments as positional arguments
  253. -----------------------------------------------------------------------
  254. To help prevent runtime errors due to incorrect ordering of form field
  255. arguments, optional arguments of built-in form fields are no longer accepted
  256. as positional arguments. For example::
  257. forms.IntegerField(25, 10)
  258. raises an exception and should be replaced with::
  259. forms.IntegerField(max_value=25, min_value=10)
  260. Miscellaneous
  261. -------------
  262. * The ``SessionAuthenticationMiddleware`` class is removed. It provided no
  263. functionality since session authentication is unconditionally enabled in
  264. Django 1.10.
  265. * The default HTTP error handlers (``handler404``, etc.) are now callables
  266. instead of dotted Python path strings. Django favors callable references
  267. since they provide better performance and debugging experience.
  268. * :class:`~django.views.generic.base.RedirectView` no longer silences
  269. ``NoReverseMatch`` if the ``pattern_name`` doesn't exist.
  270. * When :setting:`USE_L10N` is off, :class:`~django.forms.FloatField` and
  271. :class:`~django.forms.DecimalField` now respect :setting:`DECIMAL_SEPARATOR`
  272. and :setting:`THOUSAND_SEPARATOR` during validation. For example, with the
  273. settings::
  274. USE_L10N = False
  275. USE_THOUSAND_SEPARATOR = True
  276. DECIMAL_SEPARATOR = ','
  277. THOUSAND_SEPARATOR = '.'
  278. an input of ``"1.345"`` is now converted to ``1345`` instead of ``1.345``.
  279. * Subclasses of :class:`~django.contrib.auth.models.AbstractBaseUser` are no
  280. longer required to implement ``get_short_name()`` and ``get_full_name()``.
  281. (The base implementations that raise ``NotImplementedError`` are removed.)
  282. ``django.contrib.admin`` uses these methods if implemented but doesn't
  283. require them. Third-party apps that use these methods may want to adopt a
  284. similar approach.
  285. * The ``FIRST_DAY_OF_WEEK`` and ``NUMBER_GROUPING`` format settings are now
  286. kept as integers in JavaScript and JSON i18n view outputs.
  287. * :meth:`~django.test.TransactionTestCase.assertNumQueries` now ignores
  288. connection configuration queries. Previously, if a test opened a new database
  289. connection, those queries could be included as part of the
  290. ``assertNumQueries()`` count.
  291. * The ``PASSWORD_RESET_TIMEOUT_DAYS`` setting is more properly respected in
  292. ``contrib.auth`` password reset. Previously, resets were allowed for one day
  293. longer than expected. For example, with the default of
  294. ``PASSWORD_RESET_TIMEOUT_DAYS = 3``, password reset tokens are now valid for
  295. 72 hours rather than 96 hours.
  296. * The default size of the Oracle test tablespace is increased from 20M to 50M
  297. and the default autoextend size is increased from 10M to 25M.
  298. * To improve performance when streaming large result sets from the database,
  299. :meth:`.QuerySet.iterator` now fetches 2000 rows at a time instead of 100.
  300. The old behavior can be restored using the ``chunk_size`` parameter. For
  301. example::
  302. Book.objects.iterator(chunk_size=100)
  303. * Providing unknown package names in the ``packages`` argument of the
  304. :class:`~django.views.i18n.JavaScriptCatalog` view now raises ``ValueError``
  305. instead of passing silently.
  306. .. _deprecated-features-2.0:
  307. Features deprecated in 2.0
  308. ==========================
  309. Miscellaneous
  310. -------------
  311. * The ``django.db.backends.postgresql_psycopg2`` module is deprecated in favor
  312. of ``django.db.backends.postgresql``. It's been an alias since Django 1.9.
  313. This only affects code that imports from the module directly. The
  314. ``DATABASES`` setting can still use
  315. ``'django.db.backends.postgresql_psycopg2'``, though you can simplify that by
  316. using the ``'django.db.backends.postgresql'`` name added in Django 1.9.
  317. * ``django.shortcuts.render_to_response()`` is deprecated in favor of
  318. :func:`django.shortcuts.render`. ``render()`` takes the same arguments
  319. except that is also requires a ``request``.
  320. * The ``DEFAULT_CONTENT_TYPE`` setting is deprecated. It doesn't interact well
  321. well with third-party apps and is obsolete since HTML5 has mostly superseded
  322. XHTML.
  323. * ``HttpRequest.xreadlines()`` is deprecated in favor of iterating over the
  324. request.
  325. .. _removed-features-2.0:
  326. Features removed in 2.0
  327. =======================
  328. These features have reached the end of their deprecation cycle and are removed
  329. in Django 2.0. See :ref:`deprecated-features-1.9` and
  330. :ref:`deprecated-features-1.10` for details, including how to remove usage of
  331. these features.
  332. * The ``weak`` argument to ``django.dispatch.signals.Signal.disconnect()`` is
  333. removed.
  334. * ``django.db.backends.base.BaseDatabaseOperations.check_aggregate_support()``
  335. is removed.
  336. * The ``django.forms.extras`` package is removed.
  337. * The ``assignment_tag`` helper is removed.
  338. * The ``host`` argument to ``SimpleTestCase.assertsRedirects()`` is removed.
  339. The compatibility layer which allows absolute URLs to be considered equal to
  340. relative ones when the path is identical is also removed.
  341. * ``Field.rel`` and ``Field.remote_field.to`` are removed.
  342. * The ``on_delete`` argument for ``ForeignKey`` and ``OneToOneField`` are now
  343. required.
  344. * ``django.db.models.fields.add_lazy_relation()`` is removed.
  345. * When time zone support is enabled, database backends that don't support time
  346. zones no longer convert aware datetimes to naive values in UTC anymore when
  347. such values are passed as parameters to SQL queries executed outside of the
  348. ORM, e.g. with ``cursor.execute()``.
  349. * ``django.contrib.auth.tests.utils.skipIfCustomUser()`` is removed.
  350. * The ``GeoManager`` and ``GeoQuerySet`` classes are removed.
  351. * The ``django.contrib.gis.geoip`` module is removed.
  352. * The ``supports_recursion`` check for template loaders is removed from:
  353. * ``django.template.engine.Engine.find_template()``
  354. * ``django.template.loader_tags.ExtendsNode.find_template()``
  355. * ``django.template.loaders.base.Loader.supports_recursion()``
  356. * ``django.template.loaders.cached.Loader.supports_recursion()``
  357. * The ``load_template`` and ``load_template_sources`` template loader methods
  358. are removed.
  359. * The ``template_dirs`` argument for template loaders is removed:
  360. * ``django.template.loaders.base.Loader.get_template()``
  361. * ``django.template.loaders.cached.Loader.cache_key()``
  362. * ``django.template.loaders.cached.Loader.get_template()``
  363. * ``django.template.loaders.cached.Loader.get_template_sources()``
  364. * ``django.template.loaders.filesystem.Loader.get_template_sources()``
  365. * ``django.template.loaders.base.Loader.__call__()`` is removed.
  366. * Support for custom error views that don't accept an ``exception`` parameter
  367. is removed.
  368. * The ``mime_type`` attribute of ``django.utils.feedgenerator.Atom1Feed`` and
  369. ``django.utils.feedgenerator.RssFeed`` is removed.
  370. * The ``app_name`` argument to ``include()`` is removed.
  371. * Support for passing a 3-tuple (including ``admin.site.urls``) as the first
  372. argument to ``include()`` is removed.
  373. * Support for setting a URL instance namespace without an application namespace
  374. is removed.
  375. * ``Field._get_val_from_obj()`` is removed.
  376. * ``django.template.loaders.eggs.Loader`` is removed.
  377. * The ``current_app`` parameter to the ``contrib.auth`` function-based views is
  378. removed.
  379. * The ``callable_obj`` keyword argument to
  380. ``SimpleTestCase.assertRaisesMessage()`` is removed.
  381. * Support for the ``allow_tags`` attribute on ``ModelAdmin`` methods is
  382. removed.
  383. * The ``enclosure`` keyword argument to ``SyndicationFeed.add_item()`` is
  384. removed.
  385. * The ``django.template.loader.LoaderOrigin`` and
  386. ``django.template.base.StringOrigin`` aliases for
  387. ``django.template.base.Origin`` are removed.
  388. * The ``makemigrations --exit`` option is removed.
  389. * Support for direct assignment to a reverse foreign key or many-to-many
  390. relation is removed.
  391. * The ``get_srid()`` and ``set_srid()`` methods of
  392. ``django.contrib.gis.geos.GEOSGeometry`` are removed.
  393. * The ``get_x()``, ``set_x()``, ``get_y()``, ``set_y()``, ``get_z()``, and
  394. ``set_z()`` methods of ``django.contrib.gis.geos.Point`` are removed.
  395. * The ``get_coords()`` and ``set_coords()`` methods of
  396. ``django.contrib.gis.geos.Point`` are removed.
  397. * The ``cascaded_union`` property of ``django.contrib.gis.geos.MultiPolygon``
  398. is removed.
  399. * ``django.utils.functional.allow_lazy()`` is removed.
  400. * The ``shell --plain`` option is removed.
  401. * The ``django.core.urlresolvers`` module is removed.
  402. * ``CommaSeparatedIntegerField`` is removed, except for support in historical
  403. migrations.
  404. * The template ``Context.has_key()`` method is removed.
  405. * Support for the ``django.core.files.storage.Storage.accessed_time()``,
  406. ``created_time()``, and ``modified_time()`` methods is removed.
  407. * Support for query lookups using the model name when
  408. ``Meta.default_related_name`` is set is removed.
  409. * The MySQL ``__search`` lookup is removed.
  410. * The shim for supporting custom related manager classes without a
  411. ``_apply_rel_filters()`` method is removed.
  412. * Using ``User.is_authenticated()`` and ``User.is_anonymous()`` as methods
  413. rather than properties is no longer supported.
  414. * The ``Model._meta.virtual_fields`` attribute is removed.
  415. * The keyword arguments ``virtual_only`` in ``Field.contribute_to_class()`` and
  416. ``virtual`` in ``Model._meta.add_field()`` are removed.
  417. * The ``javascript_catalog()`` and ``json_catalog()`` views are removed.
  418. * ``django.contrib.gis.utils.precision_wkt()`` is removed.
  419. * In multi-table inheritance, implicit promotion of a ``OneToOneField`` to a
  420. ``parent_link`` is removed.
  421. * Support for ``Widget._format_value()`` is removed.
  422. * ``FileField`` methods ``get_directory_name()`` and ``get_filename()`` are
  423. removed.
  424. * The ``mark_for_escaping()`` function and the classes it uses: ``EscapeData``,
  425. ``EscapeBytes``, ``EscapeText``, ``EscapeString``, and ``EscapeUnicode`` are
  426. removed.
  427. * The ``escape`` filter now uses ``django.utils.html.conditional_escape()``.
  428. * ``Manager.use_for_related_fields`` is removed.
  429. * Model ``Manager`` inheritance follows MRO inheritance rules. The requirement
  430. to use ``Meta.manager_inheritance_from_future`` to opt-in to the behavior is
  431. removed.
  432. * Support for old-style middleware using ``settings.MIDDLEWARE_CLASSES`` is
  433. removed.