parent
c85659ebfc
commit
b952b103e2
|
@ -5,6 +5,26 @@ Community Crypto Release Notes
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v2.2.2
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Regular bugfix release.
|
||||||
|
|
||||||
|
In this release, we extended the test matrix to include Alpine 3, ArchLinux, Debian Bullseye, and CentOS Stream 8. CentOS 8 was removed from the test matrix.
|
||||||
|
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- certificate_complete_chain - allow multiple potential intermediate certificates to have the same subject (https://github.com/ansible-collections/community.crypto/issues/399, https://github.com/ansible-collections/community.crypto/pull/403).
|
||||||
|
- x509_certificate - for the ``ownca`` provider, check whether the CA private key actually belongs to the CA certificate (https://github.com/ansible-collections/community.crypto/pull/407).
|
||||||
|
- x509_certificate - regenerate certificate when the CA's public key changes for ``provider=ownca`` (https://github.com/ansible-collections/community.crypto/pull/407).
|
||||||
|
- x509_certificate - regenerate certificate when the CA's subject changes for ``provider=ownca`` (https://github.com/ansible-collections/community.crypto/issues/400, https://github.com/ansible-collections/community.crypto/pull/402).
|
||||||
|
- x509_certificate - regenerate certificate when the private key changes for ``provider=selfsigned`` (https://github.com/ansible-collections/community.crypto/pull/407).
|
||||||
|
|
||||||
v2.2.1
|
v2.2.1
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -763,3 +763,31 @@ releases:
|
||||||
- 2.2.1.yml
|
- 2.2.1.yml
|
||||||
- 396-openssh_cert-host-cert-idempotence-fix.yml
|
- 396-openssh_cert-host-cert-idempotence-fix.yml
|
||||||
release_date: '2022-02-05'
|
release_date: '2022-02-05'
|
||||||
|
2.2.2:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- certificate_complete_chain - allow multiple potential intermediate certificates
|
||||||
|
to have the same subject (https://github.com/ansible-collections/community.crypto/issues/399,
|
||||||
|
https://github.com/ansible-collections/community.crypto/pull/403).
|
||||||
|
- x509_certificate - for the ``ownca`` provider, check whether the CA private
|
||||||
|
key actually belongs to the CA certificate (https://github.com/ansible-collections/community.crypto/pull/407).
|
||||||
|
- x509_certificate - regenerate certificate when the CA's public key changes
|
||||||
|
for ``provider=ownca`` (https://github.com/ansible-collections/community.crypto/pull/407).
|
||||||
|
- x509_certificate - regenerate certificate when the CA's subject changes for
|
||||||
|
``provider=ownca`` (https://github.com/ansible-collections/community.crypto/issues/400,
|
||||||
|
https://github.com/ansible-collections/community.crypto/pull/402).
|
||||||
|
- x509_certificate - regenerate certificate when the private key changes for
|
||||||
|
``provider=selfsigned`` (https://github.com/ansible-collections/community.crypto/pull/407).
|
||||||
|
release_summary: 'Regular bugfix release.
|
||||||
|
|
||||||
|
|
||||||
|
In this release, we extended the test matrix to include Alpine 3, ArchLinux,
|
||||||
|
Debian Bullseye, and CentOS Stream 8. CentOS 8 was removed from the test matrix.
|
||||||
|
|
||||||
|
'
|
||||||
|
fragments:
|
||||||
|
- 2.2.2.yml
|
||||||
|
- 402-x509_certificate-ownca-subject.yml
|
||||||
|
- 403-certificate_complete_chain-same-subject.yml
|
||||||
|
- 407-x509_certificate-signature.yml
|
||||||
|
release_date: '2022-02-21'
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
release_summary: |
|
|
||||||
Regular bugfix release.
|
|
||||||
|
|
||||||
In this release, we extended the test matrix to include Alpine 3, ArchLinux, Debian Bullseye, and CentOS Stream 8. CentOS 8 was removed from the test matrix.
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- "x509_certificate - regenerate certificate when the CA's subject changes for ``provider=ownca`` (https://github.com/ansible-collections/community.crypto/issues/400, https://github.com/ansible-collections/community.crypto/pull/402)."
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- "certificate_complete_chain - allow multiple potential intermediate certificates to have the same subject (https://github.com/ansible-collections/community.crypto/issues/399, https://github.com/ansible-collections/community.crypto/pull/403)."
|
|
|
@ -1,4 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- "x509_certificate - for the ``ownca`` provider, check whether the CA private key actually belongs to the CA certificate (https://github.com/ansible-collections/community.crypto/pull/407)."
|
|
||||||
- "x509_certificate - regenerate certificate when the CA's public key changes for ``provider=ownca`` (https://github.com/ansible-collections/community.crypto/pull/407)."
|
|
||||||
- "x509_certificate - regenerate certificate when the private key changes for ``provider=selfsigned`` (https://github.com/ansible-collections/community.crypto/pull/407)."
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace: community
|
namespace: community
|
||||||
name: crypto
|
name: crypto
|
||||||
version: 2.3.0
|
version: 2.2.2
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Ansible (github.com/ansible)
|
- Ansible (github.com/ansible)
|
||||||
|
|
Loading…
Reference in New Issue