summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-11-22 14:26:23 +0100
committerGitHub <noreply@github.com>2022-11-22 14:26:23 +0100
commit7d5329852f19c6ae78c6f6f3d3e41835377bf295 (patch)
tree549eeb9d1f63184cf7db1fed67253558076a706e /docs
parent744a1af7f943106e30d538e6ace55c2c66ccd791 (diff)
Fixed #34177 -- Fixed QuerySet.bulk_create() crash on "pk" in unique_fields.
Bug in 0f6946495a8ec955b471ca1baaf408ceb53d4796.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.1.4.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/4.1.4.txt b/docs/releases/4.1.4.txt
index c8f97b5278..7cdd2521ea 100644
--- a/docs/releases/4.1.4.txt
+++ b/docs/releases/4.1.4.txt
@@ -20,3 +20,6 @@ Bugfixes
* Fixed a bug in Django 4.1 that caused a crash of ``acreate()``,
``aget_or_create()``, and ``aupdate_or_create()`` asynchronous methods for
related managers (:ticket:`34139`).
+
+* Fixed a bug in Django 4.1 that caused a crash of ``QuerySet.bulk_create()``
+ with ``"pk"`` in ``unique_fields`` (:ticket:`34177`).