diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 54f742f..3c6fb57 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,19 @@ Valid.Nsupdate_zone Collection Release Notes .. 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 ====== diff --git a/galaxy.yml b/galaxy.yml index 9fa6f5d..4d2cb5c 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -3,7 +3,7 @@ namespace: "valid" name: "nsupdate_zone" -version: 1.3.0 +version: 1.3.1 readme: README.md authors: - Dan Kercher diff --git a/plugins/modules/nsupdate_zone.py b/plugins/modules/nsupdate_zone.py index 34d6f79..3f527fd 100644 --- a/plugins/modules/nsupdate_zone.py +++ b/plugins/modules/nsupdate_zone.py @@ -923,7 +923,7 @@ def main() -> None: dns_server=dict(type='str') ), supports_check_mode=True, - supports_diff_mode=True, + supports_diff=True, required_together=[ ['key_name', 'key_secret'] ] diff --git a/valid-nsupdate_zone-1.3.0.tar.gz b/valid-nsupdate_zone-1.3.0.tar.gz new file mode 100644 index 0000000..12e400a Binary files /dev/null and b/valid-nsupdate_zone-1.3.0.tar.gz differ