diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 554c24bb..b04bc05b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,21 @@ Community Crypto Release Notes .. contents:: Topics +v2.8.0 +====== + +Release Summary +--------------- + +Feature release. + +Minor Changes +------------- + +- acme_* modules - handle more gracefully if CA's new nonce call does not return a nonce (https://github.com/ansible-collections/community.crypto/pull/525). +- acme_* modules - include symbolic HTTP status codes in error and log messages when available (https://github.com/ansible-collections/community.crypto/pull/524). +- openssl_pkcs12 - add option ``encryption_level`` which allows to chose ``compatibility2022`` when cryptography >= 38.0.0 is used to enable a more backwards compatible encryption algorithm. If cryptography uses OpenSSL 3.0.0 or newer, the default algorithm is not compatible with older software (https://github.com/ansible-collections/community.crypto/pull/523). + v2.7.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index cd4ee29c..59dde8cc 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -990,3 +990,21 @@ releases: - 2.7.1.yml - 519-acme-cryptography.yml release_date: '2022-10-17' + 2.8.0: + changes: + minor_changes: + - acme_* modules - handle more gracefully if CA's new nonce call does not return + a nonce (https://github.com/ansible-collections/community.crypto/pull/525). + - acme_* modules - include symbolic HTTP status codes in error and log messages + when available (https://github.com/ansible-collections/community.crypto/pull/524). + - openssl_pkcs12 - add option ``encryption_level`` which allows to chose ``compatibility2022`` + when cryptography >= 38.0.0 is used to enable a more backwards compatible + encryption algorithm. If cryptography uses OpenSSL 3.0.0 or newer, the default + algorithm is not compatible with older software (https://github.com/ansible-collections/community.crypto/pull/523). + release_summary: Feature release. + fragments: + - 2.8.0.yml + - 523-pkcs12-compat.yml + - 524-acme-http-errors.yml + - 525-acme-no-nonce.yml + release_date: '2022-11-02' diff --git a/changelogs/fragments/2.8.0.yml b/changelogs/fragments/2.8.0.yml deleted file mode 100644 index 512efc99..00000000 --- a/changelogs/fragments/2.8.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Feature release. diff --git a/changelogs/fragments/523-pkcs12-compat.yml b/changelogs/fragments/523-pkcs12-compat.yml deleted file mode 100644 index ae08b35e..00000000 --- a/changelogs/fragments/523-pkcs12-compat.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: - - "openssl_pkcs12 - add option ``encryption_level`` which allows to chose ``compatibility2022`` when cryptography >= 38.0.0 is used - to enable a more backwards compatible encryption algorithm. If cryptography uses OpenSSL 3.0.0 or newer, the default algorithm - is not compatible with older software (https://github.com/ansible-collections/community.crypto/pull/523)." diff --git a/changelogs/fragments/524-acme-http-errors.yml b/changelogs/fragments/524-acme-http-errors.yml deleted file mode 100644 index cd6bbc4b..00000000 --- a/changelogs/fragments/524-acme-http-errors.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "acme_* modules - include symbolic HTTP status codes in error and log messages when available (https://github.com/ansible-collections/community.crypto/pull/524)." diff --git a/changelogs/fragments/525-acme-no-nonce.yml b/changelogs/fragments/525-acme-no-nonce.yml deleted file mode 100644 index 253cfa9f..00000000 --- a/changelogs/fragments/525-acme-no-nonce.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "acme_* modules - handle more gracefully if CA's new nonce call does not return a nonce (https://github.com/ansible-collections/community.crypto/pull/525)."