1
0
mirror of https://github.com/django/django.git synced 2025-02-08 16:35:17 +00:00
django/docs/releases/3.2.3.txt
Nick Pope 1061f52436 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.
2021-05-12 12:21:57 +02:00

13 lines
235 B
Plaintext

==========================
Django 3.2.3 release notes
==========================
*Expected June 1, 2021*
Django 3.2.3 fixes several bugs in 3.2.2.
Bugfixes
========
* Prepared for ``mysqlclient`` > 2.0.3 support (:ticket:`32732`).