Skip to content

Commit

Permalink
Release 0.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Jan 2, 2023
1 parent 56f2d3f commit a024de4
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 12 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,38 @@ Tools for ACME Release Notes
.. contents:: Topics


v0.6.0
======

Release Summary
---------------

Collection dependency update with bugfixes and new features.

Minor Changes
-------------

- acme_certificate role - add new option ``acme_certificate_dns_substitution`` to allow substituting DNS names during DNS record creation for use with CNAMEs (https://github.com/felixfontein/ansible-acme/pull/41).
- acme_certificate role - added new option ``acme_certificate_verify_auth`` which allows to turn of validation that credentials for DNS modules are passed as role arguments. When disabled, you are responsible to pass credentials with module defaults or in other ways supported by the specific modules (https://github.com/felixfontein/ansible-acme/issues/40, https://github.com/felixfontein/ansible-acme/pull/42).

Breaking Changes / Porting Guide
--------------------------------

- The collection no longer depends on community.aws >= 1.0.0, but on amazon.aws >= 5.0.0. The community.aws.route53 module was migrated to amazon.aws, which allows us to depend on one collection less. Note that if you use this collection with Ansible, you need Ansible 7.0.0 or newer; also note that Ansible 6.x.0 and before are End of Life by now (https://github.com/felixfontein/ansible-acme/pull/39).

Bugfixes
--------

- Avoid double failure of acme_certificate rescue task when first task in block fails (https://github.com/felixfontein/ansible-acme/pull/38).

New Plugins
-----------

Filter
~~~~~~

- felixfontein.acme._substitute_dns - [INTERNAL] Adjust DNS name according to a CNAME substitution map

v0.5.2
======

Expand Down
33 changes: 33 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,36 @@ releases:
fragments:
- 0.5.2.yml
release_date: '2022-09-18'
0.6.0:
changes:
breaking_changes:
- The collection no longer depends on community.aws >= 1.0.0, but on amazon.aws
>= 5.0.0. The community.aws.route53 module was migrated to amazon.aws, which
allows us to depend on one collection less. Note that if you use this collection
with Ansible, you need Ansible 7.0.0 or newer; also note that Ansible 6.x.0
and before are End of Life by now (https://github.com/felixfontein/ansible-acme/pull/39).
bugfixes:
- Avoid double failure of acme_certificate rescue task when first task in block
fails (https://github.com/felixfontein/ansible-acme/pull/38).
minor_changes:
- acme_certificate role - add new option ``acme_certificate_dns_substitution``
to allow substituting DNS names during DNS record creation for use with CNAMEs
(https://github.com/felixfontein/ansible-acme/pull/41).
- acme_certificate role - added new option ``acme_certificate_verify_auth``
which allows to turn of validation that credentials for DNS modules are passed
as role arguments. When disabled, you are responsible to pass credentials
with module defaults or in other ways supported by the specific modules (https://github.com/felixfontein/ansible-acme/issues/40,
https://github.com/felixfontein/ansible-acme/pull/42).
release_summary: Collection dependency update with bugfixes and new features.
fragments:
- 0.6.0.yml
- 38-acme-fail.yml
- 41-cname-subs.yml
- 42-auth.yml
plugins:
filter:
- description: '[INTERNAL] Adjust DNS name according to a CNAME substitution
map'
name: _substitute_dns
namespace: null
release_date: '2023-01-02'
3 changes: 0 additions & 3 deletions changelogs/fragments/0.6.0.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/38-acme-fail.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/41-cname-subs.yml

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/42-auth.yml

This file was deleted.

0 comments on commit a024de4

Please sign in to comment.