Skip to content

v2.2.0rc1

Pre-release
Pre-release
Compare
Choose a tag to compare
@methane methane released this 19 May 04:36
· 40 commits to main since this release
640fe6d

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: v2.1.1...v2.2.0rc1