Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
urohit011 committed Jun 21, 2024
2 parents 9c01c52 + 4e6e511 commit b6fda96
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This collection packages and distributes modules, and plugins.

## Requirements

- ansible >= 2.14
- ansible >= 2.15
- packaging

## Python Version Notice
Expand Down
8 changes: 8 additions & 0 deletions ansible_collections/f5networks/f5_modules/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
=======

Expand Down
2 changes: 1 addition & 1 deletion ansible_collections/f5networks/f5_modules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This collection packages and distributes modules, and plugins.

## Requirements

- ansible >= 2.14
- ansible >= 2.15
- packaging

## Python Version Notice
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion ansible_collections/f5networks/f5_modules/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ tags:
- networking
- bigip
- bigiq
version: 1.28.0
version: 1.29.0
2 changes: 1 addition & 1 deletion ansible_collections/f5networks/f5_modules/meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
requires_ansible: '>=2.14.0'
requires_ansible: '>=2.15.0'
plugin_routing:
modules:
bigip_device_facts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,6 @@ class Parameters(AnsibleF5Parameters):
'priority_group',
'fqdn_auto_populate',
'session',
'state',
'fqdn',
'address',
'monitors',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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(
Expand Down

0 comments on commit b6fda96

Please sign in to comment.