summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNathaniel Conroy <nathanielaconroy@gmail.com>2023-11-26 18:36:56 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-11-27 10:35:56 +0100
commit450d518d2fe28b33a12805fcaaad53f8244bd5df (patch)
tree9872d0a394b89e8c706a912020785b88a0dae1b9 /docs
parentbac9e94ace79d79c55e94b8aba05db0d148430e2 (diff)
[4.2.x] Fixed #34992 -- Fixed DatabaseFeatures.allows_group_by_selected_pks on MariaDB with ONLY_FULL_GROUP_BY sql mode.
Regression in 041551d716b69ee7c81199eee86a2d10a72e15ab. Backport of 0257426fe1fe9d146fd5813f09d909917ff59360 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.2.8.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.2.8.txt b/docs/releases/4.2.8.txt
index 5b0b558c35..44d80060b5 100644
--- a/docs/releases/4.2.8.txt
+++ b/docs/releases/4.2.8.txt
@@ -27,3 +27,7 @@ Bugfixes
* Fixed a regression in Django 4.2 where checkboxes in the admin would be
centered on narrower screen widths (:ticket:`34994`).
+
+* Fixed a regression in Django 4.2 that caused a crash of querysets with
+ aggregations on MariaDB when the ``ONLY_FULL_GROUP_BY`` SQL mode was enabled
+ (:ticket:`34992`).