File tree 1 file changed +7
-1
lines changed 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,18 @@ Release date: TBD
7
7
Backward incompatible changes:
8
8
9
9
* Python 2.7 and 3.5 are not supported.
10
- * old_password (used by MySQL older than 4.1) is not supported.
10
+ * `` connect() `` uses keyword-only arguments. User must use keyword argument.
11
+ * `` connect() `` kwargs `` db `` and `` passwd `` are now deprecated; Use `` database `` and `` password `` instead.
12
+ * old_password authentication method (used by MySQL older than 4.1) is not supported.
13
+ * MySQL 5.5 and MariaDB 5.5 are not officially supported, although it may still works.
14
+ * Removed `` escape_dict `` , `` escape_sequence `` , and `` escape_string `` from `` pymysql ``
15
+ module. They are still in `` pymysql.converters `` .
11
16
12
17
Other changes:
13
18
14
19
* Connection supports context manager API. `` __exit__ `` closes the connection. (#886 )
15
20
* Add MySQL Connector/Python compatible TLS options (#903 )
21
+ * Major code cleanup; PyMySQL now uses black and flake8.
16
22
17
23
18
24
## v0.10.1
You can’t perform that action at this time.
0 commit comments