diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4a2e749..8792c4f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,25 @@ Tools for ACME Release Notes .. contents:: Topics +v0.8.0 +====== + +Release Summary +--------------- + +Feature release with improved creation of DNS records for Route53 and Hosttech. + +Major Changes +------------- + +- The collection now depends on community.aws >= 6.3.0 and amazon.aws >= 6.3.0 to improve stability of the acme_certificate role with Amazon's Route 53 DNS (https://github.com/felixfontein/ansible-acme/pull/62). + +Minor Changes +------------- + +- acme_certificate role - increase maximum wait for Hosttech DNS records from 2 to 5 minutes (https://github.com/felixfontein/ansible-acme/pull/64). +- acme_certificate role - use community.aws.route53_wait instead of community.dns.wait_for_txt when using Amazon's Route 53 DNS to improve stability (https://github.com/felixfontein/ansible-acme/issues/57, https://github.com/felixfontein/ansible-acme/pull/62). + v0.7.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index c63ed18..d74f734 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -185,3 +185,22 @@ releases: - 0.7.0.yml - 55-cloudflare.yml release_date: '2023-06-15' + 0.8.0: + changes: + major_changes: + - The collection now depends on community.aws >= 6.3.0 and amazon.aws >= 6.3.0 + to improve stability of the acme_certificate role with Amazon's Route 53 DNS + (https://github.com/felixfontein/ansible-acme/pull/62). + minor_changes: + - acme_certificate role - increase maximum wait for Hosttech DNS records from + 2 to 5 minutes (https://github.com/felixfontein/ansible-acme/pull/64). + - acme_certificate role - use community.aws.route53_wait instead of community.dns.wait_for_txt + when using Amazon's Route 53 DNS to improve stability (https://github.com/felixfontein/ansible-acme/issues/57, + https://github.com/felixfontein/ansible-acme/pull/62). + release_summary: Feature release with improved creation of DNS records for Route53 + and Hosttech. + fragments: + - 0.8.0.yml + - 62-route53_wait.yml + - 64-hosttech-wait.yml + release_date: '2023-09-07' diff --git a/changelogs/fragments/0.8.0.yml b/changelogs/fragments/0.8.0.yml deleted file mode 100644 index 21fd0ef..0000000 --- a/changelogs/fragments/0.8.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Feature release with improved creation of DNS records for Route53 and Hosttech. diff --git a/changelogs/fragments/62-route53_wait.yml b/changelogs/fragments/62-route53_wait.yml deleted file mode 100644 index 63cbac1..0000000 --- a/changelogs/fragments/62-route53_wait.yml +++ /dev/null @@ -1,4 +0,0 @@ -major_changes: - - "The collection now depends on community.aws >= 6.3.0 and amazon.aws >= 6.3.0 to improve stability of the acme_certificate role with Amazon's Route 53 DNS (https://github.com/felixfontein/ansible-acme/pull/62)." -minor_changes: - - "acme_certificate role - use community.aws.route53_wait instead of community.dns.wait_for_txt when using Amazon's Route 53 DNS to improve stability (https://github.com/felixfontein/ansible-acme/issues/57, https://github.com/felixfontein/ansible-acme/pull/62)." diff --git a/changelogs/fragments/64-hosttech-wait.yml b/changelogs/fragments/64-hosttech-wait.yml deleted file mode 100644 index bcf0879..0000000 --- a/changelogs/fragments/64-hosttech-wait.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "acme_certificate role - increase maximum wait for Hosttech DNS records from 2 to 5 minutes (https://github.com/felixfontein/ansible-acme/pull/64)."