2021-01-08 12:12:08 +00:00
committed by Git OBS Bridge
parent 53fce760c6
commit 1d78c22b48
6 changed files with 70 additions and 17 deletions

View File

@@ -1,3 +1,56 @@
-------------------------------------------------------------------
Fri Jan 8 10:19:34 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>
- update to version 1.11.0
+ Added
* We deprecated support for Python 2 in Certbot and its ACME
library. Support for Python 2 will be removed in the next
planned release of Certbot.
* certbot-auto was deprecated on all systems. For more
information about this change, see
https://community.letsencrypt.org/t/certbot-auto-no-longer-works-on-debian-based-systems/139702/7.
* We deprecated support for Apache 2.2 in the certbot-apache
plugin and it will be removed in a future release of Certbot.
+ Fixed
* The Certbot snap no longer loads packages installed via pip
install --user. This was unintended and DNS plugins should be
installed via snap instead.
* certbot-dns-google would sometimes crash with HTTP 409/412
errors when used with very large zones. See #6036.
* certbot-dns-google would sometimes crash with an HTTP 412
error if preexisting records had an unexpected TTL, i.e.:
different than Certbot's default TTL for this plugin.
See #8551.
- update to version 1.10.1
+ Fixed
* Fixed a bug in certbot.util.add_deprecated_argument that
caused the deprecated --manual-public-ip-logging-ok flag to
crash Certbot in some scenarios.
- update to version 1.10.0
+ Added
* Added timeout to DNS query function calls for dns-rfc2136
plugin.
* Confirmation when deleting certificates
* CLI flag --key-type has been added to specify 'rsa' or
'ecdsa' (default 'rsa').
* CLI flag --elliptic-curve has been added which takes an
NIST/SECG elliptic curve. Any of secp256r1, secp284r1 and
secp521r1 are accepted values.
* The command certbot certficates lists the which type of the
private key that was used for the private key.
* Support for Python 3.9 was added to Certbot and all of its
components.
+ Changed
* certbot-auto was deprecated on Debian based systems.
* CLI flag --manual-public-ip-logging-ok is now a no-op,
generates a deprecation warning, and will be removed in a
future release.
+ Fixed
* Fixed a Unicode-related crash in the nginx plugin when
running under Python 2.
-------------------------------------------------------------------
Wed Oct 7 08:15:42 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>