From fdbfe11173aca042a47d96ddf62a069c24235f6b Mon Sep 17 00:00:00 2001 From: Nilashish Chakraborty Date: Thu, 15 Feb 2024 11:16:42 +0530 Subject: [PATCH] Prepare for v6.0.3 (#818) * Prepare for v6.0.3 Signed-off-by: NilashishC * Update galaxy.yml Signed-off-by: NilashishC * Add a note in platform_guide Signed-off-by: NilashishC --------- Signed-off-by: NilashishC --- CHANGELOG.rst | 8 ++++++++ changelogs/changelog.yaml | 7 +++++++ changelogs/fragments/acls_gather_fix.yml | 3 --- galaxy.yml | 2 +- platform_guide.rst | 7 +++++-- 5 files changed, 21 insertions(+), 6 deletions(-) delete mode 100644 changelogs/fragments/acls_gather_fix.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b92e441a2..ffab656bf 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,14 @@ Cisco Nxos Collection Release Notes .. contents:: Topics +v6.0.3 +====== + +Bugfixes +-------- + +- nxos_acls - Fix parsing of ace entries with range in it. (https://github.com/ansible-collections/cisco.nxos/issues/788) + v6.0.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index e043cc061..6a4ace8d8 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1055,3 +1055,10 @@ releases: fragments: - fix_749.yaml release_date: "2024-02-06" + 6.0.3: + changes: + bugfixes: + - nxos_acls - Fix parsing of ace entries with range in it. (https://github.com/ansible-collections/cisco.nxos/issues/788) + fragments: + - acls_gather_fix.yml + release_date: "2024-02-14" diff --git a/changelogs/fragments/acls_gather_fix.yml b/changelogs/fragments/acls_gather_fix.yml deleted file mode 100644 index 057c950a8..000000000 --- a/changelogs/fragments/acls_gather_fix.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - nxos_acls - Fix parsing of ace entries with range in it. (https://github.com/ansible-collections/cisco.nxos/issues/788) diff --git a/galaxy.yml b/galaxy.yml index be9792ba9..020c0f8aa 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -10,4 +10,4 @@ readme: README.md repository: https://github.com/ansible-collections/cisco.nxos issues: https://github.com/ansible-collections/cisco.nxos/issues tags: [cisco, nxos, networking, nxapi, netconf] -version: 6.0.2 +version: 6.0.3 diff --git a/platform_guide.rst b/platform_guide.rst index 250854561..ab6035f32 100644 --- a/platform_guide.rst +++ b/platform_guide.rst @@ -37,8 +37,6 @@ Connections available ==================== ========================================== ========================= -The ``ansible_connection: local`` has been deprecated. Please use ``ansible_connection: ansible.netcommon.network_cli`` or ``ansible_connection: ansible.netcommon.httpapi`` instead. - Using CLI in Ansible ==================== @@ -61,6 +59,11 @@ Example CLI ``group_vars/nxos.yml`` - If you are accessing your host directly (not through a bastion/jump host) you can remove the ``ansible_ssh_common_args`` configuration. - If you are accessing your host through a bastion/jump host, you cannot include your SSH password in the ``ProxyCommand`` directive. To prevent secrets from leaking out (for example in ``ps`` output), SSH does not support providing passwords through environment variables. +Note +----- + +When using ``ansible_connection: ansible.netcommon.network_cli``, the ``ansible_user`` must have permissions to execute the ``terminal length 0`` and ``terminal width 511`` commands on the target device. + Example CLI task ----------------