From e41a50af97e694fd838637042fddab33f1c5f559 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 12 Aug 2023 18:10:13 +0200 Subject: [PATCH] Release 2.15.0. --- CHANGELOG.rst | 37 +++++++++++++++++++ changelogs/changelog.yaml | 27 ++++++++++++++ changelogs/fragments/2.15.0.yml | 1 - .../600-get_certificate-asn1_base64.yml | 2 - changelogs/fragments/646-openssh-rc.yml | 5 --- 5 files changed, 64 insertions(+), 8 deletions(-) delete mode 100644 changelogs/fragments/2.15.0.yml delete mode 100644 changelogs/fragments/600-get_certificate-asn1_base64.yml delete mode 100644 changelogs/fragments/646-openssh-rc.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3aacaa02..d805ef1d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,43 @@ Community Crypto Release Notes .. contents:: Topics +v2.15.0 +======= + +Release Summary +--------------- + +Bugfix and feature release. + +Minor Changes +------------- + +- openssh_keypair - fail when comment cannot be updated (https://github.com/ansible-collections/community.crypto/pull/646). + +Deprecated Features +------------------- + +- get_certificate - the default ``false`` of the ``asn1_base64`` option is deprecated and will change to ``true`` in community.crypto 3.0.0 (https://github.com/ansible-collections/community.crypto/pull/600). + +Bugfixes +-------- + +- openssh_cert, openssh_keypair - the modules ignored return codes of ``ssh`` and ``ssh-keygen`` in some cases (https://github.com/ansible-collections/community.crypto/issues/645, https://github.com/ansible-collections/community.crypto/pull/646). +- openssh_keypair - fix comment updating for OpenSSH before 6.5 (https://github.com/ansible-collections/community.crypto/pull/646). + +New Plugins +----------- + +Filter +~~~~~~ + +- gpg_fingerprint - Retrieve a GPG fingerprint from a GPG public or private key + +Lookup +~~~~~~ + +- gpg_fingerprint - Retrieve a GPG fingerprint from a GPG public or private key file + v2.14.1 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 110735d2..bb75ef1a 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -897,6 +897,33 @@ releases: - 628-pem-detection.yml - semantic-markup.yml release_date: '2023-06-27' + 2.15.0: + changes: + bugfixes: + - openssh_cert, openssh_keypair - the modules ignored return codes of ``ssh`` + and ``ssh-keygen`` in some cases (https://github.com/ansible-collections/community.crypto/issues/645, + https://github.com/ansible-collections/community.crypto/pull/646). + - openssh_keypair - fix comment updating for OpenSSH before 6.5 (https://github.com/ansible-collections/community.crypto/pull/646). + deprecated_features: + - get_certificate - the default ``false`` of the ``asn1_base64`` option is deprecated + and will change to ``true`` in community.crypto 3.0.0 (https://github.com/ansible-collections/community.crypto/pull/600). + minor_changes: + - openssh_keypair - fail when comment cannot be updated (https://github.com/ansible-collections/community.crypto/pull/646). + release_summary: Bugfix and feature release. + fragments: + - 2.15.0.yml + - 600-get_certificate-asn1_base64.yml + - 646-openssh-rc.yml + plugins: + filter: + - description: Retrieve a GPG fingerprint from a GPG public or private key + name: gpg_fingerprint + namespace: null + lookup: + - description: Retrieve a GPG fingerprint from a GPG public or private key file + name: gpg_fingerprint + namespace: null + release_date: '2023-08-12' 2.2.0: changes: bugfixes: diff --git a/changelogs/fragments/2.15.0.yml b/changelogs/fragments/2.15.0.yml deleted file mode 100644 index 56de6d9e..00000000 --- a/changelogs/fragments/2.15.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Bugfix and feature release. diff --git a/changelogs/fragments/600-get_certificate-asn1_base64.yml b/changelogs/fragments/600-get_certificate-asn1_base64.yml deleted file mode 100644 index 04ac3f56..00000000 --- a/changelogs/fragments/600-get_certificate-asn1_base64.yml +++ /dev/null @@ -1,2 +0,0 @@ -deprecated_features: - - "get_certificate - the default ``false`` of the ``asn1_base64`` option is deprecated and will change to ``true`` in community.crypto 3.0.0 (https://github.com/ansible-collections/community.crypto/pull/600)." diff --git a/changelogs/fragments/646-openssh-rc.yml b/changelogs/fragments/646-openssh-rc.yml deleted file mode 100644 index 5ca84e39..00000000 --- a/changelogs/fragments/646-openssh-rc.yml +++ /dev/null @@ -1,5 +0,0 @@ -bugfixes: - - "openssh_cert, openssh_keypair - the modules ignored return codes of ``ssh`` and ``ssh-keygen`` in some cases (https://github.com/ansible-collections/community.crypto/issues/645, https://github.com/ansible-collections/community.crypto/pull/646)." - - "openssh_keypair - fix comment updating for OpenSSH before 6.5 (https://github.com/ansible-collections/community.crypto/pull/646)." -minor_changes: - - "openssh_keypair - fail when comment cannot be updated (https://github.com/ansible-collections/community.crypto/pull/646)."