summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-11 13:04:32 +0200
committerGitHub <noreply@github.com>2023-09-11 13:04:32 +0200
commita7c73b944f51d6c92ec876fd7e0a171e7c01657d (patch)
tree72f2b30825fed94f14b74a1d4267e1dfda352fe5 /docs
parent938170008ea48dff8f89b0839998a1eec939ddf4 (diff)
Fixed #34821 -- Prevented DEFAULT_FILE_STORAGE/STATICFILES_STORAGE settings from mutating the main STORAGES.
Regression in 6b965c600054f970bdf94017ecf2e0e6e0a4326b.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.2.6.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/4.2.6.txt b/docs/releases/4.2.6.txt
index 87bb28183e..23d5f2a04f 100644
--- a/docs/releases/4.2.6.txt
+++ b/docs/releases/4.2.6.txt
@@ -9,4 +9,6 @@ Django 4.2.6 fixes several bugs in 4.2.5.
Bugfixes
========
-* ...
+* Fixed a regression in Django 4.2.5 where overriding the deprecated
+ ``DEFAULT_FILE_STORAGE`` and ``STATICFILES_STORAGE`` settings in tests caused
+ the main ``STORAGES`` to mutate (:ticket:`34821`).