From ca41e7831487e8a4f5e12092acc63384b83be995 Mon Sep 17 00:00:00 2001 From: wypior Date: Tue, 13 Feb 2024 00:01:06 +0000 Subject: [PATCH 1/5] Merging devel changes - 2024-02-13T00:00:49Z --- ansible_collections/f5networks/f5_modules/galaxy.yml | 2 +- .../f5networks/f5_modules/plugins/module_utils/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible_collections/f5networks/f5_modules/galaxy.yml b/ansible_collections/f5networks/f5_modules/galaxy.yml index e923b41..15dbe06 100644 --- a/ansible_collections/f5networks/f5_modules/galaxy.yml +++ b/ansible_collections/f5networks/f5_modules/galaxy.yml @@ -19,4 +19,4 @@ tags: - networking - bigip - bigiq -version: 1.28.0 +version: 1.29.0-devel diff --git a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py index 00be178..086f27a 100644 --- a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py +++ b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py @@ -4,4 +4,4 @@ # GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # This collection version needs to be updated at each release -CURRENT_COLL_VERSION = "1.28.0" +CURRENT_COLL_VERSION = "1.29.0-devel" From f842c051091c62b5127927802277bf2d85b5a8cd Mon Sep 17 00:00:00 2001 From: wypior Date: Wed, 5 Jun 2024 23:02:31 +0000 Subject: [PATCH 2/5] Merging devel changes - 2024-06-05T23:02:19Z --- .../f5networks/f5_modules/changelogs/fragments/issue_2393.yaml | 3 +++ .../f5networks/f5_modules/plugins/modules/bigip_pool_member.py | 1 - .../tests/unit/modules/network/f5/test_bigip_pool_member.py | 3 --- 3 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml diff --git a/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml b/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml new file mode 100644 index 0000000..7969e36 --- /dev/null +++ b/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml @@ -0,0 +1,3 @@ +--- +minor_changes: + - bigip_pool_member - Removed state from the Returnables. diff --git a/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_pool_member.py b/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_pool_member.py index b1ddbf6..89578a9 100644 --- a/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_pool_member.py +++ b/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_pool_member.py @@ -617,7 +617,6 @@ class Parameters(AnsibleF5Parameters): 'priority_group', 'fqdn_auto_populate', 'session', - 'state', 'fqdn', 'address', 'monitors', diff --git a/ansible_collections/f5networks/f5_modules/tests/unit/modules/network/f5/test_bigip_pool_member.py b/ansible_collections/f5networks/f5_modules/tests/unit/modules/network/f5/test_bigip_pool_member.py index 42dd39c..79df7cd 100644 --- a/ansible_collections/f5networks/f5_modules/tests/unit/modules/network/f5/test_bigip_pool_member.py +++ b/ansible_collections/f5networks/f5_modules/tests/unit/modules/network/f5/test_bigip_pool_member.py @@ -123,7 +123,6 @@ def test_create_reuse_node_with_name(self, *args): assert results['changed'] is True assert results['fqdn_auto_populate'] is True assert results['fqdn'] == 'foo.bar.com' - assert results['state'] == 'present' def test_create_reuse_node_with_ipv4_address(self, *args): # Configure the arguments that would be sent to the Ansible module @@ -160,7 +159,6 @@ def test_create_reuse_node_with_ipv4_address(self, *args): assert results['changed'] is True assert results['fqdn_auto_populate'] is False assert results['address'] == '7.3.67.8' - assert results['state'] == 'present' def test_create_reuse_node_with_fqdn_auto_populate(self, *args): # Configure the arguments that would be sent to the Ansible module @@ -198,7 +196,6 @@ def test_create_reuse_node_with_fqdn_auto_populate(self, *args): assert results['changed'] is True assert results['fqdn_auto_populate'] is True assert results['fqdn'] == 'foo.bar.com' - assert results['state'] == 'present' def test_create_aggregate_pool_members(self, *args): set_module_args(dict( From 07752e9e823eff27cadb15232fb113fe8febde19 Mon Sep 17 00:00:00 2001 From: rupadhyay Date: Fri, 21 Jun 2024 07:50:11 +0000 Subject: [PATCH 3/5] Version 1.29.0 release --- ansible_collections/f5networks/f5_modules/CHANGELOG.rst | 8 ++++++++ .../f5networks/f5_modules/changelogs/changelog.yaml | 7 +++++++ .../f5_modules/changelogs/fragments/issue_2393.yaml | 3 --- ansible_collections/f5networks/f5_modules/galaxy.yml | 2 +- .../f5networks/f5_modules/plugins/module_utils/version.py | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) delete mode 100644 ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml diff --git a/ansible_collections/f5networks/f5_modules/CHANGELOG.rst b/ansible_collections/f5networks/f5_modules/CHANGELOG.rst index 4c8021d..0a71759 100644 --- a/ansible_collections/f5networks/f5_modules/CHANGELOG.rst +++ b/ansible_collections/f5networks/f5_modules/CHANGELOG.rst @@ -4,6 +4,14 @@ F5Networks F5\_Modules Collection Release Notes .. contents:: Topics +v1.29.0 +======= + +Minor Changes +------------- + +- bigip_pool_member - Removed state from the Returnables. + v1.28.0 ======= diff --git a/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml b/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml index 6213c69..70abc00 100644 --- a/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml +++ b/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml @@ -1067,6 +1067,13 @@ releases: - fix-gtm-topo-region.yaml - fix-ssl-key-cert-passphrase-bug.yaml release_date: '2024-02-12' + 1.29.0: + changes: + minor_changes: + - bigip_pool_member - Removed state from the Returnables. + fragments: + - issue_2393.yaml + release_date: '2024-06-21' 1.3.0: changes: bugfixes: diff --git a/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml b/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml deleted file mode 100644 index 7969e36..0000000 --- a/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - bigip_pool_member - Removed state from the Returnables. diff --git a/ansible_collections/f5networks/f5_modules/galaxy.yml b/ansible_collections/f5networks/f5_modules/galaxy.yml index 15dbe06..67bf31e 100644 --- a/ansible_collections/f5networks/f5_modules/galaxy.yml +++ b/ansible_collections/f5networks/f5_modules/galaxy.yml @@ -19,4 +19,4 @@ tags: - networking - bigip - bigiq -version: 1.29.0-devel +version: 1.29.0 diff --git a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py index 086f27a..22acd0f 100644 --- a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py +++ b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py @@ -4,4 +4,4 @@ # GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # This collection version needs to be updated at each release -CURRENT_COLL_VERSION = "1.29.0-devel" +CURRENT_COLL_VERSION = "1.29.0" From 01f009b36c724d0a5816065c170b4d9e63542859 Mon Sep 17 00:00:00 2001 From: Rohit UPADHYAY Date: Fri, 21 Jun 2024 01:47:24 -0700 Subject: [PATCH 4/5] Revert "Version 1.29.0 release" This reverts commit 07752e9e823eff27cadb15232fb113fe8febde19 --- ansible_collections/f5networks/f5_modules/CHANGELOG.rst | 8 -------- .../f5networks/f5_modules/changelogs/changelog.yaml | 7 ------- .../f5_modules/changelogs/fragments/issue_2393.yaml | 3 +++ ansible_collections/f5networks/f5_modules/galaxy.yml | 2 +- .../f5networks/f5_modules/plugins/module_utils/version.py | 2 +- 5 files changed, 5 insertions(+), 17 deletions(-) create mode 100644 ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml diff --git a/ansible_collections/f5networks/f5_modules/CHANGELOG.rst b/ansible_collections/f5networks/f5_modules/CHANGELOG.rst index 0a71759..4c8021d 100644 --- a/ansible_collections/f5networks/f5_modules/CHANGELOG.rst +++ b/ansible_collections/f5networks/f5_modules/CHANGELOG.rst @@ -4,14 +4,6 @@ F5Networks F5\_Modules Collection Release Notes .. contents:: Topics -v1.29.0 -======= - -Minor Changes -------------- - -- bigip_pool_member - Removed state from the Returnables. - v1.28.0 ======= diff --git a/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml b/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml index 70abc00..6213c69 100644 --- a/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml +++ b/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml @@ -1067,13 +1067,6 @@ releases: - fix-gtm-topo-region.yaml - fix-ssl-key-cert-passphrase-bug.yaml release_date: '2024-02-12' - 1.29.0: - changes: - minor_changes: - - bigip_pool_member - Removed state from the Returnables. - fragments: - - issue_2393.yaml - release_date: '2024-06-21' 1.3.0: changes: bugfixes: diff --git a/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml b/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml new file mode 100644 index 0000000..7969e36 --- /dev/null +++ b/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml @@ -0,0 +1,3 @@ +--- +minor_changes: + - bigip_pool_member - Removed state from the Returnables. diff --git a/ansible_collections/f5networks/f5_modules/galaxy.yml b/ansible_collections/f5networks/f5_modules/galaxy.yml index 67bf31e..15dbe06 100644 --- a/ansible_collections/f5networks/f5_modules/galaxy.yml +++ b/ansible_collections/f5networks/f5_modules/galaxy.yml @@ -19,4 +19,4 @@ tags: - networking - bigip - bigiq -version: 1.29.0 +version: 1.29.0-devel diff --git a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py index 22acd0f..086f27a 100644 --- a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py +++ b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py @@ -4,4 +4,4 @@ # GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # This collection version needs to be updated at each release -CURRENT_COLL_VERSION = "1.29.0" +CURRENT_COLL_VERSION = "1.29.0-devel" From 4e6e511c46da16e22747d7136eca62c405c4ed37 Mon Sep 17 00:00:00 2001 From: rupadhyay Date: Fri, 21 Jun 2024 10:15:05 +0000 Subject: [PATCH 5/5] Version 1.29.0 release --- README.md | 2 +- ansible_collections/f5networks/f5_modules/CHANGELOG.rst | 8 ++++++++ ansible_collections/f5networks/f5_modules/README.md | 2 +- .../f5networks/f5_modules/changelogs/changelog.yaml | 7 +++++++ .../f5_modules/changelogs/fragments/issue_2393.yaml | 3 --- ansible_collections/f5networks/f5_modules/galaxy.yml | 2 +- .../f5networks/f5_modules/meta/runtime.yml | 2 +- .../f5networks/f5_modules/plugins/module_utils/version.py | 2 +- 8 files changed, 20 insertions(+), 8 deletions(-) delete mode 100644 ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml diff --git a/README.md b/README.md index 299d0fe..8567484 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This collection packages and distributes modules, and plugins. ## Requirements - - ansible >= 2.14 + - ansible >= 2.15 - packaging ## Python Version Notice diff --git a/ansible_collections/f5networks/f5_modules/CHANGELOG.rst b/ansible_collections/f5networks/f5_modules/CHANGELOG.rst index 4c8021d..0a71759 100644 --- a/ansible_collections/f5networks/f5_modules/CHANGELOG.rst +++ b/ansible_collections/f5networks/f5_modules/CHANGELOG.rst @@ -4,6 +4,14 @@ F5Networks F5\_Modules Collection Release Notes .. contents:: Topics +v1.29.0 +======= + +Minor Changes +------------- + +- bigip_pool_member - Removed state from the Returnables. + v1.28.0 ======= diff --git a/ansible_collections/f5networks/f5_modules/README.md b/ansible_collections/f5networks/f5_modules/README.md index 299d0fe..8567484 100644 --- a/ansible_collections/f5networks/f5_modules/README.md +++ b/ansible_collections/f5networks/f5_modules/README.md @@ -5,7 +5,7 @@ This collection packages and distributes modules, and plugins. ## Requirements - - ansible >= 2.14 + - ansible >= 2.15 - packaging ## Python Version Notice diff --git a/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml b/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml index 6213c69..70abc00 100644 --- a/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml +++ b/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml @@ -1067,6 +1067,13 @@ releases: - fix-gtm-topo-region.yaml - fix-ssl-key-cert-passphrase-bug.yaml release_date: '2024-02-12' + 1.29.0: + changes: + minor_changes: + - bigip_pool_member - Removed state from the Returnables. + fragments: + - issue_2393.yaml + release_date: '2024-06-21' 1.3.0: changes: bugfixes: diff --git a/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml b/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml deleted file mode 100644 index 7969e36..0000000 --- a/ansible_collections/f5networks/f5_modules/changelogs/fragments/issue_2393.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - bigip_pool_member - Removed state from the Returnables. diff --git a/ansible_collections/f5networks/f5_modules/galaxy.yml b/ansible_collections/f5networks/f5_modules/galaxy.yml index 15dbe06..67bf31e 100644 --- a/ansible_collections/f5networks/f5_modules/galaxy.yml +++ b/ansible_collections/f5networks/f5_modules/galaxy.yml @@ -19,4 +19,4 @@ tags: - networking - bigip - bigiq -version: 1.29.0-devel +version: 1.29.0 diff --git a/ansible_collections/f5networks/f5_modules/meta/runtime.yml b/ansible_collections/f5networks/f5_modules/meta/runtime.yml index ba6612b..4c3adba 100644 --- a/ansible_collections/f5networks/f5_modules/meta/runtime.yml +++ b/ansible_collections/f5networks/f5_modules/meta/runtime.yml @@ -1,5 +1,5 @@ --- -requires_ansible: '>=2.14.0' +requires_ansible: '>=2.15.0' plugin_routing: modules: bigip_device_facts: diff --git a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py index 086f27a..22acd0f 100644 --- a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py +++ b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py @@ -4,4 +4,4 @@ # GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # This collection version needs to be updated at each release -CURRENT_COLL_VERSION = "1.29.0-devel" +CURRENT_COLL_VERSION = "1.29.0"