* Fixed multithread safety issue in fetching row. * Removed obsolete members from Cursor. (e.g. `messages`, `_warnings`, `_last_executed`)
======================
2.0.0
======================
Release: 2020-07-02
* Dropped Python 2 support * Dropped Django 1.11 support * Add context manager interface to Connection which closes the connection on ``__exit__``. * Add ``ssl_mode`` option.
======================
1.4.6
======================
Release: 2019-11-21
* The ``cp1252`` encoding is used when charset is "latin1". (390)
======================
1.4.5
======================
Release: 2019-11-06
* The ``auth_plugin`` option is added. (389)
======================
1.4.4
======================
Release: 2019-08-12
* ``charset`` option is passed to ``mysql_options(mysql, MYSQL_SET_CHARSET_NAME, charset)`` before ``mysql_real_connect`` is called. This avoid extra ``SET NAMES <charset>`` query when creating connection.
======================
1.4.3
======================
Release: 2019-08-09
* ``--static`` build supports ``libmariadbclient.a`` * Try ``mariadb_config`` when ``mysql_config`` is not found * Fixed warning happened in Python 3.8 (359) * Fixed ``from MySQLdb import *``, while I don't recommend it. (369) * Fixed SEGV ``MySQLdb.escape_string("1")`` when libmariadb is used and no connection is created. (367) * Fixed many circular references are created in ``Cursor.executemany()``. (375)