From 915379459db17094f2e8a4802ac82e893072146a Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 30 Aug 2021 20:12:47 +0200 Subject: [PATCH] Release 1.9.0. --- CHANGELOG.rst | 22 +++++++++++++++++++ changelogs/changelog.yaml | 21 ++++++++++++++++++ changelogs/fragments/1.9.0.yml | 1 - .../260-openssh_keypair-diff-support.yml | 8 ------- changelogs/fragments/263-sanity.yml | 3 --- ...64-get_certificate-add-starttls-option.yml | 4 ---- 6 files changed, 43 insertions(+), 16 deletions(-) delete mode 100644 changelogs/fragments/1.9.0.yml delete mode 100644 changelogs/fragments/260-openssh_keypair-diff-support.yml delete mode 100644 changelogs/fragments/263-sanity.yml delete mode 100644 changelogs/fragments/264-get_certificate-add-starttls-option.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 29535c90..96b3eb22 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,28 @@ Community Crypto Release Notes .. contents:: Topics +v1.9.0 +====== + +Release Summary +--------------- + +Regular feature release. + +Minor Changes +------------- + +- get_certificate - added ``starttls`` option to retrieve certificates from servers which require clients to request an encrypted connection (https://github.com/ansible-collections/community.crypto/pull/264). +- openssh_keypair - added ``diff`` support (https://github.com/ansible-collections/community.crypto/pull/260). + +Bugfixes +-------- + +- keypair_backend module utils - simplify code to pass sanity tests (https://github.com/ansible-collections/community.crypto/pull/263). +- openssh_keypair - fixed ``cryptography`` backend to preserve original file permissions when regenerating a keypair requires existing files to be overwritten (https://github.com/ansible-collections/community.crypto/pull/260). +- openssh_keypair - fixed error handling to restore original keypair if regeneration fails (https://github.com/ansible-collections/community.crypto/pull/260). +- x509_crl - restore inherited function signature to pass sanity tests (https://github.com/ansible-collections/community.crypto/pull/263). + v1.8.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 36314f0f..9d68dbf8 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -503,3 +503,24 @@ releases: - 257-openssh-keypair-fix-pubkey-permissions.yml - ansible-core-_text.yml release_date: '2021-08-10' + 1.9.0: + changes: + bugfixes: + - keypair_backend module utils - simplify code to pass sanity tests (https://github.com/ansible-collections/community.crypto/pull/263). + - openssh_keypair - fixed ``cryptography`` backend to preserve original file + permissions when regenerating a keypair requires existing files to be overwritten + (https://github.com/ansible-collections/community.crypto/pull/260). + - openssh_keypair - fixed error handling to restore original keypair if regeneration + fails (https://github.com/ansible-collections/community.crypto/pull/260). + - x509_crl - restore inherited function signature to pass sanity tests (https://github.com/ansible-collections/community.crypto/pull/263). + minor_changes: + - get_certificate - added ``starttls`` option to retrieve certificates from + servers which require clients to request an encrypted connection (https://github.com/ansible-collections/community.crypto/pull/264). + - openssh_keypair - added ``diff`` support (https://github.com/ansible-collections/community.crypto/pull/260). + release_summary: Regular feature release. + fragments: + - 1.9.0.yml + - 260-openssh_keypair-diff-support.yml + - 263-sanity.yml + - 264-get_certificate-add-starttls-option.yml + release_date: '2021-08-30' diff --git a/changelogs/fragments/1.9.0.yml b/changelogs/fragments/1.9.0.yml deleted file mode 100644 index a5458b2c..00000000 --- a/changelogs/fragments/1.9.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular feature release. diff --git a/changelogs/fragments/260-openssh_keypair-diff-support.yml b/changelogs/fragments/260-openssh_keypair-diff-support.yml deleted file mode 100644 index 3ba97ade..00000000 --- a/changelogs/fragments/260-openssh_keypair-diff-support.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -minor_changes: - - openssh_keypair - added ``diff`` support (https://github.com/ansible-collections/community.crypto/pull/260). -bugfixes: - - openssh_keypair - fixed error handling to restore original keypair if regeneration fails - (https://github.com/ansible-collections/community.crypto/pull/260). - - openssh_keypair - fixed ``cryptography`` backend to preserve original file permissions when regenerating a keypair - requires existing files to be overwritten (https://github.com/ansible-collections/community.crypto/pull/260). diff --git a/changelogs/fragments/263-sanity.yml b/changelogs/fragments/263-sanity.yml deleted file mode 100644 index 0ae4ccd5..00000000 --- a/changelogs/fragments/263-sanity.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- "keypair_backend module utils - simplify code to pass sanity tests (https://github.com/ansible-collections/community.crypto/pull/263)." -- "x509_crl - restore inherited function signature to pass sanity tests (https://github.com/ansible-collections/community.crypto/pull/263)." diff --git a/changelogs/fragments/264-get_certificate-add-starttls-option.yml b/changelogs/fragments/264-get_certificate-add-starttls-option.yml deleted file mode 100644 index adccd978..00000000 --- a/changelogs/fragments/264-get_certificate-add-starttls-option.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - get_certificate - added ``starttls`` option to retrieve certificates from servers which require clients to request - an encrypted connection (https://github.com/ansible-collections/community.crypto/pull/264).