diff --git a/README.md b/README.md index c2255879f3..1f9e5f11f1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The dnacenter-ansible project provides an Ansible collection for managing and automating your Cisco DNA Center environment. It consists of a set of modules and roles for performing tasks related to DNA Center. -This collection has been tested and supports Cisco DNA Center 2.3.3.0. +This collection has been tested and supports Cisco DNA Center 2.3.5.3. *Note: This collection is not compatible with versions of Ansible before v2.8.* @@ -19,7 +19,7 @@ The following table shows the supported versions. | 2.2.2.3 | 3.3.1 | 2.3.3 | | 2.2.3.3 | 6.4.0 | 2.4.11 | | 2.3.3.0 | 6.6.4 | 2.5.5 | -| 2.3.5.3 | 6.7.1 | 2.6.0 | +| 2.3.5.3 | 6.7.2 | 2.6.0 | If your Ansible collection is older please consider updating it first. @@ -76,7 +76,7 @@ export DNAC_HOST= export DNAC_PORT=443 # optional, defaults to 443 export DNAC_USERNAME= export DNAC_PASSWORD= -export DNAC_VERSION=2.3.3.0 # optional, defaults to 2.3.3.0. See the Compatibility matrix +export DNAC_VERSION=2.3.5.3 # optional, defaults to 2.3.5.3. See the Compatibility matrix export DNAC_VERIFY=False # optional, defaults to True export DNAC_DEBUG=False # optional, defaults to False ``` @@ -114,7 +114,7 @@ dnac_host: dnac_port: 443 # optional, defaults to 443 dnac_username: dnac_password: -dnac_version: 2.3.3.0 # optional, defaults to 2.3.3.0. See the Compatibility matrix +dnac_version: 2.3.5.3 # optional, defaults to 2.3.5.3. See the Compatibility matrix dnac_verify: False # optional, defaults to True dnac_debug: False # optional, defaults to False ``` diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 01ef54bef9..e8f9f436aa 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -683,4 +683,10 @@ releases: changes: release_summary: Adding documentation for 2.3.5.3 API minor_changes: - - Adding documentation for 2.3.5.3 API \ No newline at end of file + - Adding documentation for 2.3.5.3 API + 6.7.2: + release_date: "2023-05-09" + changes: + release_summary: Adding documentation for 2.3.5.3 API + minor_changes: + - Updating documentation, collection supports 2.3.5.3 DNA Center API Version. \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index 2f64e92677..c60a114fe1 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: cisco name: dnac -version: 6.7.1 +version: 6.7.2 readme: README.md authors: - Rafael Campos diff --git a/playbooks/credentials.template b/playbooks/credentials.template index c4d33d0daf..e621bdaa5e 100644 --- a/playbooks/credentials.template +++ b/playbooks/credentials.template @@ -3,6 +3,6 @@ dnac_host: dnac_port: 443 dnac_username: dnac_password: -dnac_version: 2.3.3.0 +dnac_version: 2.3.5.3 dnac_verify: False dnac_debug: False \ No newline at end of file diff --git a/plugins/action/site_assign_device.py b/plugins/action/site_assign_device.py index 40ed9f1a33..dec7df437c 100644 --- a/plugins/action/site_assign_device.py +++ b/plugins/action/site_assign_device.py @@ -78,7 +78,7 @@ def run(self, tmp=None, task_vars=None): Display().warning("This module is currently unmaintained " "and will be removed in future releases." "New module is assign_device_to_site " - "for 2.3.3.0 or higher") + "for 2.3.5.3 or higher") dnac = DNACSDK(params=self._task.args) diff --git a/plugins/doc_fragments/module.py b/plugins/doc_fragments/module.py index e1199f1d3b..6c92fb75fc 100644 --- a/plugins/doc_fragments/module.py +++ b/plugins/doc_fragments/module.py @@ -43,7 +43,7 @@ class ModuleDocFragment(object): description: - Informs the SDK which version of Cisco DNA Center to use. type: str - default: 2.3.3.0 + default: 2.3.5.3 dnac_debug: description: - Flag for Cisco DNA Center SDK to enable debugging. diff --git a/plugins/doc_fragments/module_info.py b/plugins/doc_fragments/module_info.py index 3e8c533d10..7ac68f449e 100644 --- a/plugins/doc_fragments/module_info.py +++ b/plugins/doc_fragments/module_info.py @@ -43,7 +43,7 @@ class ModuleDocFragment(object): description: - Informs the SDK which version of Cisco DNA Center to use. type: str - default: 2.3.3.0 + default: 2.3.5.3 dnac_debug: description: - Flag for Cisco DNA Center SDK to enable debugging. diff --git a/plugins/plugin_utils/dnac.py b/plugins/plugin_utils/dnac.py index b5e37c74a2..80afbe39a6 100644 --- a/plugins/plugin_utils/dnac.py +++ b/plugins/plugin_utils/dnac.py @@ -140,7 +140,7 @@ def dnac_argument_spec(): dnac_username=dict(type="str", fallback=(env_fallback, ['DNAC_USERNAME']), default="admin", aliases=["user"]), dnac_password=dict(type="str", fallback=(env_fallback, ['DNAC_PASSWORD']), no_log=True), dnac_verify=dict(type="bool", fallback=(env_fallback, ['DNAC_VERIFY']), default=True), - dnac_version=dict(type="str", fallback=(env_fallback, ['DNAC_VERSION']), default="2.3.3.0"), + dnac_version=dict(type="str", fallback=(env_fallback, ['DNAC_VERSION']), default="2.3.5.3"), dnac_debug=dict(type="bool", fallback=(env_fallback, ['DNAC_DEBUG']), default=False), validate_response_schema=dict(type="bool", fallback=(env_fallback, ['VALIDATE_RESPONSE_SCHEMA']), default=True), )