summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-11 09:57:44 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-18 22:12:40 +0200
commit295467c04ab4c26a1a9d3798b1e941003fa116cf (patch)
treeeac57d86bd2c1664b63d17a4325cfffbf720ae44 /docs/howto
parent590a31eb105292510ce94adebc85d691b30f49ca (diff)
Removed versionadded/changed annotations for 4.2.
This also removes remaining versionadded/changed annotations for older versions.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/custom-file-storage.txt2
-rw-r--r--docs/howto/error-reporting.txt4
-rw-r--r--docs/howto/static-files/deployment.txt4
3 files changed, 0 insertions, 10 deletions
diff --git a/docs/howto/custom-file-storage.txt b/docs/howto/custom-file-storage.txt
index 4e51548bc7..b7bd22d9c1 100644
--- a/docs/howto/custom-file-storage.txt
+++ b/docs/howto/custom-file-storage.txt
@@ -125,8 +125,6 @@ obtain an alternative name.
Use your custom storage engine
==============================
-.. versionadded:: 4.2
-
The first step to using your custom storage with Django is to tell Django about
the file storage backend you'll be using. This is done using the
:setting:`STORAGES` setting. This setting maps storage aliases, which are a way
diff --git a/docs/howto/error-reporting.txt b/docs/howto/error-reporting.txt
index 875e56a51d..74e11a6951 100644
--- a/docs/howto/error-reporting.txt
+++ b/docs/howto/error-reporting.txt
@@ -306,10 +306,6 @@ following attributes and methods:
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)
Returns ``True`` to activate the filtering in
diff --git a/docs/howto/static-files/deployment.txt b/docs/howto/static-files/deployment.txt
index 67ecf59a71..d6d1158249 100644
--- a/docs/howto/static-files/deployment.txt
+++ b/docs/howto/static-files/deployment.txt
@@ -106,10 +106,6 @@ provide storage backends for many common file storage APIs. A good starting
point is the `overview at djangopackages.org
<https://djangopackages.org/grids/g/storage-backends/>`_.
-.. versionchanged:: 4.2
-
- The :setting:`STORAGES` setting was added.
-
Learn more
==========