Prepare for 2.9.0 (#238)

pull/239/head
Ashwini Mhatre 2023-01-30 14:25:55 +05:30 committed by GitHub
parent fca1229097
commit b18c096d06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 24 additions and 15 deletions

View File

@ -4,6 +4,18 @@ Ansible Utils Collection Release Notes
.. contents:: Topics .. 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 v2.8.0
====== ======

View File

@ -309,3 +309,15 @@ releases:
- pre-commit.yaml - pre-commit.yaml
- to_xml_indent_with_spaces.yaml - to_xml_indent_with_spaces.yaml
release_date: "2022-11-30" 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"

View File

@ -1,3 +0,0 @@
---
bugfixes:
- mac - reorganize regexes to work around 3.11 regex changes. (https://github.com/ansible-collections/ansible.utils/pull/231)

View File

@ -1,5 +0,0 @@
---
trivial:
- Add example for IPv6 in ipsubnet filter documentation.
- Fix typo in ipsubnet documentation.
- Add unit tests for ipsubnet filter.

View File

@ -1,3 +0,0 @@
---
trivial:
- Fix ansible-lint errors

View File

@ -1,4 +0,0 @@
---
minor_changes:
- >-
to_xml - Added support to disable xml declartion with full_document flag.