summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2021-04-08 11:40:16 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-08 13:44:21 +0200
commit49e618f4af422d0c8828775ca7a0bbd48288a585 (patch)
tree3dc7f166ecab0a0688825f6e958d0f2acb127fd8 /docs
parent55da04488e0998df15d911528445a077e6fb4e0f (diff)
[3.2.x] Fixed #32620 -- Allowed subclasses of Big/SmallAutoField for DEFAULT_AUTO_FIELD.
Backport of 45a58c31e64dbfdecab1178b1d00a3803a90ea2d from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.2.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.2.1.txt b/docs/releases/3.2.1.txt
index d303b46d4d..e8361e7370 100644
--- a/docs/releases/3.2.1.txt
+++ b/docs/releases/3.2.1.txt
@@ -10,3 +10,7 @@ Bugfixes
========
* Corrected detection of GDAL 3.2 on Windows (:ticket:`32544`).
+
+* Fixed a bug in Django 3.2 where subclasses of ``BigAutoField`` and
+ ``SmallAutoField`` were not allowed for the :setting:`DEFAULT_AUTO_FIELD`
+ setting (:ticket:`32620`).