summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-10-03 10:52:21 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-10-03 10:52:47 +0200
commit7843c43c49d3845a1cbebfaaf71f2f0c2a9d8fce (patch)
treeed9368355343aea5551e6f8856e83cc810eb7626 /docs
parentf78314875fee68e4f10aca2a89bd9914d5be5bfb (diff)
[4.1.x] Refs #32987 -- Relaxed system check for template tag modules with the same name by turning into a warning.
Thanks Claude Paroz for the report. Regression in 004b4620f6f4ad87261e149898940f2dcd5757ef. Backport of f71b0cf769d9ac582ee3d1a8c33d73dad3a770da from main
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`).