summaryrefslogtreecommitdiff
path: root/docs/releases/5.1.7.txt
diff options
context:
space:
mode:
authorGaƫl Utard <gael.utard@eedf.fr>2025-02-15 15:55:33 +0100
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-02-17 14:01:00 +0100
commit0d1dd6bba0c18b7feb6caa5cbd8df80fbac54afd (patch)
tree2105176ab2903fe8a7dfc5cef82d8340f2f96c89 /docs/releases/5.1.7.txt
parent2fa1f99ab49ae5b6bc0a15ed9398d6fa2996f02a (diff)
Fixed #36191 -- Truncated the overwritten file content in FileSystemStorage.
Diffstat (limited to 'docs/releases/5.1.7.txt')
-rw-r--r--docs/releases/5.1.7.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.1.7.txt b/docs/releases/5.1.7.txt
index e184da6aca..deda4f2f92 100644
--- a/docs/releases/5.1.7.txt
+++ b/docs/releases/5.1.7.txt
@@ -12,3 +12,7 @@ Bugfixes
* Fixed a bug in Django 5.1 where the ``{% querystring %}`` template tag
returned an empty string rather than ``"?"`` when all parameters had been
removed from the query string (:ticket:`36182`).
+
+* Fixed a bug in Django 5.1 where ``FileSystemStorage``, with
+ ``allow_overwrite`` set to ``True``, did not truncate the overwritten file
+ content (:ticket:`36191`).