diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-05 16:18:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-05 16:18:34 +0000 |
commit | 3667197efb7b18ec842efd504785965911f8ac4b (patch) | |
tree | 0b986a4bc6879d080b100666a97cdabbc9ca1f28 /ansible_collections/community/crypto/changelogs | |
parent | Adding upstream version 9.5.1+dfsg. (diff) | |
download | ansible-3667197efb7b18ec842efd504785965911f8ac4b.tar.xz ansible-3667197efb7b18ec842efd504785965911f8ac4b.zip |
Adding upstream version 10.0.0+dfsg.upstream/10.0.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/community/crypto/changelogs')
-rw-r--r-- | ansible_collections/community/crypto/changelogs/changelog.yaml | 67 | ||||
-rw-r--r-- | ansible_collections/community/crypto/changelogs/config.yaml | 3 |
2 files changed, 70 insertions, 0 deletions
diff --git a/ansible_collections/community/crypto/changelogs/changelog.yaml b/ansible_collections/community/crypto/changelogs/changelog.yaml index 856a965ec..13eba21e1 100644 --- a/ansible_collections/community/crypto/changelogs/changelog.yaml +++ b/ansible_collections/community/crypto/changelogs/changelog.yaml @@ -1079,6 +1079,25 @@ releases: name: x509_certificate_convert namespace: '' release_date: '2024-04-20' + 2.19.1: + changes: + bugfixes: + - crypto.math module utils - change return values for ``quick_is_not_prime()`` + and ``convert_int_to_bytes(0, 0)`` for special cases that do not appear when + using the collection (https://github.com/ansible-collections/community.crypto/pull/733). + - ecs_certificate - fixed ``csr`` option to be empty and allow renewal of a + specific certificate according to the Renewal Information specification (https://github.com/ansible-collections/community.crypto/pull/740). + - x509_certificate - since community.crypto 2.19.0 the module was no longer + idempotent with respect to ``not_before`` and ``not_after`` times. This is + now fixed (https://github.com/ansible-collections/community.crypto/issues/753, + https://github.com/ansible-collections/community.crypto/pull/754). + release_summary: Bugfix release. + fragments: + - 2.19.1.yml + - 733-math-prime.yml + - 740-ecs_certificate-renewal-without-csr.yml + - 754-x509_certificate-time.yml + release_date: '2024-05-11' 2.2.0: changes: bugfixes: @@ -1153,6 +1172,54 @@ releases: - 2.2.4.yml - 417-openssh_modules-fix-exception-reporting.yml release_date: '2022-03-22' + 2.20.0: + changes: + bugfixes: + - x509_crl, x509_certificate, x509_certificate_info - when parsing absolute + timestamps which omitted the second count, the first digit of the minutes + was used as a one-digit minutes count, and the second digit of the minutes + as a one-digit second count (https://github.com/ansible-collections/community.crypto/pull/745). + deprecated_features: + - acme documentation fragment - the default ``community.crypto.acme[.documentation]`` + docs fragment is deprecated and will be removed from community.crypto 3.0.0. + Replace it with both the new ``community.crypto.acme.basic`` and ``community.crypto.acme.account`` + fragments (https://github.com/ansible-collections/community.crypto/pull/735). + - acme.backends module utils - the ``get_cert_information()`` method for a ACME + crypto backend must be implemented from community.crypto 3.0.0 on (https://github.com/ansible-collections/community.crypto/pull/736). + - crypto.module_backends.common module utils - the ``crypto.module_backends.common`` + module utils is deprecated and will be removed from community.crypto 3.0.0. + Use the improved ``argspec`` module util instead (https://github.com/ansible-collections/community.crypto/pull/749). + minor_changes: + - acme_certificate - add ``include_renewal_cert_id`` option to allow requesting + renewal of a specific certificate according to the current ACME Renewal Information + specification draft (https://github.com/ansible-collections/community.crypto/pull/739). + release_summary: 'Feature and bugfix release. + + + The deprecations in this release are only relevant for collections that use + shared + + code or docs fragments from this collection. + + ' + fragments: + - 2.20.0.yml + - 735-acme-docs-fragment.yml + - 736-cert-info.yml + - 739-acme_certificate-include_renewal_cert_id.yml + - 745-absolute-time.yml + - 749-argspec.yml + modules: + - description: Retrieves ACME Renewal Information (ARI) for a certificate. + name: acme_ari_info + namespace: '' + - description: Deactivate all authz for an ACME v2 order. + name: acme_certificate_deactivate_authz + namespace: '' + - description: Determine whether a certificate should be renewed or not. + name: acme_certificate_renewal_info + namespace: '' + release_date: '2024-05-20' 2.3.0: changes: bugfixes: diff --git a/ansible_collections/community/crypto/changelogs/config.yaml b/ansible_collections/community/crypto/changelogs/config.yaml index 93ceb6472..c4cf310cf 100644 --- a/ansible_collections/community/crypto/changelogs/config.yaml +++ b/ansible_collections/community/crypto/changelogs/config.yaml @@ -34,3 +34,6 @@ sections: - - known_issues - Known Issues title: Community Crypto +trivial_section_name: trivial +use_fqcn: true +add_plugin_period: true |