From 4834c0cb4bff17e936a138425ad27a3cb042d613 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 11 Jan 2022 07:04:43 +0100 Subject: [PATCH] Release 1.9.9. --- CHANGELOG.rst | 10 ++++++++++ changelogs/changelog.yaml | 13 +++++++++++++ changelogs/fragments/353-distutils.version.yml | 2 -- .../360-certificate_complete_chain-loop.yml | 3 --- 4 files changed, 23 insertions(+), 5 deletions(-) delete mode 100644 changelogs/fragments/353-distutils.version.yml delete mode 100644 changelogs/fragments/360-certificate_complete_chain-loop.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c51f6b81..ea742f6a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,16 @@ Community Crypto Release Notes .. contents:: Topics +v1.9.9 +====== + +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). + v1.9.8 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index b7c1559b..018c74a8 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -628,3 +628,16 @@ releases: fragments: - 1.9.8.yml release_date: '2021-12-13' + 1.9.9: + 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). + fragments: + - 353-distutils.version.yml + - 360-certificate_complete_chain-loop.yml + release_date: '2022-01-11' 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)."