summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-06-04 20:49:07 +0200
committerGitHub <noreply@github.com>2023-06-04 20:49:07 +0200
commitf9936deed1ff13b20e18bd9ca2b0750b52706b6c (patch)
treeb77d26889c2f7092261625f7e7fbefeb9b5bd7a2 /docs
parent1136aa5005f0ae70fea12796b7e37d6f027b9263 (diff)
Fixed #34620 -- Fixed serialization crash on m2m fields without natural keys when base querysets use select_related().
Regression in 19e0587ee596debf77540d6a08ccb6507e60b6a7. Thanks Martin Svoboda for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.2.2.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.2.2.txt b/docs/releases/4.2.2.txt
index 1bada4073b..9b7d6c1b66 100644
--- a/docs/releases/4.2.2.txt
+++ b/docs/releases/4.2.2.txt
@@ -43,3 +43,7 @@ Bugfixes
* Fixed a regression in Django 4.2 that caused a crash of querysets on SQLite
when filtering on ``DecimalField`` against values outside of the defined
range (:ticket:`34590`).
+
+* Fixed a regression in Django 4.2 that caused a serialization crash on a
+ ``ManyToManyField`` without a natural key when its ``Manager``’s base
+ ``QuerySet`` used ``select_related()`` (:ticket:`34620`).