summaryrefslogtreecommitdiff
path: root/docs/releases/2.2.1.txt
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2019-04-05 17:52:59 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-08 21:14:00 +0200
commitafc708cf6d047b35db57bd7c55baeffef459d279 (patch)
treee26df2582f3e533b011341ca749fc93e69e77d95 /docs/releases/2.2.1.txt
parent19fc6376ce67d01ca37a91ef2f55ef769f50513a (diff)
Fixed #30330 -- Fixed setting of primary key to None during fast-delete.
Regression in bc7dd8490b882b2cefdc7faf431dc64c532b79c9.
Diffstat (limited to 'docs/releases/2.2.1.txt')
-rw-r--r--docs/releases/2.2.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.2.1.txt b/docs/releases/2.2.1.txt
index f7ac012fb7..2b82a33d29 100644
--- a/docs/releases/2.2.1.txt
+++ b/docs/releases/2.2.1.txt
@@ -22,3 +22,6 @@ Bugfixes
:class:`~django.contrib.postgres.aggregates.ArrayAgg` and
:class:`~django.contrib.postgres.aggregates.StringAgg` when it contains an
expression with params (:ticket:`30332`).
+
+* Fixed a regression in Django 2.2 that caused a single instance fast-delete
+ to not set the primary key to ``None`` (:ticket:`30330`).