Django 2.0 リリースノート¶
December 2, 2017
Django 2.0 へようこそ!
このリリースノートでは、 バージョン 2.0 の新機能 と、Django 1.11 以前からアップグレードする際に注意すべき、 後方互換性のない変更 について説明します。 非推奨サイクルが終了した機能を廃止しました 。また、 一部の機能を非推奨 としました。
このリリースから Django は loose form of semantic versioning を使用し始めますが、通常 2.0 リリースで期待されるような後方互換性を損なう大きな変更はありません。アップグレードは、これまでのフィーチャーリリースと同等の労力で行えるはずです。
既存のプロジェクトをアップデートするときは、 Django の新しいバージョンへの更新 ガイドに従ってください。
Python バージョン間の互換性¶
Django 2.0 は Python 3.4, 3.5, 3.6, 3.7 をサポートします。各バージョン系列の最新リリースのみを公式にサポートし、最新リリースを使用することを 強く推奨 します。
Python 2.7 をサポートするのは、Django 1.11.x シリーズで最後になります。
Django 2.0 は Python 3.4 をサポートする最後のリリース系列になる予定です。Django 2.0 (April 2019) の end-of-life 後もまだ Python 3.4 を使用する予定であれば、代わりに Django 1.11 LTS (2020年4月までサポート) にとどまってください。ただし、2019年3月には Python 3.4 自体が end-of-life を迎えることに注意してください。
古いバージョンの Django をサポートするサードパーティのライブラリ¶
Django 2.0 リリース後は、サードパーティアプリの開発者は 1.11 より前のバージョンの Django のサポートを終えるよう推奨します。このとき、python -Wd を使ったパッケージテストを実行して、廃止予定 (deprecation) の警告を出力できます。廃止予定の警告が出ないように修正すれば、アプリケーションは Django 2.0 と互換性のある状態になっているはずです。
Django 2.0 の新機能¶
URL ルーティングの構文の簡略化¶
The new django.urls.path() function allows a simpler, more readable URL
routing syntax. For example, this example from previous Django releases:
url(r"^articles/(?P<year>[0-9]{4})/$", views.year_archive),
次のように書き換えられます。
path("articles/<int:year>/", views.year_archive),
新しい構文では、URL パラメータの型強制がサポートされます。この例では、ビューが受け取る year キーワード引数は、文字列ではなく整数になります。また、書き換えた例でマッチする URL の制約も少し緩和されています。たとえば、year として 10000 を指定したとしてもマッチします。正規表現の例にあるような、数字が4文字ちょうどでなければならないという制約がないからです。
django.conf.urls.url() 関数は django.urls.re_path() から利用できるようになりました。差し迫った廃止は必要ないため、後方互換性のために、関数は古い場所にも残されます。また django.conf.urls.include() 関数も django.urls からインポートできるようになりました。したがって、URLconf の中では from django.urls import include, path, re_path とインポートができます。
新しい構文と詳細な解説を紹介するために、URL ディスパッチャ ドキュメントをアップデートしています。
モバイルフレンドリーな contrib.admin¶
admin サイトがレスポンシブになり、主要な全モバイルデバイスをサポートするようになりました。古いブラウザーでは、多少のデグレーションが発生する可能性があります。
Windows 式¶
新しい Window 式を使うと、クエリセットに OVER 句を追加できるようになります。式の中では、window 関数 と aggregate 関数 が使用できます。
マイナーな機能¶
django.contrib.admin¶
The new
ModelAdmin.autocomplete_fieldsattribute andModelAdmin.get_autocomplete_fields()method allow using a Select2 search widget forForeignKeyandManyToManyField.
django.contrib.auth¶
PBKDF2 パスワードハッシュに対するデフォルトのイテレーション回数が 36,000 から 100,000 に増加しました。
django.contrib.gis¶
Added MySQL support for the
AsGeoJSONfunction,GeoHashfunction,IsValidfunction,isvalidlookup, and distance lookups.Added the
AzimuthandLineLocatePointfunctions, supported on PostGIS and SpatiaLite.Any
GEOSGeometryimported from GeoJSON now has its SRID set.Added the
OSMWidget.default_zoomattribute to customize the map's default zoom level.Made metadata readable and editable on rasters through the
metadata,info, andmetadataattributes.Allowed passing driver-specific creation options to
GDALRasterobjects usingpapsz_options.Allowed creating
GDALRasterobjects in GDAL's internal virtual filesystem. Rasters can now be created from and converted to binary data in-memory.The new
GDALBand.color_interp()method returns the color interpretation for the band.
django.contrib.postgres¶
The new
distinctargument forArrayAggdetermines if concatenated values will be distinct.The new
RandomUUIDdatabase function returns a version 4 UUID. It requires use of PostgreSQL'spgcryptoextension which can be activated using the newCryptoExtensionmigration operation.django.contrib.postgres.indexes.GinIndexnow supports thefastupdateandgin_pending_list_limitparameters.The new
GistIndexclass allows creatingGiSTindexes in the database. The newBtreeGistExtensionmigration operation installs thebtree_gistextension to add support for operator classes that aren't built-in.inspectdbcan now introspectJSONFieldand variousRangeFields (django.contrib.postgresmust be inINSTALLED_APPS).
django.contrib.sitemaps¶
Added the
protocolkeyword argument to theGenericSitemapconstructor.
キャッシュ¶
cache.set_many()now returns a list of keys that failed to be inserted. For the built-in backends, failed inserts can only happen on memcached.
ファイルストレージ¶
File.open()can be used as a context manager, e.g.with file.open() as f:.
フォーム¶
The new
date_attrsandtime_attrsarguments forSplitDateTimeWidgetandSplitHiddenDateTimeWidgetallow specifying different HTML attributes for theDateInputandTimeInput(or hidden) subwidgets.The new
Form.errors.get_json_data()method returns form errors as a dictionary suitable for including in a JSON response.
ジェネリックビュー (汎用ビュー)¶
The new
ContextMixin.extra_contextattribute allows adding context inView.as_view().
管理コマンド¶
inspectdbnow translates MySQL's unsigned integer columns toPositiveIntegerFieldorPositiveSmallIntegerField.The new
makemessages --add-locationoption controls the comment format in.pofiles.loaddatacan now read from stdin.The new
diffsettings --outputoption allows formatting the output in a unified diff format.On Oracle,
inspectdbcan now introspectAutoFieldif the column is created as an identity column.On MySQL,
dbshellnow supports client-side TLS certificates.
マイグレーション¶
The new
squashmigrations --squashed-nameoption allows naming the squashed migration.
モデル¶
The new
StrIndexdatabase function finds the starting index of a string inside another string.On Oracle,
AutoFieldandBigAutoFieldare now created as identity columns.The new
chunk_sizeparameter ofQuerySet.iterator()controls the number of rows fetched by the Python database client when streaming results from the database. For databases that don't support server-side cursors, it controls the number of results Django fetches from the database adapter.QuerySet.earliest(),QuerySet.latest(), andMeta.get_latest_bynow allow ordering by several fields.Added the
ExtractQuarterfunction to extract the quarter fromDateFieldandDateTimeField, and exposed it through thequarterlookup.Added the
TruncQuarterfunction to truncateDateFieldandDateTimeFieldto the first day of a quarter.Added the
db_tablespaceparameter to class-based indexes.If the database supports a native duration field (Oracle and PostgreSQL),
Extractnow works withDurationField.Added the
ofargument toQuerySet.select_for_update(), supported on PostgreSQL and Oracle, to lock only rows from specific tables rather than all selected tables. It may be helpful particularly whenselect_for_update()is used in conjunction withselect_related().The new
field_nameparameter ofQuerySet.in_bulk()allows fetching results based on any unique model field.CursorWrapper.callproc()now takes an optional dictionary of keyword parameters, if the backend supports this feature. Of Django's built-in backends, only Oracle supports it.The new
connection.execute_wrapper()method allows installing wrappers around execution of database queries.The new
filterargument for built-in aggregates allows adding different conditionals to multiple aggregations over the same fields or relations.Added support for expressions in
Meta.ordering.The new
namedparameter ofQuerySet.values_list()allows fetching results as named tuples.The new
FilteredRelationclass allows adding anONclause to querysets.
ページネーション¶
Added
Paginator.get_page()to provide the documented pattern of handling invalid page numbers.
Request と Response¶
The
runserverweb server supports HTTP 1.1.
テンプレート¶
To increase the usefulness of
Engine.get_default()in third-party apps, it now returns the first engine if multipleDjangoTemplatesengines are configured inTEMPLATESrather than raisingImproperlyConfigured.カスタムのテンプレートタグはキーワード引数のみを受け取ることができるようになりました。
テスト¶
LiveServerTestCaseにスレッドのサポートが追加されました。Oracle のテストテーブルスペースパラメータをカスタマイズするための新しい設定項目として、
DATAFILE_SIZE、DATAFILE_TMP_SIZE、DATAFILE_EXTSIZE、DATAFILE_TMP_EXTSIZEが追加されました。
バリデータ¶
The new
ProhibitNullCharactersValidatordisallows the null character in the input of theCharFieldform field and its subclasses. Null character input was observed from vulnerability scanning tools. Most databases silently discard null characters, but psycopg2 2.7+ raises an exception when trying to save a null character to a char/text field with PostgreSQL.
2.0 における後方互換性のない変更¶
いくつかの場所におけバイト文字列のサポートの削除¶
To support native Python 2 strings, older Django versions had to accept both
bytestrings and Unicode strings. Now that Python 2 support is dropped,
bytestrings should only be encountered around input/output boundaries (handling
of binary fields or HTTP streams, for example). You might have to update your
code to limit bytestring usage to a minimum, as Django no longer accepts
bytestrings in certain code paths. Python's -b option may help detect
that mistake in your code.
For example, reverse() now uses str() instead of force_text() to
coerce the args and kwargs it receives, prior to their placement in
the URL. For bytestrings, this creates a string with an undesired b prefix
as well as additional quotes (str(b'foo') is "b'foo'"). To adapt, call
decode() on the bytestring before passing it to reverse().
データベースバックエンド API¶
このセクションでは、サードパーティのデータベースバックエンドで必要になる可能性のある変更について説明します。
The
DatabaseOperations.datetime_cast_date_sql(),datetime_cast_time_sql(),datetime_trunc_sql(),datetime_extract_sql(), anddate_interval_sql()methods now return only the SQL to perform the operation instead of SQL and a list of parameters.Third-party database backends should add a
DatabaseWrapper.display_nameattribute with the name of the database that your backend works with. Django may use it in various messages, such as in system checks.The first argument of
SchemaEditor._alter_column_type_sql()is nowmodelrather thantable.The first argument of
SchemaEditor._create_index_name()is nowtable_namerather thanmodel.To enable
FOR UPDATE OFsupport, setDatabaseFeatures.has_select_for_update_of = True. If the database requires that the arguments toOFbe columns rather than tables, setDatabaseFeatures.select_for_update_of_column = True.To enable support for
Windowexpressions, setDatabaseFeatures.supports_over_clausetoTrue. You may need to customize theDatabaseOperations.window_start_rows_start_end()and/orwindow_start_range_start_end()methods.Third-party database backends should add a
DatabaseOperations.cast_char_field_without_max_lengthattribute with the database data type that will be used in theCastfunction for aCharFieldif themax_lengthargument isn't provided.The first argument of
DatabaseCreation._clone_test_db()andget_test_db_clone_settings()is nowsuffixrather thannumber(in case you want to rename the signatures in your backend for consistency).django.testalso now passes those values as strings rather than as integers.Third-party database backends should add a
DatabaseIntrospection.get_sequences()method based on the stub inBaseDatabaseIntrospection.
Oracle 11.2 に対するサポートの終了¶
The end of upstream support for Oracle 11.2 is Dec. 2020. Django 1.11 will be supported until April 2020 which almost reaches this date. Django 2.0 officially supports Oracle 12.1+.
デフォルトの MySQL の isolation レベルを read committed に変更¶
MySQL のデフォルトの isolation レベルは repeatable read ですが、この設定は Django の典型的な使用例でデータロスを引き起こす可能性があります。データロスを防ぎ、他のデータベースとの一貫性を保つため、デフォルトの isolation level が read committed に変更されました。必要があれば、DATABASES 設定を変更することで、異なる isolation level を使う こともできます。
AbstractUser.last_name の max_length が 150 文字に拡大¶
django.contrib.auth.models.User.last_name に対するマイグレーションが含まれます。AbstractUser を継承したカスタムのユーザーモデルがある場合、そのユーザーモデルに対するデータベースのマイグレーションを生成して適用する必要があります。
last name に 30 文字の制限を課し続けたい場合は、次のようなカスタムフォームを使用してください。
from django.contrib.auth.forms import UserChangeForm
class MyUserChangeForm(UserChangeForm):
last_name = forms.CharField(max_length=30, required=False)
管理サイトでユーザーを編集する時にもこの制約を課し続けたい場合は、以下のように、フォームに UserAdmin.form を設定してください。
from django.contrib.auth.admin import UserAdmin
from django.contrib.auth.models import User
class MyUserAdmin(UserAdmin):
form = MyUserChangeForm
admin.site.unregister(User)
admin.site.register(User, MyUserAdmin)
スライス後の QuerySet.reverse() および last() の禁止¶
Calling QuerySet.reverse() or last() on a sliced queryset leads to
unexpected results due to the slice being applied after reordering. This is
now prohibited, e.g.:
>>> Model.objects.all()[:2].reverse()
Traceback (most recent call last):
...
TypeError: Cannot reverse a query once a slice has been taken.
フォームフィールドに省略可能な引数を渡す時、位置引数として指定することができなくなりました。¶
To help prevent runtime errors due to incorrect ordering of form field arguments, optional arguments of built-in form fields are no longer accepted as positional arguments. For example:
forms.IntegerField(25, 10)
raises an exception and should be replaced with:
forms.IntegerField(max_value=25, min_value=10)
call_command() validates the options it receives¶
call_command() now validates that the argument parser of the command being
called defines all of the options passed to call_command().
For custom management commands that use options not created using
parser.add_argument(), add a stealth_options attribute on the command:
class MyCommand(BaseCommand):
stealth_options = ("option_name", ...)
Indexes no longer accept positional arguments¶
例:
models.Index(["headline", "-pub_date"], "index_name")
raises an exception and should be replaced with:
models.Index(fields=["headline", "-pub_date"], name="index_name")
Foreign key constraints are now enabled on SQLite¶
This will appear as a backwards-incompatible change (IntegrityError:
FOREIGN KEY constraint failed) if attempting to save an existing model
instance that's violating a foreign key constraint.
Foreign keys are now created with DEFERRABLE INITIALLY DEFERRED instead of
DEFERRABLE IMMEDIATE. Thus, tables may need to be rebuilt to recreate
foreign keys with the new definition, particularly if you're using a pattern
like this:
from django.db import transaction
with transaction.atomic():
Book.objects.create(author_id=1)
Author.objects.create(id=1)
If you don't recreate the foreign key as DEFERRED, the first create()
would fail now that foreign key constraints are enforced.
Backup your database first! After upgrading to Django 2.0, you can then rebuild tables using a script similar to this:
from django.apps import apps
from django.db import connection
for app in apps.get_app_configs():
for model in app.get_models(include_auto_created=True):
if model._meta.managed and not (model._meta.proxy or model._meta.swapped):
for base in model.__bases__:
if hasattr(base, "_meta"):
base._meta.local_many_to_many = []
model._meta.local_many_to_many = []
with connection.schema_editor() as editor:
editor._remake_table(model)
This script hasn't received extensive testing and needs adaption for various cases such as multiple databases. Feel free to contribute improvements.
In addition, because of a table alteration limitation of SQLite, it's
prohibited to perform RenameModel and
RenameField operations on models or
fields referenced by other models in a transaction. In order to allow
migrations containing these operations to be applied, you must set the
Migration.atomic attribute to False.
その他¶
The
SessionAuthenticationMiddlewareclass is removed. It provided no functionality since session authentication is unconditionally enabled in Django 1.10.The default HTTP error handlers (
handler404, etc.) are now callables instead of dotted Python path strings. Django favors callable references since they provide better performance and debugging experience.RedirectViewno longer silencesNoReverseMatchif thepattern_namedoesn't exist.When
USE_L10Nis off,FloatFieldandDecimalFieldnow respectDECIMAL_SEPARATORandTHOUSAND_SEPARATORduring validation. For example, with the settings:USE_L10N = False USE_THOUSAND_SEPARATOR = True DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "."
an input of
"1.345"is now converted to1345instead of1.345.Subclasses of
AbstractBaseUserare no longer required to implementget_short_name()andget_full_name(). (The base implementations that raiseNotImplementedErrorare removed.)django.contrib.adminuses these methods if implemented but doesn't require them. Third-party apps that use these methods may want to adopt a similar approach.The
FIRST_DAY_OF_WEEKandNUMBER_GROUPINGformat settings are now kept as integers in JavaScript and JSON i18n view outputs.assertNumQueries()now ignores connection configuration queries. Previously, if a test opened a new database connection, those queries could be included as part of theassertNumQueries()count.The default size of the Oracle test tablespace is increased from 20M to 50M and the default autoextend size is increased from 10M to 25M.
To improve performance when streaming large result sets from the database,
QuerySet.iterator()now fetches 2000 rows at a time instead of 100. The old behavior can be restored using thechunk_sizeparameter. For example:Book.objects.iterator(chunk_size=100)
Providing unknown package names in the
packagesargument of theJavaScriptCatalogview now raisesValueErrorinstead of passing silently.A model instance's primary key now appears in the default
Model.__str__()method, e.g.Question object (1).makemigrationsnow detects changes to the model fieldlimit_choices_tooption. Add this to your existing migrations or accept an auto-generated migration for fields that use it.Performing queries that require automatic spatial transformations now raises
NotImplementedErroron MySQL instead of silently using non-transformed geometries.django.core.exceptions.DjangoRuntimeWarningis removed. It was only used in the cache backend as an intermediate class inCacheKeyWarning's inheritance ofRuntimeWarning.Renamed
BaseExpression._output_fieldtooutput_field. You may need to update custom expressions.In older versions, forms and formsets combine their
Mediawith widgetMediaby concatenating the two. The combining now tries to preserve the relative order of elements in each list.MediaOrderConflictWarningis issued if the order can't be preserved.django.contrib.gis.gdal.OGRExceptionis removed. It's been an alias forGDALExceptionsince Django 1.8.Support for GEOS 3.3.x is dropped.
The way data is selected for
GeometryFieldis changed to improve performance, and in raw SQL queries, those fields must now be wrapped inconnection.ops.select. See the Raw queries note in the GIS tutorial for an example.
Features deprecated in 2.0¶
context argument of Field.from_db_value() and Expression.convert_value()¶
The context argument of Field.from_db_value() and
Expression.convert_value() is unused as it's always an empty dictionary.
The signature of both methods is now:
(self, value, expression, connection)
代わりに、次のようにします:
(self, value, expression, connection, context)
Support for the old signature in custom fields and expressions remains until Django 3.0.
その他¶
The
django.db.backends.postgresql_psycopg2module is deprecated in favor ofdjango.db.backends.postgresql. It's been an alias since Django 1.9. This only affects code that imports from the module directly. TheDATABASESsetting can still use'django.db.backends.postgresql_psycopg2', though you can simplify that by using the'django.db.backends.postgresql'name added in Django 1.9.django.shortcuts.render_to_response()is deprecated in favor ofdjango.shortcuts.render().render()takes the same arguments except that it also requires arequest.The
DEFAULT_CONTENT_TYPEsetting is deprecated. It doesn't interact well with third-party apps and is obsolete since HTML5 has mostly superseded XHTML.HttpRequest.xreadlines()is deprecated in favor of iterating over the request.The
field_namekeyword argument toQuerySet.earliest()andQuerySet.latest()is deprecated in favor of passing the field names as arguments. Write.earliest('pub_date')instead of.earliest(field_name='pub_date').
2.0 で削除された機能¶
以下の機能は、非推奨サイクルの終わりに達したため、Django 2.0 で削除されます。
詳しくは Features deprecated in 1.9 を見てください。ここには、プロジェクトからこれらの機能を削除する方法についても書かれています。
django.dispatch.signals.Signal.disconnect()からweak引数が削除されました。django.db.backends.base.BaseDatabaseOperations.check_aggregate_support()が削除されました。django.forms.extrasパッケージが削除されました。assignment_tagヘルパーが削除されました。SimpleTestCase.assertsRedirects()のhost引数が削除されました。絶対 URL が相対 URL と同一の場合に、相対 URL と等価なものと解釈する互換レイヤーも削除されました。Field.relおよびField.remote_field.toが削除されました。ForeignKeyおよびOneToOneFieldのon_delete引数が削除され、新たにモデルとマイグレーションが必須になりました。更新が必要になるマイグレーションの数を少なくするために、マイグレーションを圧縮すること (squashing migrations) を検討してください。django.db.models.fields.add_lazy_relation()が削除されました。When time zone support is enabled, database backends that don't support time zones no longer convert aware datetimes to naive values in UTC anymore when such values are passed as parameters to SQL queries executed outside of the ORM, e.g. with
cursor.execute().django.contrib.auth.tests.utils.skipIfCustomUser()が削除されました。GeoManagerおよびGeoQuerySetクラスが削除されました。django.contrib.gis.geoipモジュールが削除されました。以下のテンプレートローダーから
supports_recursionチェックが削除されました。django.template.engine.Engine.find_template()django.template.loader_tags.ExtendsNode.find_template()django.template.loaders.base.Loader.supports_recursion()django.template.loaders.cached.Loader.supports_recursion()
load_templateおよびload_template_sourcesテンプレートローダーメソッドが削除されました。以下のテンプレートローダーから
template_dirs引数が削除されました。django.template.loaders.base.Loader.get_template()django.template.loaders.cached.Loader.cache_key()django.template.loaders.cached.Loader.get_template()django.template.loaders.cached.Loader.get_template_sources()django.template.loaders.filesystem.Loader.get_template_sources()
django.template.loaders.base.Loader.__call__()が削除されました。exception引数を受け付けない自作のエラービューのサポートが終了しました。django.utils.feedgenerator.Atom1Feedおよびdjango.utils.feedgenerator.RssFeedのmime_type属性が削除されました。include()のapp_name引数が削除されました。(including
admin.site.urls) as the first argument toinclude()の1番目の引数として、admin.site.urlsを含む3タプルを受け取る機能が削除されました。アプリケーションの名前空間が存在しない URL インスタンスの名前空間を設定する機能が削除されました。
Field._get_val_from_obj()が削除されました。django.template.loaders.eggs.Loaderが削除されました。contrib.auth関数ベースビューのcurrent_app引数が削除されました。SimpleTestCase.assertRaisesMessage()のcallable_objキーワード引数が削除されました。ModelAdminメソッドのallow_tags属性のサポートが削除されました。SyndicationFeed.add_item()のenclosureキーワード引数が削除されました。django.template.base.Originからdjango.template.loader.LoaderOriginおよびdjango.template.base.StringOriginエイリアスが削除されました。
以下の変更の詳細については、1.10 で非推奨になった機能 を見てください。
makemigrations --exitオプションが削除されました。逆参照外部キー (reverse foreign key) または many-to-many リレーションに対する値の直接代入のサポートが削除されました。
django.contrib.gis.geos.GEOSGeometryのget_srid()とset_srid()メソッドが削除されました。django.contrib.gis.geos.Pointのget_x()、set_x()、get_y()、set_y()、get_z()、set_z()の各メソッドが削除されました。django.contrib.gis.geos.Pointのget_coords()とset_coords()メソッドが削除されました。django.contrib.gis.geos.MultiPolygonのcascaded_unionプロパティが削除されました。django.utils.functional.allow_lazy()が削除されました。shell --plainオプションが削除されました。django.core.urlresolversモジュールが削除され、新しい場所django.urlsに移動しました。CommaSeparatedIntegerFieldが削除されました。ただし、履歴マイグレーション (historical migrations) のみ、継続してサポートします。テンプレートの
Context.has_key()メソッドが削除されました。django.core.files.storage.Storage.accessed_time()、created_time()、およびmodified_time()メソッドのサポートが削除されました。default_related_nameが設定されていた場合に、モデル名をクエリー・ルックアップとして使用する機能のサポートが削除されました。MySQL の
__searchルックアップが削除されました。_apply_rel_filters()メソッドを持たない自作の related manager class をサポートするための shim が削除されました。User.is_authenticated()とUser.is_anonymous()をプロパティではなくメソッドをして使う機能はサポートされなくなりました。Model._meta.virtual_fields属性が削除されました。Field.contribute_to_class()のvirtual_onlyキーワード引数と、Model._meta.add_field()のvirtualキーワード引数が削除されました。javascript_catalog()とjson_catalog()ビューが削除されました。django.contrib.gis.utils.precision_wkt()が削除されました。マルチテーブル継承において、
OneToOneFieldを暗黙的にparent_linkに変換する機能を削除しました。Widget._format_value()のサポートが削除されました。FileFieldのget_directory_name()およびget_filename()メソッドが削除されました。mark_for_escaping()関数と、この関数を使用するクラスEscapeData、EscapeBytes、EscapeText、EscapeString、およびEscapeUnicodeが削除されました。escapeフィルタが新らしくdjango.utils.html.conditional_escape()を使用するようになりました。Manager.use_for_related_fieldsが削除されました。Model
Managerinheritance follows MRO inheritance rules. The requirement to useMeta.manager_inheritance_from_futureto opt-in to the behavior is removed.settings.MIDDLEWARE_CLASSESを使用した古いスタイルのミドルウェアのサポートが削除されました。