summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-06-04 20:49:07 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-06-04 20:49:40 +0200
commit87a4cd559bc47a53c717a45a8b0a181681fe8a32 (patch)
tree75ef2bc7dbaec6b4eae27344ba093164b341d5fe /docs
parent66d9fa43718461de1d083650a4fee1b16ba80f91 (diff)
[4.2.x] 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. Backport of f9936deed1ff13b20e18bd9ca2b0750b52706b6c from main
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`).