From 950d1d072f7490bbd4a3e108ac38fe8e01d43847 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 10 Jan 2022 22:48:03 +0100 Subject: [PATCH] Release 2.1.0. --- CHANGELOG.rst | 26 +++++++++++++++++++ changelogs/changelog.yaml | 26 +++++++++++++++++++ changelogs/fragments/2.1.0.yml | 1 - .../fragments/353-distutils.version.yml | 2 -- .../360-certificate_complete_chain-loop.yml | 3 --- changelogs/fragments/374-docs.yml | 2 -- 6 files changed, 52 insertions(+), 8 deletions(-) delete mode 100644 changelogs/fragments/2.1.0.yml delete mode 100644 changelogs/fragments/353-distutils.version.yml delete mode 100644 changelogs/fragments/360-certificate_complete_chain-loop.yml delete mode 100644 changelogs/fragments/374-docs.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 53dc9d46..f552061c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,32 @@ Community Crypto Release Notes .. contents:: Topics +v2.1.0 +====== + +Release Summary +--------------- + +Feature and bugfix release. + +Minor Changes +------------- + +- Adjust error messages that indicate ``cryptography`` is not installed from ``Can't`` to ``Cannot`` (https://github.com/ansible-collections/community.crypto/pull/374). + +Bugfixes +-------- + +- Various modules and plugins - use vendored version of ``distutils.version`` instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.crypto/pull/353). +- certificate_complete_chain - do not append root twice if the chain already ends with a root certificate (https://github.com/ansible-collections/community.crypto/pull/360). +- certificate_complete_chain - do not hang when infinite loop is found (https://github.com/ansible-collections/community.crypto/issues/355, https://github.com/ansible-collections/community.crypto/pull/360). + +New Modules +----------- + +- crypto_info - Retrieve cryptographic capabilities +- openssl_privatekey_convert - Convert OpenSSL private keys + v2.0.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index e940639d..47747922 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -711,3 +711,29 @@ releases: fragments: - 2.0.2.yml release_date: '2021-12-20' + 2.1.0: + changes: + bugfixes: + - Various modules and plugins - use vendored version of ``distutils.version`` + instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.crypto/pull/353). + - certificate_complete_chain - do not append root twice if the chain already + ends with a root certificate (https://github.com/ansible-collections/community.crypto/pull/360). + - certificate_complete_chain - do not hang when infinite loop is found (https://github.com/ansible-collections/community.crypto/issues/355, + https://github.com/ansible-collections/community.crypto/pull/360). + minor_changes: + - Adjust error messages that indicate ``cryptography`` is not installed from + ``Can't`` to ``Cannot`` (https://github.com/ansible-collections/community.crypto/pull/374). + release_summary: Feature and bugfix release. + fragments: + - 2.1.0.yml + - 353-distutils.version.yml + - 360-certificate_complete_chain-loop.yml + - 374-docs.yml + modules: + - description: Retrieve cryptographic capabilities + name: crypto_info + namespace: '' + - description: Convert OpenSSL private keys + name: openssl_privatekey_convert + namespace: '' + release_date: '2022-01-10' diff --git a/changelogs/fragments/2.1.0.yml b/changelogs/fragments/2.1.0.yml deleted file mode 100644 index 80287c3b..00000000 --- a/changelogs/fragments/2.1.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Feature and bugfix release. diff --git a/changelogs/fragments/353-distutils.version.yml b/changelogs/fragments/353-distutils.version.yml deleted file mode 100644 index d03c346c..00000000 --- a/changelogs/fragments/353-distutils.version.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "Various modules and plugins - use vendored version of ``distutils.version`` instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.crypto/pull/353)." diff --git a/changelogs/fragments/360-certificate_complete_chain-loop.yml b/changelogs/fragments/360-certificate_complete_chain-loop.yml deleted file mode 100644 index 86c36852..00000000 --- a/changelogs/fragments/360-certificate_complete_chain-loop.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: - - "certificate_complete_chain - do not hang when infinite loop is found (https://github.com/ansible-collections/community.crypto/issues/355, https://github.com/ansible-collections/community.crypto/pull/360)." - - "certificate_complete_chain - do not append root twice if the chain already ends with a root certificate (https://github.com/ansible-collections/community.crypto/pull/360)." diff --git a/changelogs/fragments/374-docs.yml b/changelogs/fragments/374-docs.yml deleted file mode 100644 index 632ac96d..00000000 --- a/changelogs/fragments/374-docs.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "Adjust error messages that indicate ``cryptography`` is not installed from ``Can't`` to ``Cannot`` (https://github.com/ansible-collections/community.crypto/pull/374)."