From 505e508b6a55c59860f02ab68b670d6df0e8b7cd Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Thu, 13 Nov 2025 14:31:50 -0600 Subject: [PATCH 1/2] Added community package upgrade utilities mention to docs. --- docs/howto/upgrade-version.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/howto/upgrade-version.txt b/docs/howto/upgrade-version.txt index f8e54152e0..6e5924bc50 100644 --- a/docs/howto/upgrade-version.txt +++ b/docs/howto/upgrade-version.txt @@ -12,6 +12,11 @@ version has several benefits: * Upgrading as each new Django release is available makes future upgrades less painful by keeping your code base up to date. +.. admonition:: Easier 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 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 or indirectly via the :func:`~django.views.decorators.cache.cache_page` decorator. + +.. _Community Ecosystem: https://www.djangoproject.com/community/ecosystem/#upgrade-utilities From f0381e8202fe2e24fee488a88ac0fa3fa7b8a83d Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Fri, 14 Nov 2025 05:25:24 -0600 Subject: [PATCH 2/2] Changed admonition title for upgrade utilities. --- docs/howto/upgrade-version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/upgrade-version.txt b/docs/howto/upgrade-version.txt index 6e5924bc50..7a77f3c891 100644 --- a/docs/howto/upgrade-version.txt +++ b/docs/howto/upgrade-version.txt @@ -12,7 +12,7 @@ version has several benefits: * Upgrading as each new Django release is available makes future upgrades less painful by keeping your code base up to date. -.. admonition:: Easier version upgrades! +.. admonition:: Tools to help with version upgrades Django has a vibrant ecosystem. There are automated upgrade helpers highlighted on the `Community Ecosystem`_ page.