Release 4.2.0

This commit is contained in:
Erica Portnoy
2025-08-05 08:58:16 -07:00
parent 1b209c9bd3
commit 832d11a63f
38 changed files with 54 additions and 20 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'cryptography>=43.0.0',
+1 -1
View File
@@ -1,7 +1,7 @@
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
# We specify the minimum acme and certbot version as the current plugin
+1 -1
View File
@@ -1,7 +1,7 @@
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'certbot',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
# for now, do not upgrade to cloudflare>=2.20 to avoid deprecation warnings and the breaking
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'python-digitalocean>=1.11', # 1.15.0 or newer is recommended for TTL support
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
# This version of lexicon is required to address the problem described in
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'dns-lexicon>=3.14.1',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'dns-lexicon>=3.14.1',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'google-api-python-client>=1.6.5',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'dns-lexicon>=3.14.1',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'dns-lexicon>=3.14.1',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'dns-lexicon>=3.14.1',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'dns-lexicon>=3.15.1',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
# This version was chosen because it is the version packaged in RHEL 9 and Debian unstable. It
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'boto3>=1.15.15',
+1 -1
View File
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
'dns-lexicon>=3.14.1',
+1 -1
View File
@@ -1,7 +1,7 @@
from setuptools import find_packages
from setuptools import setup
version = '4.2.0.dev0'
version = '4.2.0'
install_requires = [
# We specify the minimum acme and certbot version as the current plugin
+5 -2
View File
@@ -36,7 +36,7 @@ manage your account:
--agree-tos Agree to the ACME server's Subscriber Agreement
-m EMAIL Email address for important account notifications
optional arguments:
options:
-h, --help show this help message and exit
-c CONFIG_FILE, --config CONFIG_FILE
path to config file (default: /etc/letsencrypt/cli.ini
@@ -72,6 +72,9 @@ optional arguments:
None)
--eab-hmac-key EAB_HMAC_KEY
HMAC key for External Account Binding (default: None)
--eab-hmac-alg EAB_HMAC_ALG
HMAC algorithm for External Account Binding (default:
HS256)
--cert-name CERTNAME Certificate name to apply. This name is used by
Certbot for housekeeping and in file paths; it doesn't
affect the content of the certificate itself.
@@ -139,7 +142,7 @@ optional arguments:
case, and to know when to deprecate support for past
Python versions and flags. If you wish to hide this
information from the Let's Encrypt server, set this to
"". (default: CertbotACMEClient/4.1.1 (certbot;
"". (default: CertbotACMEClient/4.2.0 (certbot;
OS_NAME OS_VERSION) Authenticator/XXX Installer/YYY
(SUBCOMMAND; flags: FLAGS) Py/major.minor.patchlevel).
The flags encoded in the user agent are: --duplicate,
+1 -1
View File
@@ -3,7 +3,7 @@ import sys
import warnings
# version number like 1.2.3a0, must have at least 2 parts, like 1.2
__version__ = '4.2.0.dev0'
__version__ = '4.2.0'
if sys.version_info[:2] == (3, 9):
+17
View File
@@ -0,0 +1,17 @@
0df68c0e1acb3824a2100013f8cd51bda2e1a56aa23447449d14c942959f0c41 acme-4.2.0.tar.gz
b1588a5d278cb1182c0a18d182f5d3994701e784f28da5546fcd8bab54fcf411 certbot_apache-4.2.0.tar.gz
010b9c9d8f33988c4e87c40155b57ffc16157c14e4f92f9f839bed0423bd04d3 certbot_dns_cloudflare-4.2.0.tar.gz
a92c9d40353f08d4093de5861f454d9657e5e1480026fc081a31263bf8a029ef certbot_dns_digitalocean-4.2.0.tar.gz
a41172cba48250c321b4365d0952a01c6d1ab72d755e30c9498fa661db1f398f certbot_dns_dnsimple-4.2.0.tar.gz
101cad8775bb2a34072210a3e4d206fbfee4dff7100b01ae8fada275f58107a4 certbot_dns_dnsmadeeasy-4.2.0.tar.gz
ae9678049e5b39d714a178240b567a52702c19495c7074c2884a49a91aac2dc5 certbot_dns_gehirn-4.2.0.tar.gz
7e0ee4712ede9ea0b4222b9bca2713aad47bc975d8ff2c58012245f31d4c915f certbot_dns_google-4.2.0.tar.gz
74a7f3cee605bdfe236112648dbd6bc23ea587fdad8f112d5383cd4ddd2417f2 certbot_dns_linode-4.2.0.tar.gz
4d82997d65e752dc4d469eb88f08f6dc94f9645f18b653e858f7c506f6695c78 certbot_dns_luadns-4.2.0.tar.gz
fc21244e6fbd7b57a3d782499cf105de27a8045dde456be20cfcc2849a6a3e54 certbot_dns_nsone-4.2.0.tar.gz
0168f064ad7a73bf97615c9d11788b006d229ea600fac84b564f7e5cd7cec8c3 certbot_dns_ovh-4.2.0.tar.gz
6044ead6386be61895faee28225df4b20be0868057404f369ef92dcfbaeb73a6 certbot_dns_rfc2136-4.2.0.tar.gz
fc0e59ad7e0f04c373e6e412da4d90fc6f5eec7317eb94e0b785367830e6daea certbot_dns_route53-4.2.0.tar.gz
f858be1b397d53b5789dd39a85ea819d8fea8beea3f0714bb1e80aa2ea2e629f certbot_dns_sakuracloud-4.2.0.tar.gz
83ef0a9b16616b908905fb61fabbe49cebfc4c33cda1983347ed3ab570b4abf6 certbot_nginx-4.2.0.tar.gz
fb1e56ca8a072bec49ac0c7b5390a29cbf68c2c05f712259a9b3491de041c27b certbot-4.2.0.tar.gz
+14
View File
@@ -0,0 +1,14 @@
-----BEGIN PGP SIGNATURE-----
iQGzBAABCAAdFiEEhjebTwrzcbUM2eX/NAKDEWHR0oAFAmiSKgIACgkQNAKDEWHR
0oBioQv+Pw4h9dKNMfg8pyiXPRZ8AP0YOhA6QdDhfzP3k7f5CdvQo3o+HehyPe3i
qlwmcgNajI3wAFuRxkN68ub1GYq045wOdfvfpfJAUvF9yjKwtUYsR73TTtxVKVDP
fJs39RBb9TbJjnSMYgvmZ14G/mO36qRhqSsQ9Tx1/FpI93kBm08+DQVbWSneaQ3l
h0r61wZuA/i1FcRtRxMUC5O7kWmLBVml/xakRQm5R62tplkb2yKSqPNQByLxNi9P
GmnCwvMI1HDlfcaGuOGwGKGwatnsUvA7w3rypqab/X59uTxl2Kmx/dnYMj26UMpL
lNG6loTi9A72m/vS3kz02wtn8slRi9l0HkqnPeALmu6vtoiyz+NglAWFCk7YYhDa
ahKtsFwKYQ3JXdKavm2jOVB+IlmRvvLhq/Uf+k0mOsv6rbkAsauR15wrEAHWf+7U
FDLQICy8X+dOIfc8jM69RodA7E/sfBvS9LQICmaO2axKZZcNOrDLSzP/gREYz/Rl
n68rc/yk
=9I+R
-----END PGP SIGNATURE-----
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.