Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
======================
What's new in 2.2.6
======================

Release: 2024-11-12

* MariaDB Connector/C 3.4 and MairaDB 11.4 enabled SSL and CA verification by default.
It affected 2.2.5 windows wheel. This release disables SSL and CA verification by default. (#731)

* Add ``server_public_key_path`` option. It is needed to connect MySQL server with
``sha256_password`` or ``caching_sha2_password`` authentication plugin without
secure connection. (#744)

======================
What's new in 2.2.5
======================
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[project]
name = "mysqlclient"
# version = "2.2.0dev0"
description = "Python interface to MySQL"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
4 changes: 2 additions & 2 deletions src/MySQLdb/release.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = "Inada Naoki <songofacandy@gmail.com>"
__version__ = "2.2.5"
version_info = (2, 2, 5, "final", 0)
__version__ = "2.2.6"
version_info = (2, 2, 6, "final", 0)
Loading