Fix AnsibleModule supports_diff parameter (v1.3.1)
- Correct supports_diff_mode to supports_diff in nsupdate_zone.py - This fixes: AnsibleModule.__init__() got an unexpected keyword argument 'supports_diff_mode' - Bump version to 1.3.1
This commit is contained in:
@@ -4,6 +4,19 @@ Valid.Nsupdate_zone Collection Release Notes
|
|||||||
|
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
v1.3.1
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Bugfix release for AnsibleModule parameter compatibility.
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Fix AnsibleModule initialization error by correcting supports_diff_mode to supports_diff
|
||||||
|
|
||||||
v1.2.0
|
v1.2.0
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
namespace: "valid"
|
namespace: "valid"
|
||||||
name: "nsupdate_zone"
|
name: "nsupdate_zone"
|
||||||
version: 1.3.0
|
version: 1.3.1
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Dan Kercher
|
- Dan Kercher
|
||||||
|
|||||||
@@ -923,7 +923,7 @@ def main() -> None:
|
|||||||
dns_server=dict(type='str')
|
dns_server=dict(type='str')
|
||||||
),
|
),
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
supports_diff_mode=True,
|
supports_diff=True,
|
||||||
required_together=[
|
required_together=[
|
||||||
['key_name', 'key_secret']
|
['key_name', 'key_secret']
|
||||||
]
|
]
|
||||||
|
|||||||
BIN
valid-nsupdate_zone-1.3.0.tar.gz
Normal file
BIN
valid-nsupdate_zone-1.3.0.tar.gz
Normal file
Binary file not shown.
Reference in New Issue
Block a user