summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/error-reporting.txt6
-rw-r--r--docs/releases/4.2.txt3
2 files changed, 8 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)
diff --git a/docs/releases/4.2.txt b/docs/releases/4.2.txt
index 9c6526a3a0..58e4bd12ac 100644
--- a/docs/releases/4.2.txt
+++ b/docs/releases/4.2.txt
@@ -176,6 +176,9 @@ Forms
* :func:`~django.forms.models.modelform_factory` now respects the
``formfield_callback`` attribute of the ``form``’s ``Meta``.
+* Session cookies are now treated as credentials and therefore hidden and
+ replaced with stars (``**********``) in error reports.
+
Generic Views
~~~~~~~~~~~~~