Mysqlclient Python Versions Save

MySQL database connector for Python (with Python 3 support)

v2.2.4

2 weeks ago

v2.2.3

1 month ago

What's Changed

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.2.2...v2.2.3

v2.2.2

1 month ago

What's Changed

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.2.1...v2.2.2

v2.2.1

3 months ago

What's Changed

  • Connection.ping() avoid using MYSQL_OPT_RECONNECT option until reconnect=True is specified. MySQL 8.0.33 start showing warning when the option is used. (#664)
  • Windows: Update MariaDB Connector/C to 3.3.8. (#665)
  • Windows: Build wheels for Python 3.12 (#644)

Merged pull requests

New Contributors

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.2.0...v2.2.1

v2.2.0

9 months ago

What's Changed

mysqlclient uses pkg-config since v2.2. You need to configure pkg-config, or manually set envvars. READ the manual

New Contributors

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.1.1...v2.2.0

v2.2.0rc1

10 months ago

Important changes

v2.2.0 uses pkg-config instead of mysql_config. You need to install pkg-config to build. You can configure cflags and ldflags manually by setting MYSQLCLIENT_CFLAGS and MYSQLCLIENT_LDFLAGS too.

Cursor.mogrify() is added.

Cursor.executemany implementation now uses mogrify(). Sequencee of scalar value (e.g. executemany("INSERT INTO t (data) VALUES (%s)", [1, 2, 3]) is no more valid args. You need to use sequence of tuple (e.g. [(1,), (2,), (3,)]) instead.

What's Changed

New Contributors

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.1.1...v2.2.0rc1

v2.1.1

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.1.0...v2.1.1

v2.1.0

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.0.3...v2.1.0

v2.1.0rc1

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.0.3...v2.1.0rc1

v2.0.3

2 years ago