- update to 1.1.2:

* Prevent UnboundLocalError in very rare situation.
  * Close underlying `SocketIO` soon when Connection is closed
    for PyPy.
  * Fix importing PyMySQL fail on CPython 3.13 when
    `getpass.getuser()` raises OSEError.
  * Make charset name "utf8" case insensitive.
  * `Connection.kill()` uses `KILL` query instead of
    `COM_KILL`command to support MySQL 8.4.
  * Fix SSL error on CPython 3.13 caused by strict TLS default
    setting. https://github.com/PyMySQL/PyMySQL/pull/1198
  * Fix auth switch request handling.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyMySQL?expand=0&rev=46
This commit is contained in:
2025-09-29 21:07:02 +00:00
committed by Git OBS Bridge
parent 36d14f9476
commit 99f87720eb
4 changed files with 21 additions and 5 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Sep 29 21:06:17 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 1.1.2:
* Prevent UnboundLocalError in very rare situation.
* Close underlying `SocketIO` soon when Connection is closed
for PyPy.
* Fix importing PyMySQL fail on CPython 3.13 when
`getpass.getuser()` raises OSEError.
* Make charset name "utf8" case insensitive.
* `Connection.kill()` uses `KILL` query instead of
`COM_KILL`command to support MySQL 8.4.
* Fix SSL error on CPython 3.13 caused by strict TLS default
setting. https://github.com/PyMySQL/PyMySQL/pull/1198
* Fix auth switch request handling.
-------------------------------------------------------------------
Tue Apr 29 11:17:15 UTC 2025 - Dirk Müller <dmueller@suse.com>