15
0

- update to 2.2.0:

* Use ``pkg-config`` instead of ``mysql_config`` (#586)
  * Raise ProgrammingError on -inf (#557)
  * Raise IntegrityError for ER_BAD_NULL. (#579)
  * Windows: Use MariaDB Connector/C 3.3.4 (#585)
  * Use pkg-config instead of mysql_config (#586)
  * Add collation option (#564)
  * Drop Python 3.7 support (#593)
  * Use pyproject.toml for build (#598)
  * Add Cursor.mogrify (#477)
  * Partial support of ssl_mode option with mariadbclient (#475)
  * Discard remaining results without creating Python objects
  * Fix executemany with binary prefix (#605)
  * Support multibyte utf8 return values with new versions of MariaDB.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mysqlclient?expand=0&rev=37
This commit is contained in:
2023-11-27 19:39:22 +00:00
committed by Git OBS Bridge
parent f2dd54efe9
commit 7b9d943cac
4 changed files with 22 additions and 6 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Mon Nov 27 19:37:59 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 2.2.0:
* Use ``pkg-config`` instead of ``mysql_config`` (#586)
* Raise ProgrammingError on -inf (#557)
* Raise IntegrityError for ER_BAD_NULL. (#579)
* Windows: Use MariaDB Connector/C 3.3.4 (#585)
* Use pkg-config instead of mysql_config (#586)
* Add collation option (#564)
* Drop Python 3.7 support (#593)
* Use pyproject.toml for build (#598)
* Add Cursor.mogrify (#477)
* Partial support of ssl_mode option with mariadbclient (#475)
* Discard remaining results without creating Python objects
* Fix executemany with binary prefix (#605)
-------------------------------------------------------------------
Wed Jul 26 07:14:20 UTC 2023 - Bernhard Wiedemann <bwiedemann@suse.com>
@@ -50,7 +67,7 @@ Thu Mar 24 13:10:53 UTC 2022 - pgajdos@suse.com
Fri Sep 10 07:48:36 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>
- Add liberally-accept-charsets.patch:
* Support multibyte utf8 return values with new versions of MariaDB.
* Support multibyte utf8 return values with new versions of MariaDB.
-------------------------------------------------------------------
Tue Mar 16 20:42:57 UTC 2021 - Matthias Fehring <buschmann23@opensuse.org>