File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
11
# 0.9.2
2
12
3
13
* Fixed an issue where implementations supporting Python 3.10 but not the peer certificate chain APIs
Original file line number Diff line number Diff line change 33
33
del _api , _sys # type: ignore[name-defined] # noqa: F821
34
34
35
35
__all__ = ["SSLContext" , "inject_into_ssl" , "extract_from_ssl" ]
36
- __version__ = "0.9.2 "
36
+ __version__ = "0.10.0 "
You can’t perform that action at this time.
0 commit comments