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
10 changes: 10 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
wolfSSL-py Release 5.9.2 (Jul 15, 2026)
============================================
* Fix SSLSocket.write() corrupting bytes-like data such as bytearray/memoryview
* Return None instead of raising from getpeercert() when the peer sends no certificate
* Require verify_mode=CERT_REQUIRED when enabling check_hostname
* Map non-blocking WANT_READ/WANT_WRITE to SSLWantReadError/SSLWantWriteError
* FFI and build fixes
* Fenrir fixes
* Update wolfSSL to version 5.9.2

wolfSSL-py Release 5.8.4 (Dec 29, 2025)
============================================
* Fix an issue which allowed a client without a cert to connect despite setting verify_mode to CERT_REQUIRED (CVE-2025-15346):
Expand Down
2 changes: 1 addition & 1 deletion lib/wolfssl
Submodule wolfssl updated 1917 files
4 changes: 2 additions & 2 deletions wolfssl/_version.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# When bumping the C library version, reset the POST count to 0

__wolfssl_version__ = "v5.8.4-stable"
__wolfssl_version__ = "v5.9.2-stable"

# We're using implicit post releases [PEP 440] to bump package version
# while maintaining the C library version intact for better reference.
# https://www.python.org/dev/peps/pep-0440/#implicit-post-releases
#
# MAJOR.MINOR.BUILD-POST

__version__ = "5.8.4-0"
__version__ = "5.9.2-0"
Loading