* Updated Apache/NGINX TLS configs to document contents are based on ssl-config.mozilla.org
* A change to order finalization has been made to the `acme` module and Certbot:
- An order's `certificate` field will only be processed if the order's `status` is `valid`.
- An order's `error` field will only be processed if the order's `status` is `invalid`.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=93
- Update to version 1.26.0
* Added a check whether OCSP stapling is supported by the installer when requesting
a certificate with the run subcommand in combination with the --must-staple option.
If the installer does not support OCSP and the --must-staple option is used, Certbot
will raise an error and quit.
* Certbot and its acme module now depend on josepy>=1.13.0 due to better type annotation support.
* Updated dependencies to use new version of cryptography that uses OpenSSL 1.1.1.
* When the --debug-challenges option is used in combination with -v, Certbot now
displays the challenge URLs (for http-01 challenges) or FQDNs (for dns-01 challenges)
and their expected return values.
* Support for Python 3.6 was removed.
* All Certbot components now require setuptools>=41.6.0.
* Certbot and its acme library now require pytz>=2019.3.
* Revoking a certificate based on an ECDSA key can now be done with --key-path.
OBS-URL: https://build.opensuse.org/request/show/967672
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=89
- Update to version 1.22.0
* Support for Python 3.10 was added to Certbot and all of its components.
* The function certbot.util.parse_loose_version was added to parse version
strings in the same way as the now deprecated distutils.version.LooseVersion
class from the Python standard library.
* Added --issuance-timeout. This option specifies how long (in seconds) Certbot will wait
for the server to issue a certificate.
* The function certbot.util.get_strict_version was deprecated and will be
removed in a future release.
- Refreshed python-certbot.keyring
OBS-URL: https://build.opensuse.org/request/show/941917
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=88
- Update to version 1.18.0
* New functions that Certbot plugins can use to interact with the user have
been added to certbot.display.util. We plan to deprecate using IDisplay
with zope in favor of these new functions in the future.
* The Plugin, Authenticator and Installer classes are added to
certbot.interfaces module as alternatives to Certbot's current zope based
plugin interfaces. The API of these interfaces is identical, but they are
based on Python's abc module instead of zope. Certbot will continue to
detect plugins that implement either interface, but we plan to drop support
for zope based interfaces in a future version of Certbot.
* The class certbot.configuration.NamespaceConfig is added to the Certbot's
public API
* When self-validating HTTP-01 challenges using
acme.challenges.HTTP01Response.simple_verify, we now assume that the response
is composed of only ASCII characters. Previously we were relying on the
default behavior of the requests library which tries to guess the encoding of
the response which was error prone
* In order to simplify the transition to Certbot's new plugin interfaces, the
classes Plugin and Installer in certbot.plugins.common module and
certbot.plugins.dns_common.DNSAuthenticator now implement Certbot's new
plugin interfaces. The Certbot plugins based on these classes are now
automatically detected as implementing these interfaces.
* The Apache authenticator no longer crashes with "Unable to insert label"
when encountering a completely empty vhost. This issue affected Certbot 1.17.0.
OBS-URL: https://build.opensuse.org/request/show/911272
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=86
* We changed how dependencies are specified between Certbot packages. For this
and future releases, higher level Certbot components will require that lower
level components are the same version or newer. More specifically, version X
of the Certbot package will now always require acme>=X and version Y of a
plugin package will always require acme>=Y and certbot=>Y. Specifying
dependencies in this way simplifies testing and development.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=85
* The `--preferred-chain` flag now only checks the Issuer Common Name of the
topmost (closest to the root) certificate in the chain, instead of checking
every certificate in the chain.
See [#8577](https://github.com/certbot/certbot/issues/8577).
* Support for Python 2 has been removed.
* CLI flags `--os-packages-only`, `--no-self-upgrade`, `--no-bootstrap` and `--no-permissions-check`,
which are related to certbot-auto, are deprecated and will be removed in a future release.
* Certbot no longer conditionally depends on an external mock module. Certbot's
test API will continue to use it if it is available for backwards
compatibility, however, this behavior has been deprecated and will be removed
in a future release.
* Certbot and all of its components no longer depend on the library `six`.
* The update of certbot-auto itself is now disabled on all RHEL-like systems.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=77
* certbot-auto was deprecated on all systems except for those based on Debian or RHEL.
* Update the packaging instructions to promote usage of python -m pytest to test Certbot
instead of the deprecated python setup.py test setuptools approach.
* Reduced CLI logging when handling some kinds of errors.
* The minimum version of the acme library required by Certbot was corrected.
In the previous release, Certbot said it required acme>=1.6.0 when it
actually required acme>=1.8.0 to properly support removing contact
information from an ACME account.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=73
- Update to version 1.8.0
+ Added
* Added the ability to remove email and phone contact
information from an account
* using update_account --register-unsafely-without-email
+ Changed
* Support for Python 3.5 has been removed.
+ Fixed
* The problem causing the Apache plugin in the Certbot snap on
ARM systems to
* fail to load the Augeas library it depends on has been fixed.
* The acme library can now tell the ACME server to clear
contact information by passing an empty
* tuple to the contact field of a Registration message.
* Fixed the *** stack smashing detected *** error in the
Certbot snap on some systems.
* More details about these changes can be found on our GitHub
repo.
- Add certbot keyring and hash file
OBS-URL: https://build.opensuse.org/request/show/838326
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=72
* Third-party plugins can be used without prefix (plugin_name instead of dist_name:plugin_name):
this concerns the plugin name, CLI flags, and keys in credential files.
The prefixed form is still supported but is deprecated, and will be removed in a future release.
* We deprecated support for Python 3.5 in Certbot and its ACME library.
Support for Python 3.5 will be removed in the next major release of Certbot.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=70
* Added serial number of certificate to the output of certbot certificates
* Expose two new environment variables in the authenticator and cleanup scripts used by
the manual plugin: CERTBOT_REMAINING_CHALLENGES is equal to the number of challenges
remaining after the current challenge, CERTBOT_ALL_DOMAINS is a comma-separated list
of all domains challenged for the current certificate.
* Added minimal proxy support for OCSP verification.
* mock dependency is now conditional on Python 2 in all of our packages.
* Fix hanging OCSP queries during revocation checking - added a 10 second timeout.
* Standalone servers now have a default socket timeout of 30 seconds, fixing
cases where an idle connection can cause the standalone plugin to hang.
* Parsing of the RFC 8555 application/pem-certificate-chain now tolerates CRLF line
endings. This should fix interoperability with Buypass' services.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=62
- update to version 1.0.0 (boo#1160066)
* certbot-auto has deprecated support for systems using OpenSSL 1.0.1
that are not running on x86-64.
* Certbot's config_changes subcommand has been removed
* certbot.plugins.common.TLSSNI01 has been removed.
* The functions certbot.client.view_config_changes,
certbot.main.config_changes,
certbot.plugins.common.Installer.view_config_changes,
certbot.reverter.Reverter.view_config_changes, and
certbot.util.get_systemd_os_info have been removed
* Certbot's register --update-registration subcommand has been removed
* When possible, default to automatically configuring the webserver so all requests
redirect to secure HTTPS access. This is mostly relevant when running Certbot
in non-interactive mode. Previously, the default was to not redirect all requests.
OBS-URL: https://build.opensuse.org/request/show/760673
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-certbot?expand=0&rev=21
* certbot-auto has deprecated support for systems using OpenSSL 1.0.1
that are not running on x86-64.
* Certbot's config_changes subcommand has been removed
* certbot.plugins.common.TLSSNI01 has been removed.
* The functions certbot.client.view_config_changes,
certbot.main.config_changes,
certbot.plugins.common.Installer.view_config_changes,
certbot.reverter.Reverter.view_config_changes, and
certbot.util.get_systemd_os_info have been removed
* Certbot's register --update-registration subcommand has been removed
* When possible, default to automatically configuring the webserver so all requests
redirect to secure HTTPS access. This is mostly relevant when running Certbot
in non-interactive mode. Previously, the default was to not redirect all requests.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=51
* --server may now be combined with --dry-run.
* --dry-run now requests fresh authorizations every time, fixing
the issue where it was prone to falsely reporting success.
* The OS detection logic again uses distro library for Linux OSes
* certbot.plugins.common.TLSSNI01 has been deprecated and will be
removed in a future release.
* CLI flags --tls-sni-01-port and --tls-sni-01-address have been removed.
* The values tls-sni and tls-sni-01 for the --preferred-challenges
flag are no longer accepted.
* Removed the flags: --agree-dev-preview, --dialog, and --apache-init-script
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot?expand=0&rev=49