Release 5.6.0

This commit is contained in:
Brad Warren 2026-05-11 08:56:58 -07:00
parent cf0e0f6783
commit 03b5cf3cb0
No known key found for this signature in database
GPG key ID: 780CC99432A28621
40 changed files with 59 additions and 27 deletions

View file

@ -1,6 +1,6 @@
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
setup(
version=version,

View file

@ -1,6 +1,6 @@
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
# We specify the minimum certbot version as the current plugin

View file

@ -1,6 +1,6 @@
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
setup(
version=version,

View file

@ -1,6 +1,6 @@
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
setup(
version=version,

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'cloudflare>=4.0',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'python-digitalocean>=1.15.0', # 1.15.0 or newer is recommended for TTL support

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
# This version of lexicon is required to address the problem described in

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'dns-lexicon>=3.14.1',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'dns-lexicon>=3.14.1',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'google-api-python-client>=1.6.5',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'dns-lexicon>=3.14.1',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'dns-lexicon>=3.14.1',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'dns-lexicon>=3.14.1',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'dns-lexicon>=3.15.1',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
# This version was chosen because it is the version packaged in RHEL 9 and Debian unstable. It

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'boto3>=1.20.34',

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
'dns-lexicon>=3.14.1',

View file

@ -1,6 +1,6 @@
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
install_requires = [
# We specify the minimum certbot version as the current plugin

View file

@ -38,7 +38,7 @@ manage your account:
options:
-h, --help show this help message and exit
-c, --config CONFIG_FILE
-c CONFIG_FILE, --config CONFIG_FILE
path to config file (default: /etc/letsencrypt/cli.ini
and ~/.config/letsencrypt/cli.ini)
-v, --verbose This flag can be used multiple times to incrementally
@ -58,7 +58,7 @@ options:
--force-interactive Force Certbot to be interactive even if it detects
it's not being run in a terminal. This flag cannot be
used with the renew subcommand. (default: False)
-d, --domains, --domain DOMAIN
-d DOMAIN, --domains DOMAIN, --domain DOMAIN
Domain names to include. For multiple domains you can
use multiple -d flags or enter a comma separated list
of domains as a parameter. All domains will be
@ -147,7 +147,7 @@ options:
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/5.5.0 (certbot;
"". (default: CertbotACMEClient/5.6.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,
@ -424,7 +424,8 @@ revoke:
register:
Options for account registration
-m, --email EMAIL Email used for registration and recovery contact. Use
-m EMAIL, --email EMAIL
Email used for registration and recovery contact. Use
comma to register multiple emails, ex:
u1@example.com,u2@example.com. (default: Ask).
--eff-email Share your e-mail address with EFF (default: Ask)
@ -477,9 +478,9 @@ plugins:
Name of the plugin that is both an authenticator and
an installer. Should not be used together with
--authenticator or --installer. (default: Ask)
-a, --authenticator AUTHENTICATOR
-a AUTHENTICATOR, --authenticator AUTHENTICATOR
Authenticator plugin name. (default: None)
-i, --installer INSTALLER
-i INSTALLER, --installer INSTALLER
Installer plugin name (also used to find domains).
(default: None)
--apache Obtain and install certificates using Apache (default:
@ -756,7 +757,7 @@ webroot:
be running and serving files from the webroot path. HTTP challenge only
(wildcards not supported).
--webroot-path, -w WEBROOT_PATH
--webroot-path WEBROOT_PATH, -w WEBROOT_PATH
public_html / webroot path. This can be specified
multiple times to handle different identifiers; each
identifier will have the webroot path that preceded

View file

@ -1,4 +1,4 @@
"""Certbot client."""
# version number like 1.2.3a0, must have at least 2 parts, like 1.2
__version__ = '5.6.0.dev0'
__version__ = '5.6.0'

View file

@ -1,6 +1,6 @@
from setuptools import setup
version = '5.6.0.dev0'
version = '5.6.0'
setup(
version=version,

17
packages/SHA256SUMS Normal file
View file

@ -0,0 +1,17 @@
23f706ef1c437fc743b2f90704b97f263a56d83198b3af1c25c7dd42c4b463e4 acme-5.6.0.tar.gz
725a7ab065441ebb40f425ed185e94b46276803147d4a31f5a5fa3bd69214607 certbot_apache-5.6.0.tar.gz
84021fa3f8acddf20f059ff0d9a2134722348401f12a0cbd29055f2c322d4d89 certbot_dns_cloudflare-5.6.0.tar.gz
44733015c0879a3750ae55d337db942f70192a9f19d02cd9412d4e4b87cc7b7e certbot_dns_digitalocean-5.6.0.tar.gz
ab1fe1ca3aa69e58fafd4cb942966a14230b0984d08c4502f3491dd9721cdd41 certbot_dns_dnsimple-5.6.0.tar.gz
3225bbd7660788e1fdd44197443bff104e9eeec3a68d3cdec4db664b83d0b5ae certbot_dns_dnsmadeeasy-5.6.0.tar.gz
9e3827d844501a43d61eea3f9ff58e389d2ad91fb93f0a2e593bafc5bd988624 certbot_dns_gehirn-5.6.0.tar.gz
0edb1fc6faf575f962f1f9bd2f358b66ef1578c8b7c11ca2ae0e0c7f9f9296dd certbot_dns_google-5.6.0.tar.gz
7361ce766647944cbd06475e7bfeb37e246cbff80d62a99d5d0ab60c0f082100 certbot_dns_linode-5.6.0.tar.gz
04420a936ce40f1315e198e8433c23dbae4e13653b71f7ced3d0d353d6bcffd4 certbot_dns_luadns-5.6.0.tar.gz
7362fa1ca2c9fb9d02771d5306f524b678861153a9cfb403da403329d4b93631 certbot_dns_nsone-5.6.0.tar.gz
47993513bbd27eab20336565d5437e0a248e07d5107cf010f8e39767e3ec798c certbot_dns_ovh-5.6.0.tar.gz
a879536de89e88fc3ea63b4d8cc8a6b5faa08d39e77e0da0c8936efb9bf43990 certbot_dns_rfc2136-5.6.0.tar.gz
d1cbf22eda3928986316f9cf72f5940c18c37459e34600bddf0f2cf11848b80f certbot_dns_route53-5.6.0.tar.gz
410321a91b3e73c859dab4f0d9307488c19a578019d297367a3f4bcc70651f34 certbot_dns_sakuracloud-5.6.0.tar.gz
7745fd8b2f5818b6122c35750c6db0275fe732007dc123acf1dd16e4e7a726d6 certbot_nginx-5.6.0.tar.gz
89052854e28cd2fcac72a8857aad6dfc6b02ba992f4b8f255062fe29c8aed3ee certbot-5.6.0.tar.gz

14
packages/SHA256SUMS.asc Normal file
View file

@ -0,0 +1,14 @@
-----BEGIN PGP SIGNATURE-----
iQHPBAABCAA5FiEEIPIBNGv48/RVpz+aeAzJlDKihiEFAmoB/DcbFIAAAAAABAAO
bWFudTIsMi41KzEuMTIsMCwzAAoJEHgMyZQyooYhYxYMAJ2rHJYR3Ubq0PWiT8iF
IFcciQ3ecc2W/KUaZ+sXwYtKaIxnzshtxkNApQqurqHRzZXVJdIer6/McIxKXNcw
t29e82nvCaB76RZagAGUxkG2vmJhJWRgHgoKV0Rd/PaSw6e/UAAN2tFnvaJJOC9b
LzpT+/UcoMD1NJtCMne7ykyFyUqtGoKrsbOo5U1F2zw1DduS6J4QI/4AkvvvTnlN
2RGGPdZ16kpRi1zrnnFNjKEi0a/o/sxS7tXRCRNzW+1hMaoxF5G+BBblvjld3hjW
/1f74Mk9uh7cAv2S6KduwBDEr68QxJZWPaehmagUmR7N6EnkLo/zA2m+028FUDl6
LJ1Zsx3Gi/Iz35z9waWrGZkVkFFuwM6/gJ0NAHgTrPzgGY1s0AdxBuDhXpxtdII5
bO4volE10K5bTwHOiE119bO3DDAxugm4QWGT3dCT1bkH3JuHiOiHnvEd1O15og4H
R7UzvCBFdGHsk1Ca1lL3XF50juufiIN0PJjIYDiWcvywCw==
=1hiS
-----END PGP SIGNATURE-----

BIN
packages/acme-5.6.0.tar.gz Normal file

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.