diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5a0a57a..99fd1d8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,18 @@ Ansible Utils Collection Release Notes .. contents:: Topics +v2.9.0 +====== + +Minor Changes +------------- + +- to_xml - Added support to disable xml declartion with full_document flag. + +Bugfixes +-------- + +- mac - reorganize regexes to work around 3.11 regex changes. (https://github.com/ansible-collections/ansible.utils/pull/231) v2.8.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 30bd27e..0ebb2c0 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -309,3 +309,15 @@ releases: - pre-commit.yaml - to_xml_indent_with_spaces.yaml release_date: "2022-11-30" + 2.9.0: + changes: + bugfixes: + - mac - reorganize regexes to work around 3.11 regex changes. (https://github.com/ansible-collections/ansible.utils/pull/231) + minor_changes: + - to_xml - Added support to disable xml declartion with full_document flag. + fragments: + - 3.11_fixes.yaml + - add_ipfilter_doc_ut.yaml + - fix_ansible_lint.yaml + - to_xml_disable_xml_declaration.yaml + release_date: "2023-01-30" diff --git a/changelogs/fragments/3.11_fixes.yaml b/changelogs/fragments/3.11_fixes.yaml deleted file mode 100644 index 283e503..0000000 --- a/changelogs/fragments/3.11_fixes.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - mac - reorganize regexes to work around 3.11 regex changes. (https://github.com/ansible-collections/ansible.utils/pull/231) diff --git a/changelogs/fragments/add_ipfilter_doc_ut.yaml b/changelogs/fragments/add_ipfilter_doc_ut.yaml deleted file mode 100644 index d032bcf..0000000 --- a/changelogs/fragments/add_ipfilter_doc_ut.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -trivial: - - Add example for IPv6 in ipsubnet filter documentation. - - Fix typo in ipsubnet documentation. - - Add unit tests for ipsubnet filter. diff --git a/changelogs/fragments/fix_ansible_lint.yaml b/changelogs/fragments/fix_ansible_lint.yaml deleted file mode 100644 index c0dc1b7..0000000 --- a/changelogs/fragments/fix_ansible_lint.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - Fix ansible-lint errors diff --git a/changelogs/fragments/to_xml_disable_xml_declaration.yaml b/changelogs/fragments/to_xml_disable_xml_declaration.yaml deleted file mode 100644 index 711b2a5..0000000 --- a/changelogs/fragments/to_xml_disable_xml_declaration.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - >- - to_xml - Added support to disable xml declartion with full_document flag.