diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1361ae8a..b7368b07 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,30 @@ Community Crypto Release Notes .. contents:: Topics +v1.5.0 +====== + +Release Summary +--------------- + +Regular feature and bugfix release. Deprecates a return value. + +Minor Changes +------------- + +- acme_account_info - when ``retrieve_orders`` is not ``ignore`` and the ACME server allows to query orders, the new return value ``order_uris`` is always populated with a list of URIs (https://github.com/ansible-collections/community.crypto/pull/178). +- luks_device - allow to specify sector size for LUKS2 containers with new ``sector_size`` parameter (https://github.com/ansible-collections/community.crypto/pull/193). + +Deprecated Features +------------------- + +- acme_account_info - when ``retrieve_orders=url_list``, ``orders`` will no longer be returned in community.crypto 2.0.0. Use ``order_uris`` instead (https://github.com/ansible-collections/community.crypto/pull/178). + +Bugfixes +-------- + +- openssl_csr - no longer fails when comparing CSR without basic constraint when ``basic_constraints`` is specified (https://github.com/ansible-collections/community.crypto/issues/179, https://github.com/ansible-collections/community.crypto/pull/180). + v1.4.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 5f532287..1097ad2d 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -319,3 +319,25 @@ releases: - 173-acme_certificate-wrong-challenge.yml - acme-module-utils-relicense.yml release_date: '2021-01-26' + 1.5.0: + changes: + bugfixes: + - openssl_csr - no longer fails when comparing CSR without basic constraint + when ``basic_constraints`` is specified (https://github.com/ansible-collections/community.crypto/issues/179, + https://github.com/ansible-collections/community.crypto/pull/180). + deprecated_features: + - acme_account_info - when ``retrieve_orders=url_list``, ``orders`` will no + longer be returned in community.crypto 2.0.0. Use ``order_uris`` instead (https://github.com/ansible-collections/community.crypto/pull/178). + minor_changes: + - acme_account_info - when ``retrieve_orders`` is not ``ignore`` and the ACME + server allows to query orders, the new return value ``order_uris`` is always + populated with a list of URIs (https://github.com/ansible-collections/community.crypto/pull/178). + - luks_device - allow to specify sector size for LUKS2 containers with new ``sector_size`` + parameter (https://github.com/ansible-collections/community.crypto/pull/193). + release_summary: Regular feature and bugfix release. Deprecates a return value. + fragments: + - 1.5.0.yml + - 178-acme_account_info-orders-urls.yml + - 179-openssl-csr-basic-constraint.yml + - 193-luks_device-sector_size.yml + release_date: '2021-03-08' diff --git a/changelogs/fragments/1.5.0.yml b/changelogs/fragments/1.5.0.yml deleted file mode 100644 index 9b1e3c57..00000000 --- a/changelogs/fragments/1.5.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular feature and bugfix release. Deprecates a return value. \ No newline at end of file diff --git a/changelogs/fragments/178-acme_account_info-orders-urls.yml b/changelogs/fragments/178-acme_account_info-orders-urls.yml deleted file mode 100644 index 0e006fb0..00000000 --- a/changelogs/fragments/178-acme_account_info-orders-urls.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: -- "acme_account_info - when ``retrieve_orders`` is not ``ignore`` and the ACME server allows to query orders, the new return value ``order_uris`` is always populated with a list of URIs (https://github.com/ansible-collections/community.crypto/pull/178)." -deprecated_features: -- "acme_account_info - when ``retrieve_orders=url_list``, ``orders`` will no longer be returned in community.crypto 2.0.0. Use ``order_uris`` instead (https://github.com/ansible-collections/community.crypto/pull/178)." diff --git a/changelogs/fragments/179-openssl-csr-basic-constraint.yml b/changelogs/fragments/179-openssl-csr-basic-constraint.yml deleted file mode 100644 index 4afe2c5a..00000000 --- a/changelogs/fragments/179-openssl-csr-basic-constraint.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "openssl_csr - no longer fails when comparing CSR without basic constraint when ``basic_constraints`` is specified (https://github.com/ansible-collections/community.crypto/issues/179, https://github.com/ansible-collections/community.crypto/pull/180)." diff --git a/changelogs/fragments/193-luks_device-sector_size.yml b/changelogs/fragments/193-luks_device-sector_size.yml deleted file mode 100644 index 106abb9c..00000000 --- a/changelogs/fragments/193-luks_device-sector_size.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "luks_device - allow to specify sector size for LUKS2 containers with new ``sector_size`` parameter (https://github.com/ansible-collections/community.crypto/pull/193)."