summaryrefslogtreecommitdiff
path: root/docs
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:44:17 +0200
commitb88ffef7eac277dd48f7947b9352e8c8e8d42159 (patch)
tree4fbc1d3b0774c55ea1246a4b0b695f58e784de3d /docs
parent53c83387cfb840d3b222a23a804bf9cb458bb3d0 (diff)
[2.2.x] Fixed #30330 -- Fixed setting of primary key to None during fast-delete.
Regression in bc7dd8490b882b2cefdc7faf431dc64c532b79c9. Backport of afc708cf6d047b35db57bd7c55baeffef459d279 from master
Diffstat (limited to 'docs')
-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`).