Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Oct 23, 2024
1 parent 3491641 commit be00a60
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.10.0

* Added support for macOS 10.13 and earlier using the `SecTrustEvaluate` API. Note that
this API doesn't return fine-grained errors like `SecTrustEvaluateWithError` (requires macOS 10.14+).
* Added `SSLContext.set_default_verify_paths()` method.
* Changed method for disabling hostname verification for macOS and Windows.
Previously would ignore hostname verification errors if `SSLContext.check_hostname` was `False`.
Now for both macOS and Windows the certificate verification policy is configured
to not check certificate hostname. This should have no effect on users.

# 0.9.2

* Fixed an issue where implementations supporting Python 3.10 but not the peer certificate chain APIs
Expand Down
2 changes: 1 addition & 1 deletion src/truststore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
del _api, _sys # type: ignore[name-defined] # noqa: F821

__all__ = ["SSLContext", "inject_into_ssl", "extract_from_ssl"]
__version__ = "0.9.2"
__version__ = "0.10.0"

0 comments on commit be00a60

Please sign in to comment.