diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4d5294fbe..7f8bda1e5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,25 @@ Cisco Nxos Collection Release Notes .. contents:: Topics +v8.0.0 +====== + +Major Changes +------------- + +- Updated the minimum required ansible.netcommon version to 6.1.0 to support the cli_restore module. + +Minor Changes +------------- + +- Add support for cli_restore functionality. +- Please refer the PR to know more about core changes (https://github.com/ansible-collections/ansible.netcommon/pull/618). + The cli_restore module is a part of ansible.netcommon. + +Bugfixes +-------- + +- nxos_facts - correct parse JSON output when multiple interfaces have IPv6 address assigned (https://github.com/ansible-collections/cisco.nxos/issues/771). v7.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 96d666bc0..c0b40cc7f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1075,3 +1075,19 @@ releases: fragments: - major_700.yaml release_date: "2024-03-27" + 8.0.0: + changes: + bugfixes: + - nxos_facts - correct parse JSON output when multiple interfaces have IPv6 + address assigned (https://github.com/ansible-collections/cisco.nxos/issues/771). + major_changes: + - Updated the minimum required ansible.netcommon version to 6.1.0 to support the cli_restore module. + minor_changes: + - Add support for cli_restore functionality. + - Please refer the PR to know more about core changes (https://github.com/ansible-collections/ansible.netcommon/pull/618). + The cli_restore module is a part of ansible.netcommon. + fragments: + - add_restore_support.yaml + - fix_771.yaml + - trivial.yaml + release_date: "2024-04-19" diff --git a/changelogs/fragments/add_restore_support.yaml b/changelogs/fragments/add_restore_support.yaml deleted file mode 100644 index ff161ac71..000000000 --- a/changelogs/fragments/add_restore_support.yaml +++ /dev/null @@ -1,6 +0,0 @@ -major_changes: - - Update the netcommon base version 6.1.0 to support cli_restore plugin. -minor_changes: - - Add support for cli_restore functionality. - - cli_restore module is part of netcommon. - - Please refer the PR to know more about core changes (https://github.com/ansible-collections/ansible.netcommon/pull/618). diff --git a/changelogs/fragments/fix_771.yaml b/changelogs/fragments/fix_771.yaml deleted file mode 100644 index 20b5c2f7e..000000000 --- a/changelogs/fragments/fix_771.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "nxos_facts - correct parse JSON output when multiple interfaces have IPv6 address assigned (https://github.com/ansible-collections/cisco.nxos/issues/771)." diff --git a/changelogs/fragments/trivial.yaml b/changelogs/fragments/trivial.yaml deleted file mode 100644 index 59dcb8f5b..000000000 --- a/changelogs/fragments/trivial.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - move wrongly placed changelog file to fragments.