This commit is contained in:
Tim Schilling 2025-11-17 13:45:10 +01:00 committed by GitHub
commit 5d6bbe8807
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,6 +12,11 @@ version has several benefits:
* Upgrading as each new Django release is available makes future upgrades less * Upgrading as each new Django release is available makes future upgrades less
painful by keeping your code base up to date. painful by keeping your code base up to date.
.. admonition:: Tools to help with version upgrades
Django has a vibrant ecosystem. There are automated upgrade helpers
highlighted on the `Community Ecosystem`_ page.
Here are some things to consider to help make your upgrade process as smooth as Here are some things to consider to help make your upgrade process as smooth as
possible. possible.
@ -131,3 +136,5 @@ pickle-compatible across Django versions. A past instance of incompatibility
was caching pickled :class:`~django.http.HttpResponse` objects, either directly was caching pickled :class:`~django.http.HttpResponse` objects, either directly
or indirectly via the :func:`~django.views.decorators.cache.cache_page` or indirectly via the :func:`~django.views.decorators.cache.cache_page`
decorator. decorator.
.. _Community Ecosystem: https://www.djangoproject.com/community/ecosystem/#upgrade-utilities