summaryrefslogtreecommitdiff
path: root/docs/howto/error-reporting.txt
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2024-07-31 11:44:49 -0300
committernessita <124304+nessita@users.noreply.github.com>2024-08-01 15:02:00 -0300
commitaa9079505082d92d4ee5dc6a4adca056422422ed (patch)
treea3c75398b866679d69a06c4acc1297ad22338d79 /docs/howto/error-reporting.txt
parent615c80aba654fc1b897424ad69da29855d179e4f (diff)
Fixed #35646 -- Extended SafeExceptionReporterFilter.hidden_settings to treat `AUTH` as a sensitive match.
Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
Diffstat (limited to 'docs/howto/error-reporting.txt')
-rw-r--r--docs/howto/error-reporting.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/howto/error-reporting.txt b/docs/howto/error-reporting.txt
index 61450dfe7a..17ba14c35c 100644
--- a/docs/howto/error-reporting.txt
+++ b/docs/howto/error-reporting.txt
@@ -282,7 +282,11 @@ following attributes and methods:
import re
- re.compile(r"API|TOKEN|KEY|SECRET|PASS|SIGNATURE|HTTP_COOKIE", flags=re.IGNORECASE)
+ re.compile(r"API|AUTH|TOKEN|KEY|SECRET|PASS|SIGNATURE|HTTP_COOKIE", flags=re.IGNORECASE)
+
+ .. versionchanged:: 5.2
+
+ The term ``AUTH`` was added.
.. method:: is_active(request)