diff --git a/README.md b/README.md index f1fd36c5d..06b4f3a9d 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ The following table shows the supported versions. |-------------------|------------------------------|------------------------------| | 3.1.0 | 2.0.0 | 1.2.0 | | 3.1_Patch_1 | 2.5.16 | 2.0.10 | -| 3.2_beta | 2.6.1 | 2.1.1 | +| 3.2_beta | 2.6.2 | 2.1.1 | If your Ansible collection is older please consider updating it first. *Notes*: diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 39d804f52..f88830068 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -958,4 +958,10 @@ releases: changes: release_summary: Update to use ciscoisesdk v2.1.1 or newer bugfixes: - - Updated to use ciscoisesdk v2.1.1 or newer fixing ciscoisesdk problem. \ No newline at end of file + - Updated to use ciscoisesdk v2.1.1 or newer fixing ciscoisesdk problem. + 2.6.2: + release_date: "2023-11-21" + changes: + release_summary: Added missing import + bugfixes: + - Added missing import re in endpoint module \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index 49b02b300..d00ea9c26 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: cisco name: ise -version: 2.6.1 +version: 2.6.2 readme: README.md authors: - Rafael Campos diff --git a/plugins/action/endpoint.py b/plugins/action/endpoint.py index baae70a11..5de00e6d8 100644 --- a/plugins/action/endpoint.py +++ b/plugins/action/endpoint.py @@ -18,6 +18,7 @@ else: ANSIBLE_UTILS_IS_INSTALLED = True from ansible.errors import AnsibleActionFail +import re from ansible_collections.cisco.ise.plugins.plugin_utils.ise import ( ISESDK, ise_argument_spec,