summaryrefslogtreecommitdiff
path: root/docs/howto/error-reporting.txt
diff options
context:
space:
mode:
authorTobias Bengfort <tobias.bengfort@posteo.de>2022-10-26 12:30:44 +0200
committerCarlton Gibson <carlton@noumenal.es>2022-10-26 14:39:58 +0200
commit350455b666a289d336fca770578887ce51f1aebe (patch)
tree0b9811c660d1d73a2894fd145ac304bc4ba54b49 /docs/howto/error-reporting.txt
parentb440493eaad28f093278a7a6981386dd5a989a74 (diff)
Fixed #33606 -- Cleansed sessionid cookie in error reports.
Co-authored-by: Simon Charette <charette.s@gmail.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 6cd69d5857..b808a0a981 100644
--- a/docs/howto/error-reporting.txt
+++ b/docs/howto/error-reporting.txt
@@ -281,7 +281,11 @@ following attributes and methods:
import re
- re.compile(r'API|TOKEN|KEY|SECRET|PASS|SIGNATURE', flags=re.IGNORECASE)
+ re.compile(r'API|TOKEN|KEY|SECRET|PASS|SIGNATURE|HTTP_COOKIE', flags=re.IGNORECASE)
+
+ .. versionchanged:: 4.2
+
+ ``HTTP_COOKIE`` was added.
.. method:: is_active(request)