summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNick Pope <nick@nickpope.me.uk>2021-05-10 21:32:10 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-05-12 12:21:57 +0200
commit1061f5243646b4c9b8a758f8a36c9e2ccdded1cf (patch)
tree8e28055d02a8a37a6c73abcbc0ac26526584c06b /docs
parentd06c5b358149c02a62da8a5469264d05f29ac659 (diff)
Fixed #32732 -- Removed usage of deprecated 'db' and 'passwd' connection options in MySQL backend.
The 'db' and 'passwd' connection options have been deprecated, use 'database' and 'password' instead (available since mysqlclient >= 1.3.8). This also allows the 'database' option in DATABASES['OPTIONS'] on MySQL.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.2.3.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/releases/3.2.3.txt b/docs/releases/3.2.3.txt
index 9b1d9521d1..14a143b203 100644
--- a/docs/releases/3.2.3.txt
+++ b/docs/releases/3.2.3.txt
@@ -9,4 +9,4 @@ Django 3.2.3 fixes several bugs in 3.2.2.
Bugfixes
========
-* ...
+* Prepared for ``mysqlclient`` > 2.0.3 support (:ticket:`32732`).