summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-11 13:04:32 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-11 13:04:55 +0200
commit97e8a2afb127fad8c71d084954a6bc38661375dd (patch)
tree895dfc852f076518a3c72b4e56c73543415074eb /docs
parent39cb3b08bc730e5ff8a10c2f2db1ac7458c4213f (diff)
[4.2.x] Fixed #34821 -- Prevented DEFAULT_FILE_STORAGE/STATICFILES_STORAGE settings from mutating the main STORAGES.
Regression in 6b965c600054f970bdf94017ecf2e0e6e0a4326b. Backport of a7c73b944f51d6c92ec876fd7e0a171e7c01657d from main
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`).