Skip to content

Commit

Permalink
Merge pull request #100 from cisco-en-programmability/develop
Browse files Browse the repository at this point in the history
new version 6.7.2
  • Loading branch information
fmunozmiranda authored May 9, 2023
2 parents ab63222 + 86b035a commit a2abb01
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.*

Expand All @@ -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.

Expand Down Expand Up @@ -76,7 +76,7 @@ export DNAC_HOST=<A.B.C.D>
export DNAC_PORT=443 # optional, defaults to 443
export DNAC_USERNAME=<username>
export DNAC_PASSWORD=<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
```
Expand Down Expand Up @@ -114,7 +114,7 @@ dnac_host: <A.B.C.D>
dnac_port: 443 # optional, defaults to 443
dnac_username: <username>
dnac_password: <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
```
Expand Down
8 changes: 7 additions & 1 deletion changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- 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.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: cisco
name: dnac
version: 6.7.1
version: 6.7.2
readme: README.md
authors:
- Rafael Campos <rcampos@altus.cr>
Expand Down
2 changes: 1 addition & 1 deletion playbooks/credentials.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ dnac_host: <A.B.C.D>
dnac_port: 443
dnac_username: <username>
dnac_password: <password>
dnac_version: 2.3.3.0
dnac_version: 2.3.5.3
dnac_verify: False
dnac_debug: False
2 changes: 1 addition & 1 deletion plugins/action/site_assign_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion plugins/doc_fragments/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion plugins/doc_fragments/module_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin_utils/dnac.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
)
Expand Down

0 comments on commit a2abb01

Please sign in to comment.