summaryrefslogtreecommitdiff
path: root/docs/releases
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 13:35:13 +0200
commit4318e60a8025371a6da550eecc798e32d3864f9d (patch)
tree1c7ee67b41d2c6132e22547ffb35bbde96c41b8b /docs/releases
parentcd84f7acfa65775837952bf4d1b654966be3c2cf (diff)
[3.2.x] 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. Backport of 1061f5243646b4c9b8a758f8a36c9e2ccdded1cf from main
Diffstat (limited to 'docs/releases')
-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`).