summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2024-11-30 08:03:55 +0000
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-12-02 16:01:37 +0100
commit2f6b096b83c55317c7ceef2d8d5dc3bee33293dc (patch)
tree7d17909df90c690f26dcda0eaa6b7fb0b54fd35b /docs
parent32b9e00b0c74b3af77c25215e2e2d1254b995355 (diff)
Fixed #35950 -- Restored refreshing of relations when fields deferred.
Thank you to Simon Charette and Sarah Boyce for the review. Regression in 73df8b54a2fab53bec4c7573cda5ad8c869c2fd8.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.1.4.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.1.4.txt b/docs/releases/5.1.4.txt
index 0c21d99566..44950ac76a 100644
--- a/docs/releases/5.1.4.txt
+++ b/docs/releases/5.1.4.txt
@@ -12,3 +12,7 @@ Bugfixes
* Fixed a crash in ``createsuperuser`` on Python 3.13+ caused by an unhandled
``OSError`` when the username could not be determined (:ticket:`35942`).
+
+* Fixed a regression in Django 5.1 where relational fields were not updated
+ when calling ``Model.refresh_from_db()`` on instances with deferred fields
+ (:ticket:`35950`).