summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/checks.txt3
-rw-r--r--docs/releases/4.1.2.txt3
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 233d999fe7..2182cb47bf 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -550,6 +550,9 @@ configured:
:setting:`OPTIONS <TEMPLATES-OPTIONS>` must be a string but got: ``{value}``
(``{type}``).
* **templates.E003**:``<name>`` is used for multiple template tag modules:
+ ``<module list>``. *This check was changed to* ``templates.W003`` *in Django
+ 4.1.2*.
+* **templates.W003**:``<name>`` is used for multiple template tag modules:
``<module list>``.
Translation
diff --git a/docs/releases/4.1.2.txt b/docs/releases/4.1.2.txt
index 498c645920..1dddbf44a0 100644
--- a/docs/releases/4.1.2.txt
+++ b/docs/releases/4.1.2.txt
@@ -47,3 +47,6 @@ Bugfixes
* Reverted caching related managers for ``ForeignKey``, ``ManyToManyField``,
and ``GenericRelation`` that caused the incorrect refreshing of related
objects (:ticket:`33984`).
+
+* Relaxed the system check added in Django 4.1 for the same name used for
+ multiple template tag modules to a warning (:ticket:`32987`).