summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-08-05 21:36:49 +0200
committerGitHub <noreply@github.com>2024-08-05 16:36:49 -0300
commit8deb6bb1fc427762d56646bf7306cbd11fb5bb68 (patch)
tree563f85226d726bda252a089ea6f0f42199beaf62 /docs
parente9e14709ffaefaf90c1b49e3d5a1c79b481df52a (diff)
Fixed #35657 -- Made FileField handle db_default values.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.8.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/5.0.8.txt b/docs/releases/5.0.8.txt
index 5cc3faec98..704ecf2c61 100644
--- a/docs/releases/5.0.8.txt
+++ b/docs/releases/5.0.8.txt
@@ -32,3 +32,6 @@ Bugfixes
* Fixed a bug in Django 5.0 which caused constraint validation to either crash
or incorrectly raise validation errors for constraints referring to fields
using ``Field.db_default`` (:ticket:`35638`).
+
+* Fixed a crash in Django 5.0 when saving a model containing a ``FileField``
+ with a ``db_default`` set (:ticket:`35657`).