Django Deprecation Timeline¶
This document outlines when various pieces of Django will be removed or altered in a backward incompatible way, following their deprecation, as per the deprecation policy. More details about each item can often be found in the release notes of two versions prior.
1.4¶
See the Django 1.2 release notes for more details on these changes.
CsrfResponseMiddlewareandCsrfMiddlewarewill be removed. Use the{% csrf_token %}template tag inside forms to enable CSRF protection.CsrfViewMiddlewareremains and is enabled by default.- The old imports for CSRF functionality (
django.contrib.csrf.*), which moved to core in 1.2, will be removed. - The
django.contrib.gis.db.backendmodule will be removed in favor of the specific backends. SMTPConnectionwill be removed in favor of a generic Email backend API.- The many to many SQL generation functions on the database backends will be removed.
- The ability to use the
DATABASE_*family of top-level settings to define database connections will be removed. - The ability to use shorthand notation to specify a database backend
(i.e.,
sqlite3instead ofdjango.db.backends.sqlite3) will be removed. - The
get_db_prep_save,get_db_prep_valueandget_db_prep_lookupmethods will have to support multiple databases. - The
Messagemodel (indjango.contrib.auth), its related manager in theUsermodel (user.message_set), and the associated methods (user.message_set.create()anduser.get_and_delete_messages()), will be removed. The messages framework should be used instead. The relatedmessagesvariable returned by the auth context processor will also be removed. Note that this means that the admin application will depend on the messages context processor. - Authentication backends will need to support the
objparameter for permission checking. Thesupports_object_permissionsattribute will no longer be checked and can be removed from custom backends. - Authentication backends will need to support the
AnonymousUserclass being passed to all methods dealing with permissions. Thesupports_anonymous_uservariable will no longer be checked and can be removed from custom backends. - The ability to specify a callable template loader rather than a
Loaderclass will be removed, as will theload_template_sourcefunctions that are included with the built in template loaders for backwards compatibility. django.utils.translation.get_date_formats()anddjango.utils.translation.get_partial_date_formats(). These functions will be removed; use the locale-awaredjango.utils.formats.get_format()to get the appropriate formats.- In
django.forms.fields, the constants:DEFAULT_DATE_INPUT_FORMATS,DEFAULT_TIME_INPUT_FORMATSandDEFAULT_DATETIME_INPUT_FORMATSwill be removed. Usedjango.utils.formats.get_format()to get the appropriate formats. - The ability to use a function-based test runners will be removed,
along with the
django.test.simple.run_tests()test runner. - The
views.feed()view andfeeds.Feedclass indjango.contrib.syndicationwill be removed. The class-based viewviews.Feedshould be used instead. django.core.context_processors.auth. This release will remove the old method in favor of the new method indjango.contrib.auth.context_processors.auth.- The
postgresqldatabase backend will be removed, use thepostgresql_psycopg2backend instead. - The
nolanguage code will be removed and has been replaced by thenblanguage code. - Authentication backends will need to define the boolean attribute
supports_inactive_useruntil version 1.5 when it will be assumed that all backends will handle inactive users. django.db.models.fields.XMLFieldwill be removed. This was deprecated as part of the 1.3 release. An accelerated deprecation schedule has been used because the field hasn’t performed any role beyond that of a simpleTextFieldsince the removal of oldforms. All uses ofXMLFieldcan be replaced withTextField.- The undocumented
mixinparameter to theopen()method ofdjango.core.files.storage.Storage(and subclasses) will be removed.
1.5¶
See the Django 1.3 release notes for more details on these changes.
- Starting Django without a
SECRET_KEYwill result in an exception rather than a DeprecationWarning. (This is accelerated from the usual deprecation path; see the Django 1.4 release notes.) - The
mod_pythonrequest handler will be removed. Themod_wsgihandler should be used instead. - The
templateattribute onResponseobjects returned by the test client will be removed. Thetemplatesattribute should be used instead. - The
django.test.simple.DjangoTestRunnerwill be removed. Instead use a unittest-native class. The features of thedjango.test.simple.DjangoTestRunner(including fail-fast and Ctrl-C test termination) can currently be provided by the unittest-nativeTextTestRunner. - The undocumented function
django.contrib.formtools.utils.security_hashwill be removed, instead usedjango.contrib.formtools.utils.form_hmac - The function-based generic view modules will be removed in favor of their class-based equivalents, outlined here.
- The
django.core.servers.basehttp.AdminMediaHandlerwill be removed. In its place usedjango.contrib.staticfiles.handlers.StaticFilesHandler. - The template tags library
adminmediaand the template tag{% admin_media_prefix %}will be removed in favor of the generic static files handling. (This is faster than the usual deprecation path; see the Django 1.4 release notes.) - The
urlandssitemplate tags will be modified so that the first argument to each tag is a template variable, not an implied string. In 1.4, this behavior is provided by a version of the tag in thefuturetemplate tag library. - The
resetandsqlresetmanagement commands will be removed. - Authentication backends will need to support an inactive user
being passed to all methods dealing with permissions.
The
supports_inactive_userattribute will no longer be checked and can be removed from custom backends. transform()will raise aGEOSExceptionwhen called on a geometry with no SRID value.django.http.CompatCookiewill be removed in favor ofdjango.http.SimpleCookie.django.core.context_processors.PermWrapperanddjango.core.context_processors.PermLookupDictwill be removed in favor of the correspondingdjango.contrib.auth.context_processors.PermWrapperanddjango.contrib.auth.context_processors.PermLookupDict, respectively.- The
MEDIA_URLorSTATIC_URLsettings will be required to end with a trailing slash to ensure there is a consistent way to combine paths in templates. django.db.models.fields.URLField.verify_existswill be removed. The feature was deprecated in 1.3.1 due to intractable security and performance issues and will follow a slightly accelerated deprecation timeframe.- Translations located under the so-called project path will be ignored during
the translation building process performed at runtime. The
LOCALE_PATHSsetting can be used for the same task by including the filesystem path to alocaledirectory containing non-app-specific translations in its value. - The Markup contrib app will no longer support versions of Python-Markdown library earlier than 2.1. An accelerated timeline was used as this was a security related deprecation.
- The
CACHE_BACKENDsetting will be removed. The cache backend(s) should be specified in theCACHESsetting.
1.6¶
See the Django 1.4 release notes for more details on these changes.
django.contrib.databrowsewill be removed.django.contrib.localflavorwill be removed following an accelerated deprecation.django.contrib.markupwill be removed following an accelerated deprecation.- The compatibility modules
django.utils.copycompatanddjango.utils.hashcompatas well as the functionsdjango.utils.itercompat.allanddjango.utils.itercompat.anywill be removed. The Python builtin versions should be used instead. - The
csrf_response_exemptandcsrf_view_exemptdecorators will be removed. Since 1.4csrf_response_exempthas been a no-op (it returns the same function), andcsrf_view_exempthas been a synonym fordjango.views.decorators.csrf.csrf_exempt, which should be used to replace it. - The
django.core.cache.backends.memcached.CacheClassbackend was split into two in Django 1.3 in order to introduce support for PyLibMC. The historicalCacheClasswill be removed in favor ofdjango.core.cache.backends.memcached.MemcachedCache. - The UK-prefixed objects of
django.contrib.localflavor.ukwill only be accessible through their GB-prefixed names (GB is the correct ISO 3166 code for United Kingdom). - The
IGNORABLE_404_STARTSandIGNORABLE_404_ENDSsettings have been superseded byIGNORABLE_404_URLSin the 1.4 release. They will be removed. - The form wizard has been refactored to use class-based views with pluggable backends in 1.4. The previous implementation will be removed.
- Legacy ways of calling
cache_page()will be removed. - The backward-compatibility shim to automatically add a debug-false
filter to the
'mail_admins'logging handler will be removed. TheLOGGINGsetting should include this filter explicitly if it is desired. - The builtin truncation functions
django.utils.text.truncate_words()anddjango.utils.text.truncate_html_words()will be removed in favor of thedjango.utils.text.Truncatorclass. - The
GeoIPclass was moved todjango.contrib.gis.geoipin 1.4 – the shortcut indjango.contrib.gis.utilswill be removed. django.conf.urls.defaultswill be removed. The functionsinclude(),patterns()andurl()plushandler404,handler500, are now available throughdjango.conf.urls.- The functions
setup_environ()andexecute_manager()will be removed fromdjango.core.management. This also means that the old (pre-1.4) style ofmanage.pyfile will no longer work. - Setting the
is_safeandneeds_autoescapeflags as attributes of template filter functions will no longer be supported. - The attribute
HttpRequest.raw_post_datawas renamed toHttpRequest.bodyin 1.4. The backward compatibility will be removed –HttpRequest.raw_post_datawill no longer work. - The value for the
post_url_continueparameter inModelAdmin.response_add()will have to be eitherNone(to redirect to the newly created object’s edit page) or a pre-formatted url. String formats, such as the previous default'../%s/', will not be accepted any more.
1.7¶
See the Django 1.5 release notes for more details on these changes.
- The module
django.utils.simplejsonwill be removed. The standard library providesjsonwhich should be used instead. - The function
django.utils.itercompat.productwill be removed. The Python builtin version should be used instead. - Auto-correction of INSTALLED_APPS and TEMPLATE_DIRS settings when they are specified as a plain string instead of a tuple will be removed and raise an exception.
- The
mimetypeargument to the__init__methods ofHttpResponse,SimpleTemplateResponse, andTemplateResponse, will be removed.content_typeshould be used instead. This also applies to therender_to_response()shortcut and the sitemamp views,index()andsitemap(). - When
HttpResponseis instantiated with an iterator, or whencontentis set to an iterator, that iterator will be immediately consumed. - The
AUTH_PROFILE_MODULEsetting, and theget_profile()method on the User model, will be removed. - The
cleanupmanagement command will be removed. It’s replaced byclearsessions. - The
daily_cleanup.pyscript will be removed. - The
depthkeyword argument will be removed fromselect_related().
2.0¶
django.views.defaults.shortcut(). This function has been moved todjango.contrib.contenttypes.views.shortcut()as part of the goal of removing alldjango.contribreferences from the core Django codebase. The old shortcut will be removed in the 2.0 release.ssiandurltemplate tags will be removed from thefuturetemplate tag library (used during the 1.3/1.4 deprecation period).