diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3a3bbc8c..c18a0983 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,19 @@ Community Crypto Release Notes .. contents:: Topics +v1.9.3 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- openssl_csr and openssl_csr_pipe - make sure that Unicode strings are used to compare strings with the cryptography backend. This fixes idempotency problems with non-ASCII letters on Python 2 (https://github.com/ansible-collections/community.crypto/issues/270, https://github.com/ansible-collections/community.crypto/pull/271). + v1.9.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 522020e2..08af57ec 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -535,3 +535,15 @@ releases: fragments: - 1.9.2.yml release_date: '2021-08-30' + 1.9.3: + changes: + bugfixes: + - openssl_csr and openssl_csr_pipe - make sure that Unicode strings are used + to compare strings with the cryptography backend. This fixes idempotency problems + with non-ASCII letters on Python 2 (https://github.com/ansible-collections/community.crypto/issues/270, + https://github.com/ansible-collections/community.crypto/pull/271). + release_summary: Regular bugfix release. + fragments: + - 1.9.3.yml + - 271-openssl_csr-utf8.yml + release_date: '2021-09-14' diff --git a/changelogs/fragments/1.9.3.yml b/changelogs/fragments/1.9.3.yml deleted file mode 100644 index 1b14bd80..00000000 --- a/changelogs/fragments/1.9.3.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/271-openssl_csr-utf8.yml b/changelogs/fragments/271-openssl_csr-utf8.yml deleted file mode 100644 index c3186d52..00000000 --- a/changelogs/fragments/271-openssl_csr-utf8.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "openssl_csr and openssl_csr_pipe - make sure that Unicode strings are used to compare strings with the cryptography backend. This fixes idempotency problems with non-ASCII letters on Python 2 (https://github.com/ansible-collections/community.crypto/issues/270, https://github.com/ansible-collections/community.crypto/pull/271)."