Skip to content

Commit be00a60

Browse files
committed
Release 0.10.0
1 parent 3491641 commit be00a60

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.10.0
2+
3+
* Added support for macOS 10.13 and earlier using the `SecTrustEvaluate` API. Note that
4+
this API doesn't return fine-grained errors like `SecTrustEvaluateWithError` (requires macOS 10.14+).
5+
* Added `SSLContext.set_default_verify_paths()` method.
6+
* Changed method for disabling hostname verification for macOS and Windows.
7+
Previously would ignore hostname verification errors if `SSLContext.check_hostname` was `False`.
8+
Now for both macOS and Windows the certificate verification policy is configured
9+
to not check certificate hostname. This should have no effect on users.
10+
111
# 0.9.2
212

313
* Fixed an issue where implementations supporting Python 3.10 but not the peer certificate chain APIs

src/truststore/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
del _api, _sys # type: ignore[name-defined] # noqa: F821
3434

3535
__all__ = ["SSLContext", "inject_into_ssl", "extract_from_ssl"]
36-
__version__ = "0.9.2"
36+
__version__ = "0.10.0"

0 commit comments

Comments
 (0)