diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c18a0983a..cf04b07a9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,20 @@ Community Crypto Release Notes .. contents:: Topics +v1.9.4 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- acme_* modules - fix commands composed for OpenSSL backend to retrieve information on CSRs and certificates from stdin to use ``/dev/stdin`` instead of ``-``. This is needed for OpenSSL 1.0.1 and 1.0.2, apparently (https://github.com/ansible-collections/community.crypto/pull/279). +- acme_challenge_cert_helper - only return exception when cryptography is not installed, not when a too old version of it is installed. This prevents Ansible's callback to crash (https://github.com/ansible-collections/community.crypto/pull/281). + v1.9.3 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 08af57ec6..f51a6adff 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -547,3 +547,18 @@ releases: - 1.9.3.yml - 271-openssl_csr-utf8.yml release_date: '2021-09-14' + 1.9.4: + changes: + bugfixes: + - acme_* modules - fix commands composed for OpenSSL backend to retrieve information + on CSRs and certificates from stdin to use ``/dev/stdin`` instead of ``-``. + This is needed for OpenSSL 1.0.1 and 1.0.2, apparently (https://github.com/ansible-collections/community.crypto/pull/279). + - acme_challenge_cert_helper - only return exception when cryptography is not + installed, not when a too old version of it is installed. This prevents Ansible's + callback to crash (https://github.com/ansible-collections/community.crypto/pull/281). + release_summary: Regular bugfix release. + fragments: + - 1.9.4.yml + - 279-acme-openssl.yml + - 282-acme_challenge_cert_helper-error.yml + release_date: '2021-09-28' diff --git a/changelogs/fragments/1.9.4.yml b/changelogs/fragments/1.9.4.yml deleted file mode 100644 index 1b14bd80d..000000000 --- a/changelogs/fragments/1.9.4.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/279-acme-openssl.yml b/changelogs/fragments/279-acme-openssl.yml deleted file mode 100644 index 290c095ee..000000000 --- a/changelogs/fragments/279-acme-openssl.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "acme_* modules - fix commands composed for OpenSSL backend to retrieve information on CSRs and certificates from stdin to use ``/dev/stdin`` instead of ``-``. This is needed for OpenSSL 1.0.1 and 1.0.2, apparently (https://github.com/ansible-collections/community.crypto/pull/279)." diff --git a/changelogs/fragments/282-acme_challenge_cert_helper-error.yml b/changelogs/fragments/282-acme_challenge_cert_helper-error.yml deleted file mode 100644 index 40de41200..000000000 --- a/changelogs/fragments/282-acme_challenge_cert_helper-error.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "acme_challenge_cert_helper - only return exception when cryptography is not installed, not when a too old version of it is installed. This prevents Ansible's callback to crash (https://github.com/ansible-collections/community.crypto/pull/281)."