summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJames Ostrander <jlost@umich.edu>2024-04-19 14:44:54 -0400
committernessita <124304+nessita@users.noreply.github.com>2024-04-22 17:05:05 -0300
commit36b7024b7fc881b319a2b67876e4f72ba680d6a8 (patch)
tree4f4dff85991187889b850a7d5871ba8e921a25e3 /docs
parent53719d6b5b745dd99b1ab9315afb242f706ebbf1 (diff)
Fixed #35392, Refs #34331 -- Allowed importing aprefetch_related_objects from django.db.models.
Thanks James Ostrander for the report and fix, and to Tim Graham and Mariusz Felisiak for the reviews.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.5.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/5.0.5.txt b/docs/releases/5.0.5.txt
index 788753c826..8836b86131 100644
--- a/docs/releases/5.0.5.txt
+++ b/docs/releases/5.0.5.txt
@@ -20,3 +20,6 @@ Bugfixes
* Fixed a bug in Django 5.0 that caused a crash when applying migrations
including alterations to ``GeneratedField`` such as setting ``db_index=True``
on SQLite (:ticket:`35373`).
+
+* Allowed importing ``aprefetch_related_objects`` from ``django.db.models``
+ (:ticket:`35392`).