Release 5.1.0

This commit is contained in:
Erica Portnoy 2025-10-07 09:42:28 -07:00
parent 1d32888ac4
commit d97f2aefc3
No known key found for this signature in database
GPG key ID: 3402831161D1D280
40 changed files with 66 additions and 34 deletions

View file

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

View file

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

View file

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

View file

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

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.1.0.dev0'
version = '5.1.0'
install_requires = [
# for now, do not upgrade to cloudflare>=2.20 to avoid deprecation warnings and the breaking

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.1.0.dev0'
version = '5.1.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.1.0.dev0'
version = '5.1.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.1.0.dev0'
version = '5.1.0'
install_requires = [
'dns-lexicon>=3.14.1',

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -2,7 +2,7 @@ import os
from setuptools import setup
version = '5.1.0.dev0'
version = '5.1.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.1.0.dev0'
version = '5.1.0'
install_requires = [
'boto3>=1.20.34',

View file

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

View file

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

View file

@ -142,7 +142,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.0.0 (certbot;
"". (default: CertbotACMEClient/5.1.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,
@ -324,6 +324,20 @@ run:
certonly:
Options for modifying how a certificate is obtained
--deploy-hook DEPLOY_HOOK
Command to be run in a shell once for each
successfully issued certificate, including on
subsequent renewals. Unless --disable-hook-validation
is used, the commands first word must be the absolute
pathname of an executable or one found via the PATH
environment variable. For this command, the shell
variable $RENEWED_LINEAGE will point to the config
live subdirectory (for example,
"/etc/letsencrypt/live/example.com") containing the
new certificates and keys; the shell variable
$RENEWED_DOMAINS will contain a space-delimited list
of renewed certificate domains (for example,
"example.com www.example.com") (default: None)
--csr CSR Path to a Certificate Signing Request (CSR) in DER or
PEM format. Currently --csr only works with the
'certonly' subcommand. (default: None)
@ -360,19 +374,6 @@ renew:
an attempt was made to obtain/renew a certificate. If
multiple renewed certificates have identical post-
hooks, only one will be run. (default: None)
--deploy-hook DEPLOY_HOOK
Command to be run in a shell once for each
successfully issued certificate. Unless --disable-
hook-validation is used, the commands first word must
be the absolute pathname of an executable or one found
via the PATH environment variable. For this command,
the shell variable $RENEWED_LINEAGE will point to the
config live subdirectory (for example,
"/etc/letsencrypt/live/example.com") containing the
new certificates and keys; the shell variable
$RENEWED_DOMAINS will contain a space-delimited list
of renewed certificate domains (for example,
"example.com www.example.com") (default: None)
--disable-hook-validation
Ordinarily the commands specified for --pre-
hook/--post-hook/--deploy-hook will be checked for

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.1.0.dev0'
__version__ = '5.1.0'

View file

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

17
packages/SHA256SUMS Normal file
View file

@ -0,0 +1,17 @@
7b97820857d9baffed98bca50ab82bb6a636e447865d7a013a7bdd7972f03cda acme-5.1.0.tar.gz
83f7e7578bb06c57b3d27f82ebd3c113e6f7fc8a41dc722cdc143ac98064b0ef certbot_apache-5.1.0.tar.gz
6fea3d5e2c3db018f83bc074315a48588fb680c900f7fef3349eae6a2cfc4c6c certbot_dns_cloudflare-5.1.0.tar.gz
2c0b90029bae068bb2a8aa20e1003c9ba993fc68c3c13e8510f67b7147a384b7 certbot_dns_digitalocean-5.1.0.tar.gz
711ca820227d766b3c69c02f6ba137b6f7653029f9b770225081f6728a48f00d certbot_dns_dnsimple-5.1.0.tar.gz
edca329f00a0551257b6ef741cad1f20f7f7d017ff01421eb235ec158e44eccc certbot_dns_dnsmadeeasy-5.1.0.tar.gz
b4cfa49151118e28bb46c65207b5dc91a127053d8f28e39822417f9fcef6ff79 certbot_dns_gehirn-5.1.0.tar.gz
4a4af6d2889ea5204cb646b5e4dcd5401193664ee90aae8079ce8ab92410f519 certbot_dns_google-5.1.0.tar.gz
b0e93ad84882ab9c0bb023f036c4ba232b69be82f89ea7b0ae5e7beb09c37258 certbot_dns_linode-5.1.0.tar.gz
396824219cfc9fdb20d94b9f86a08e4386cc7fa6a064902a5ac4def82f6aef39 certbot_dns_luadns-5.1.0.tar.gz
eee65410df91a7358d4ee0f14cb71b050c3e8f73d020c4113f761b8247e45038 certbot_dns_nsone-5.1.0.tar.gz
9a97ea3a158f2c0239b3b7fb1443cb464fafcbba4321cce194edc13a0cf45264 certbot_dns_ovh-5.1.0.tar.gz
f0afc9bc63ae8468813e5816eea132ecc92a690e18c5afb09c4802f85e2ae505 certbot_dns_rfc2136-5.1.0.tar.gz
5d325c702077bc483717f2f989b6014b258032b28009b8ed9062f9c01d693282 certbot_dns_route53-5.1.0.tar.gz
4b0398d26771dbc89c31e457c4f62dc31a255a0969747f384c2a33aad2e8056a certbot_dns_sakuracloud-5.1.0.tar.gz
fe41cdd8f54b0587b65b686aa142191ad1bf4f7abaa708a79d5ad662757fb07a certbot_nginx-5.1.0.tar.gz
d652a598f67af78ecf122860e85cd2e9c19a2bbe79a71775eccf6e8d642a4fca certbot-5.1.0.tar.gz

14
packages/SHA256SUMS.asc Normal file
View file

@ -0,0 +1,14 @@
-----BEGIN PGP SIGNATURE-----
iQGzBAABCAAdFiEEhjebTwrzcbUM2eX/NAKDEWHR0oAFAmjlQukACgkQNAKDEWHR
0oBdIAv9G1C/sGuhxtSPL7FX958sDecweGYMm3o/53Zw9ogsQIM+/Ya0EMn9lOva
NKP3OprrDD108R2v3ehIf9aHow09AI+oTKbMc48sFx2tK865e9DkLYyyrUeMu7I9
VuGHJoSs31lD30CeKni1sXOG+Tk5PLUCH9OTtNRMdVEiLhiNJqnOa9h6yQAStH5V
wvFJZXfqV/IUXnKdb/Xphnj8O3yaRhHgt/BcTmARZ7pPU9+CxR/irvViycLQa4NS
I3zYO/X9qUObsH9JtkeGY9WlR098tNsFZdnPHmJ5e0aVbC7OH2+fhwC52JDxjRyR
ZFrY2eNqf8DOvNp5VzKA/JrxL4yxId4h2lIO8S30udk45xpwc5V0kPCKmpHXGQIw
Dv17FdM8DSBBQz5oE2Xq61vUGjD8cpcJgYbAEdLTyXcJ8nkt2Wf1+6yZbiGY7pFG
5lYf9o3+umPtM2Vp92P9/J12Y0LNfAhsHq3vKe1RN96mvUt495iQsZiuk8gzNqCa
KvXVVQAy
=nFug
-----END PGP SIGNATURE-----

BIN
packages/acme-5.1.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.