diff options
Diffstat (limited to 'collections-debian-merged/ansible_collections/cisco/nso/changelogs')
6 files changed, 138 insertions, 0 deletions
diff --git a/collections-debian-merged/ansible_collections/cisco/nso/changelogs/.plugin-cache.yaml b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/.plugin-cache.yaml new file mode 100644 index 00000000..5958d025 --- /dev/null +++ b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/.plugin-cache.yaml @@ -0,0 +1,40 @@ +plugins: + become: {} + cache: {} + callback: {} + cliconf: {} + connection: {} + httpapi: {} + inventory: {} + lookup: {} + module: + nso_action: + description: Executes Cisco NSO actions and verifies output. + name: nso_action + namespace: '' + version_added: null + nso_config: + description: Manage Cisco NSO configuration and service synchronization. + name: nso_config + namespace: '' + version_added: null + nso_query: + description: Query data from Cisco NSO. + name: nso_query + namespace: '' + version_added: null + nso_show: + description: Displays data from Cisco NSO. + name: nso_show + namespace: '' + version_added: null + nso_verify: + description: Verifies Cisco NSO configuration. + name: nso_verify + namespace: '' + version_added: null + netconf: {} + shell: {} + strategy: {} + vars: {} +version: 1.0.3 diff --git a/collections-debian-merged/ansible_collections/cisco/nso/changelogs/changelog.yaml b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/changelog.yaml new file mode 100644 index 00000000..d697e650 --- /dev/null +++ b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/changelog.yaml @@ -0,0 +1,47 @@ +ancestor: null +releases: + 1.0.0: + changes: + release_summary: This is the first release of the ``cisco.nso`` collection. + The modules in this collection were migrated from Ansible Core with no changes + to their functionality. + fragments: + - 1.0.0.yml + release_date: '2020-10-26' + 1.0.1: + changes: + minor_changes: + - Added See Also section to docs providing links to additional resources + - Added example for nso_action + - Corrected import paths in the test modules + - Defined data types for arguments in the docs where necessary to pass sanity + tests + - Existing nso_config L3VPN example replaced with new examples due to existing + example reliance on non-default l3vpn module + - Modified nso_verify module example + - Updated documentation with a See Also section providing links to NSO resources + - Updated examples for nso_show + - Updated examples in the documentation to align with the NSO DevNet Sandbox + - Verified all sanity and unit tests passing + fragments: + - 1.0.1.yml + release_date: '2020-10-30' + 1.0.2: + changes: + minor_changes: + - add GitHub Action to the repo for automated sanity and unit tests + - minor fixes to prepare for inclusion in Ansible 2.10 + fragments: + - 1.0.2.yml + release_date: '2020-12-02' + 1.0.3: + changes: + minor_changes: + - nso_action can now handle YANG model choices as input parameters (https://github.com/CiscoDevNet/ansible-nso/issues/1) + - nso_config now supports setting commit flags such as "no-networking", "commit-queue", + etc. (https://github.com/CiscoDevNet/ansible-nso/issues/2) + - nso_config will now return a commit_results dictionary containing the results + such as commit-queue-id, rollback-id, etc. (https://github.com/CiscoDevNet/ansible-nso/issues/3) + fragments: + - 1.0.3.yml + release_date: '2021-01-27' diff --git a/collections-debian-merged/ansible_collections/cisco/nso/changelogs/config.yaml b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/config.yaml new file mode 100644 index 00000000..8a960c1f --- /dev/null +++ b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/config.yaml @@ -0,0 +1,32 @@ +changelog_filename_template: ../CHANGELOG.rst +changelog_filename_version_depth: 0 +changes_file: changelog.yaml +changes_format: combined +ignore_other_fragment_extensions: true +keep_fragments: true +mention_ancestor: true +new_plugins_after_name: removed_features +notesdir: fragments +prelude_section_name: release_summary +prelude_section_title: Release Summary +sanitize_changelog: true +sections: +- - major_changes + - Major Changes +- - minor_changes + - Minor Changes +- - breaking_changes + - Breaking Changes / Porting Guide +- - deprecated_features + - Deprecated Features +- - removed_features + - Removed Features (previously deprecated) +- - security_fixes + - Security Fixes +- - bugfixes + - Bugfixes +- - known_issues + - Known Issues +title: Cisco NSO Ansible Collection +trivial_section_name: trivial +use_fqcn: true diff --git a/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.1.yml b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.1.yml new file mode 100644 index 00000000..7b1bb95d --- /dev/null +++ b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.1.yml @@ -0,0 +1,11 @@ +minor_changes: + - Updated examples in the documentation to align with the NSO DevNet Sandbox + - Added See Also section to docs providing links to additional resources + - Modified nso_verify module example + - Existing nso_config L3VPN example replaced with new examples due to existing example reliance on non-default l3vpn module + - Updated examples for nso_show + - Added example for nso_action + - Updated documentation with a See Also section providing links to NSO resources + - Corrected import paths in the test modules + - Defined data types for arguments in the docs where necessary to pass sanity tests + - Verified all sanity and unit tests passing
\ No newline at end of file diff --git a/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.2.yml b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.2.yml new file mode 100644 index 00000000..f1b8ea9a --- /dev/null +++ b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.2.yml @@ -0,0 +1,3 @@ +minor_changes: + - minor fixes to prepare for inclusion in Ansible 2.10 + - add GitHub Action to the repo for automated sanity and unit tests
\ No newline at end of file diff --git a/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.3.yml b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.3.yml new file mode 100644 index 00000000..3865305b --- /dev/null +++ b/collections-debian-merged/ansible_collections/cisco/nso/changelogs/fragments/1.0.3.yml @@ -0,0 +1,5 @@ +minor_changes: + - nso_action can now handle YANG model choices as input parameters (https://github.com/CiscoDevNet/ansible-nso/issues/1) + - nso_config now supports setting commit flags such as "no-networking", "commit-queue", etc. (https://github.com/CiscoDevNet/ansible-nso/issues/2) + - nso_config will now return a commit_results dictionary containing the results such as commit-queue-id, rollback-id, etc. (https://github.com/CiscoDevNet/ansible-nso/issues/3) +
\ No newline at end of file |