A monkey-patching system to ease the transition between Django versions.
Project description
Compatibility Matters
DCP is a “magic” package which adds backward/forward compatibility patches to Django, so that your app ecosystem doesn’t get broken by trivial changes made to the core of the framework.
It injects compatibility shims like function/attribute aliases, restores data structures which were replaced by stdlib ones, extends the behaviour of callables (eg. referring to a view by object, by name, or by dotted path), and can even preserve deprecated module as “import aliases” (ex. keep importing from “django.contrib.comments” instead of the now external “django_comments”).
This allows to you upgrade your dependencies one at a time, to fork/patch them when you have a proper opportunity, and most importantly to not get stuck, when deadlines are tight and your dependencies suddenly have conflicting requirements. DCP will however not provide patches for changes related to security (permissions, html escaping, cookie parameters…), because of the risks involved. Also, changes that only impact project-level code (eg. settings module) will often not get patches, since it’s easier and cleaner to simply update your project code.
Technically, DCP manages a set of “fixers”, small utilities which advertise the change that they make, the versions of Django that they support, and which monkey-patch the Django framework on demand. By applying these fixers in a proper order (sometimes before, sometimes after django.setup()), DCP can work around multiple breaking changes which target the same part of the code (eg. a tag library being added and then removed).
Note that DCP is aimed at project maintainers. If you are developing a reusable Django application, you can’t expect all your users to integrate DCP as well. In this case, to support a wide range of Django versions, you should rather use a toolkit like Django-compat. You may think of DCP as a “runtime 2to3 for Django’, whereas Django-Compat is rather a “six module for Django”.
Feel free to contribute new fixers, for backwards or forwards compatibility, depending on the compatibility troubles you encounter on your projects (see CONTRIBUTE.rst)
1 How to install
Django-compat-patcher is currently tested on python2.7/3.4/3.5/3.6/3.7, with Django versions 1.8/1.9/1.10/1.11/2.0/2.1/2.2, where these combinations make sense (eg. Django2+ dropped support for Python2).
Add django-compat-patcher
to your pip requirements, install it, and then activate it with:
import django_compat_patcher django_compat_patcher.patch()
This code should be placed before any use of Django (eg. in your manage.py
or your wsgi.py
script), but after the DJANGO_SETTINGS_MODULE
environment variable has been set.
In particular, some fixers only work if they are applied before the loading of INSTALLED_APPS (so before django.setup() gets called).
The Django settings of your project are not altered by compatibility shims, so they should be kept up-to-date with your installed Django version (eg. now use TEMPLATES, MIDDLEWARE, and not deprecated settings…). In particular, always put real package names in INSTALLED_APPS, not their potential “import aliases”.
2 Django settings
By default, DCP emits logs and warnings when patching the code, and applies all “relevant” fixers, i.e all that support your currently installed django version.
This behaviour can be customized via the Django settings below.
Note however, that some fixers depend on other fixers, so it’s advised to be consistent and always include contiguous series of fixers around your current version (ex. if you use Django1.10, apply fixers from Django1.8 up to Django1.10, or up to Django2.X if yo want some forward compatibility as well). DCP filters out, by himself, fixers which are useless for your Django version.
“Families” identify the Django version where the breaking change was introduced (for backwards compatibility fixers), or where the new feature was introduced (for forwards compatibility fixers). It is not related to the appearance of corresponding PendingDeprecationWarnings in the framework.
You may provide a “settings” dictionary directly to the patch() method, in which case your DCP django settings will be completely ignored (only library defaults will be used as fallbacks):
django_compat_patcher.patch(settings=dict(DCP_INCLUDE_FIXER_IDS=["my_fixer_id"]))
Note that exclusion filters have precedence over inclusion ones.
2.1 DCP_INCLUDE_FIXER_IDS
List of fixer identifiers to include. If "*"
is used, then all fixers are included.
"*"
"*"
DCP_INCLUDE_FIXER_IDS = ['fix_deletion_templatetags_future_url']
2.2 DCP_INCLUDE_FIXER_FAMILIES
List of fixer families to include. If "*"
is used, then all families are included.
Note: If you want to include only specific families, remember to replace the value "*" from :code:`DCP_INCLUDE_FIXER_IDS
by, for example, an empty list.
[]
"*"
("djangoX.Y")
where X
and Y
are respectively the major and minor versionsDCP_INCLUDE_FIXER_FAMILIES = ["django1.9"]
2.3 DCP_EXCLUDE_FIXER_IDS
List of fixer identifiers to exclude. If "*"
is used, then all fixers are excluded.
Note: The “EXCLUDE” filters are applied AFTER the “INCLUDE” ones, and so take precedence.
[]
"*"
DCP_EXCLUDE_FIXER_IDS = ['fix_deletion_templatetags_future_url']
2.4 DCP_EXCLUDE_FIXER_FAMILIES
List of fixer families to exclude. If "*"
is used, then all families are excluded.
Note: The “EXCLUDE” filters are applied AFTER the “INCLUDE” ones, and so take precedence.
[]
"*"
("djangoX.Y")
where X
and Y
are respectively the major and minor versionsDCP_EXCLUDE_FIXER_FAMILIES = ["django1.6", "django1.9"]
2.5 DCP_PATCH_INJECTED_OBJECTS
If True, the patcher adds a __dcp_injected__ = True
attribute to the injected objects (callables, classes, modules, attributes…), when possible, to differentiate them from original ones.
True
DCP_PATCH_INJECTED_OBJECTS = False
2.6 DCP_ENABLE_WARNINGS
If True, compatibility shims emit python warnings (warnings.warn(...)
) when they are imported/used,
to help detect deprecated code. These warnings are mostly subclasses of DeprecationWarning
(ex. RemovedInDjango19Warning
).
Once emitted, the handling of warnings depends on your setup (python command line flags, logging config…), see the official doc on warnings for more information.
True
DCP_ENABLE_WARNINGS = False
2.7 DCP_LOGGING_LEVEL
The patch() system of DCP can output to STDERR which fixers are getting applied, and provide debug information (ex. for which reason a specific fixer was discarded).
This setting sets the logging level of that information stream, which is typically only viewed at django startup. A value None
disables DCP logging entirely.
Note that DCP does NOT actually use stdlib loggers, because it mostly performs operations before Django logging has been setup (ex. using the LOGGING setting), so log entries would most probably get discarded.
"INFO"
DCP_LOGGING_LEVEL = "DEBUG"
3 Table of fixers
There are currently 36 available fixers.
Fixer and its ID |
Fixer family |
Min version |
Max version |
---|---|---|---|
Preserve the request.raw_post_data alias for request.body. ( |
django1.6 |
1.6 |
|
Keep ‘django.contrib.comments’ as an import alias for the now external package ‘django_comments’ (django-contrib-comments on pypi) ; the latter must be installed separately. ( |
django1.8 |
1.8 |
|
Preserve the MergeDict util datastructure ( |
django1.9 |
1.9 |
|
Preserve the SortedDict util datastructure ( |
django1.9 |
1.9 |
|
Preserve the dictconfig util file ( |
django1.9 |
1.9 |
|
Preserve utils.functional.memoize() utility ( |
django1.9 |
1.9 |
|
Preserve the importlib util file ( |
django1.9 |
1.9 |
|
Preserve the tzinfo util file ( |
django1.9 |
1.9 |
|
Preserve the unittest util file ( |
django1.9 |
1.9 |
|
Preserve the `request.REQUEST` attribute, merging parameters from GET ( |
django1.9 |
1.9 |
|
Preserve the get_formsets method of ModelAdmin ( |
django1.9 |
1.9 |
|
Preserve the `url` tag in the `future` templatetags library. ( |
django1.9 |
1.9 |
|
Preserve the `ssi` tag in the `future` templatetags library. ( |
django1.9 |
1.9 |
|
Preserve the IPAddressField form field, now superseded by GenericIPAddressField ( |
django1.9 |
1.9 |
|
Preserve the fallback to AppCommand.handle_app() method in django management commands. ( |
django1.9 |
1.9 |
|
Preserve contrib.sites.models.RequestSite alias. ( |
django1.9 |
1.9 |
|
Preserve contrib.sites.models.get_current_site alias. ( |
django1.9 |
1.9 |
|
Put a forward compatibility import path for django.urls, which replaces django.core.urlresolvers ( |
django1.10 |
1.10 |
|
Preserve the “future” templatetags library, with its improved `firstof` and `cycle` tags. ( |
django1.10 |
1.10 |
|
Preserve the “ssi” default template tag. ( |
django1.10 |
1.10 |
|
Restore support for dotted-string view parameter in RegexURLPattern, instead passing a view object. ( |
django1.10 |
1.10 |
|
Preserve the ability to call urlresolver on dotted string view, instead of explicit view name. ( |
django1.10 |
1.10 |
|
Support passing views to url() as dotted strings instead of view objects. ( |
django1.10 |
1.10 |
|
Preserve the patterns() builder for django urls. ( |
django1.10 |
1.10 |
|
Preserve support for a single ‘=’ sign in {% if %} tag. ( |
django1.10 |
1.10 |
|
Preserve the “future” templatetags library, with its improved `firstof` and `cycle` tags. ( |
django1.11 |
1.11 |
|
Preserve RegexURLPattern and RegexURLResolver in django.urls, which disappeared due to DEP 0201. ( |
django2.0 |
2.0 |
|
Preserve django.core.urlresolvers module, now replaced by django.urls. ( |
django2.0 |
2.0 |
|
Preserve the assignment_tag() helper, superseded by simple_tag(). ( |
django2.0 |
2.0 |
|
Preserve the allow_lazy() utility, superseded by keep_lazy(). ( |
django2.0 |
2.0 |
|
Preserve the Context.has_key() utility, replaced by “in” operator use. ( |
django2.0 |
2.0 |
|
Preserve the javascript_catalog() and json_catalog() i18n views, superseded by class-based views. ( |
django2.0 |
2.0 |
|
Let “on_delete” parameter of ForeignKey and OneToOneField be optional, defaulting to CASCADE. ( |
django2.0 |
2.0 |
|
Keep accepting a 3-tuple (urlconf_module, app_name, namespace) as first argument of include(), instead of providing namespace argument directly to include() ( |
django2.0 |
2.0 |
|
Preserve django.utils.translation.string_concat(), superseded by django.utils.text.format_lazy(). ( |
django2.1 |
2.1 |
|
Restore the behaviour where the “renderer” parameter of Widget.render() may not be supported by subclasses. ( |
django2.1 |
2.1 |
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-compat-patcher-0.5.zip
.
File metadata
- Download URL: django-compat-patcher-0.5.zip
- Upload date:
- Size: 85.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.6.0 setuptools/19.2 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.4.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f897df4a7a8868d9bf9c73456f2c4328b8b9955d2f79da2ce13085f07d988ab |
|
MD5 | da2d2ba114673ef720efa7266377bd7b |
|
BLAKE2b-256 | 81ed36a1f18c4d7e1cdb1dbc25d4869f64ab0e904eb9a857159f7d50664e2ec8 |