1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #34177 -- Fixed QuerySet.bulk_create() crash on "pk" in unique_fields.

Bug in 0f6946495a.
This commit is contained in:
Mariusz Felisiak
2022-11-22 14:26:23 +01:00
committed by GitHub
parent 744a1af7f9
commit 7d5329852f
3 changed files with 43 additions and 5 deletions

View File

@@ -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`).