deprecate SSLSocket and TLSServer (#10294)

fixes https://github.com/certbot/certbot/issues/10284
This commit is contained in:
Brad Warren
2025-05-15 09:06:18 -07:00
committed by GitHub
parent 723fe64d4d
commit 5d03191493
4 changed files with 28 additions and 17 deletions
+6 -4
View File
@@ -20,10 +20,11 @@
# 3) Ignore DeprecationWarning for datetime.utcfromtimestamp() triggered
# from dateutil. See https://github.com/dateutil/dateutil/issues/1314.
# 4 & 5) The pyOpenSSL X509/PKey warnings are due to TLS-ALPN-01 support.
# Resolving these warnings is being tracked by
# Resolving these warnings is being tracked by
# https://github.com/certbot/certbot/issues/10079.
# 6 - 10) Planning to remove unused TLS-ALPN support in acme.
# See https://github.com/certbot/certbot/issues/10266
# 6 - 11) Planning to remove unused TLS-ALPN support in acme.
# See https://github.com/certbot/certbot/issues/10266 and
# https://github.com/certbot/certbot/pull/10294.
filterwarnings =
error
ignore:.*rsyncdir:DeprecationWarning
@@ -31,8 +32,9 @@ filterwarnings =
ignore:.*datetime.utcfromtimestamp\(\) is deprecated:DeprecationWarning:dateutil
ignore:Passing pyOpenSSL X509 objects is deprecated:DeprecationWarning
ignore:Passing pyOpenSSL PKey objects is deprecated:DeprecationWarning
ignore:alpn_selection ivar is deprecated:DeprecationWarning
ignore:alpn_protocols parameter is deprecated:DeprecationWarning
ignore:SSLSocket is deprecated:DeprecationWarning
ignore:TLSALPN01Server is deprecated:DeprecationWarning
ignore:TLSALPN01Response is deprecated:DeprecationWarning
ignore:TLSALPN01 is deprecated:DeprecationWarning
ignore:TLSServer is deprecated:DeprecationWarning