From 3bbf2e3cd56775096fc8ce69e281142472b73cac Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Wed, 10 May 2023 13:17:59 -0500 Subject: [PATCH] Release 1.5.4 Signed-off-by: Adam Miller --- CHANGELOG.rst | 18 +++++++++++++ changelogs/changelog.yaml | 26 +++++++++++++++++++ ...x-profile_tasks-callback-documentation.yml | 3 --- ...402_firewall_fix_offline_interface_add.yml | 3 --- ...squerade_icmp_block_inversion_bugfixes.yml | 3 --- .../fragments/440-json-add-path-field.yaml | 2 -- .../441-json-add-indent-parameter.yaml | 2 -- .../fragments/445_ci_support_stable-215.yml | 3 --- .../fragments/448_support_new_sanity_test.yml | 3 --- .../451_firewall_fix_protocol_parameter.yml | 3 --- .../fragments/456_sysctl_fix_nonetype.yml | 3 --- galaxy.yml | 2 +- 12 files changed, 45 insertions(+), 26 deletions(-) delete mode 100644 changelogs/fragments/343-fix-profile_tasks-callback-documentation.yml delete mode 100644 changelogs/fragments/402_firewall_fix_offline_interface_add.yml delete mode 100644 changelogs/fragments/404_firewalld_masquerade_icmp_block_inversion_bugfixes.yml delete mode 100644 changelogs/fragments/440-json-add-path-field.yaml delete mode 100644 changelogs/fragments/441-json-add-indent-parameter.yaml delete mode 100644 changelogs/fragments/445_ci_support_stable-215.yml delete mode 100644 changelogs/fragments/448_support_new_sanity_test.yml delete mode 100644 changelogs/fragments/451_firewall_fix_protocol_parameter.yml delete mode 100644 changelogs/fragments/456_sysctl_fix_nonetype.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 06cdf22302..ffb9afa303 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,24 @@ ansible.posix Release Notes .. contents:: Topics +v1.5.4 +====== + +Minor Changes +------------- + +- json and jsonl - Add the ``ANSIBLE_JSON_INDENT`` parameter +- json and jsonl - Add the ``path`` attribute into the play and task output + +Bugfixes +-------- + +- Fix sysctl integration test failing on newer versions of core. Previously NoneType was allowable, now it fails to convert to a str type. +- Support new sanity test for the ansible-core devel branch CI test (https://github.com/ansible-collections/ansible.posix/issues/446). +- firewall - Fix issue where adding an interface to a zone would fail when the daemon is offline +- firewall - Fix issue where opening a specific port resulted in opening the whole protocol of the specified port +- firewalld - Consider value of masquerade and icmp_block_inversion parameters when a boolean like value is passed + v1.5.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 0b59c25052..299f16821e 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -321,3 +321,29 @@ releases: - 434-fix-rhel_facts-exit_json.yml - 535-add-jsonl-callback.yml release_date: '2023-04-07' + 1.5.4: + changes: + bugfixes: + - Fix sysctl integration test failing on newer versions of core. Previously + NoneType was allowable, now it fails to convert to a str type. + - Support new sanity test for the ansible-core devel branch CI test (https://github.com/ansible-collections/ansible.posix/issues/446). + - firewall - Fix issue where adding an interface to a zone would fail when the + daemon is offline + - firewall - Fix issue where opening a specific port resulted in opening the + whole protocol of the specified port + - firewalld - Consider value of masquerade and icmp_block_inversion parameters + when a boolean like value is passed + minor_changes: + - json and jsonl - Add the ``ANSIBLE_JSON_INDENT`` parameter + - json and jsonl - Add the ``path`` attribute into the play and task output + fragments: + - 343-fix-profile_tasks-callback-documentation.yml + - 402_firewall_fix_offline_interface_add.yml + - 404_firewalld_masquerade_icmp_block_inversion_bugfixes.yml + - 440-json-add-path-field.yaml + - 441-json-add-indent-parameter.yaml + - 445_ci_support_stable-215.yml + - 448_support_new_sanity_test.yml + - 451_firewall_fix_protocol_parameter.yml + - 456_sysctl_fix_nonetype.yml + release_date: '2023-05-10' diff --git a/changelogs/fragments/343-fix-profile_tasks-callback-documentation.yml b/changelogs/fragments/343-fix-profile_tasks-callback-documentation.yml deleted file mode 100644 index 06d1c8d94f..0000000000 --- a/changelogs/fragments/343-fix-profile_tasks-callback-documentation.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - fix profile_tasks callback documentation by using correct markup diff --git a/changelogs/fragments/402_firewall_fix_offline_interface_add.yml b/changelogs/fragments/402_firewall_fix_offline_interface_add.yml deleted file mode 100644 index e59a45d5ee..0000000000 --- a/changelogs/fragments/402_firewall_fix_offline_interface_add.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - firewall - Fix issue where adding an interface to a zone would fail when the daemon is offline diff --git a/changelogs/fragments/404_firewalld_masquerade_icmp_block_inversion_bugfixes.yml b/changelogs/fragments/404_firewalld_masquerade_icmp_block_inversion_bugfixes.yml deleted file mode 100644 index 144b80e70f..0000000000 --- a/changelogs/fragments/404_firewalld_masquerade_icmp_block_inversion_bugfixes.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - firewalld - Consider value of masquerade and icmp_block_inversion parameters when a boolean like value is passed diff --git a/changelogs/fragments/440-json-add-path-field.yaml b/changelogs/fragments/440-json-add-path-field.yaml deleted file mode 100644 index 4c15dcca0c..0000000000 --- a/changelogs/fragments/440-json-add-path-field.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - json and jsonl - Add the ``path`` attribute into the play and task output diff --git a/changelogs/fragments/441-json-add-indent-parameter.yaml b/changelogs/fragments/441-json-add-indent-parameter.yaml deleted file mode 100644 index 8a0359b9ac..0000000000 --- a/changelogs/fragments/441-json-add-indent-parameter.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - json and jsonl - Add the ``ANSIBLE_JSON_INDENT`` parameter diff --git a/changelogs/fragments/445_ci_support_stable-215.yml b/changelogs/fragments/445_ci_support_stable-215.yml deleted file mode 100644 index 7ee3c5fc2c..0000000000 --- a/changelogs/fragments/445_ci_support_stable-215.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - CI - update AZP to support stable-2.15 branch (https://github.com/ansible-collections/ansible.posix/issues/444). diff --git a/changelogs/fragments/448_support_new_sanity_test.yml b/changelogs/fragments/448_support_new_sanity_test.yml deleted file mode 100644 index a7faa913dd..0000000000 --- a/changelogs/fragments/448_support_new_sanity_test.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - Support new sanity test for the ansible-core devel branch CI test (https://github.com/ansible-collections/ansible.posix/issues/446). diff --git a/changelogs/fragments/451_firewall_fix_protocol_parameter.yml b/changelogs/fragments/451_firewall_fix_protocol_parameter.yml deleted file mode 100644 index 9dfc6bda00..0000000000 --- a/changelogs/fragments/451_firewall_fix_protocol_parameter.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - firewall - Fix issue where opening a specific port resulted in opening the whole protocol of the specified port diff --git a/changelogs/fragments/456_sysctl_fix_nonetype.yml b/changelogs/fragments/456_sysctl_fix_nonetype.yml deleted file mode 100644 index 0bcb27f660..0000000000 --- a/changelogs/fragments/456_sysctl_fix_nonetype.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "Fix sysctl integration test failing on newer versions of core. Previously NoneType was allowable, now it fails to convert to a str type." diff --git a/galaxy.yml b/galaxy.yml index 5eec30ccd9..1d937fb429 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: ansible name: posix -version: 1.5.3 +version: 1.5.4 readme: README.md authors: - Ansible (github.com/ansible)