Skip to content

Commit

Permalink
[ignore] Update Changelog for new release (v0.5.0) and missing plugin…
Browse files Browse the repository at this point in the history
…s in older releases
  • Loading branch information
dcn-ecosystem authored and lhercot committed Nov 4, 2023
1 parent ac90055 commit 8383146
Show file tree
Hide file tree
Showing 14 changed files with 110 additions and 4 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@ Cisco Nexus Dashboard Ansible Collection Release Notes
.. contents:: Topics


v0.5.0
======

Release Summary
---------------

Release v0.5.0 of the ``ansible-nd`` collection on 2023-11-03.
This changelog describes all changes made to the modules and plugins included in this collection since v0.4.0.


Minor Changes
-------------

- Add nd_setup, nd_cluster_config_route, nd_backup, nd_backup_restore, nd_service, nd_service_instance and nd_policy_cam_statistics_hit_counts modules

New Modules
-----------

- cisco.nd.nd_backup - Manages backup on Nexus Dashboard.
- cisco.nd.nd_backup_restore - Manages restore of backup on Nexus Dashboard.
- cisco.nd.nd_cluster_config_route - Manages routes of the cluster config.
- cisco.nd.nd_policy_cam_statistics_hit_counts - Retrieves Policy CAM Statistics Hit Counts
- cisco.nd.nd_service - Manages Service Package on Nexus Dashboard.
- cisco.nd.nd_service_instance - Manages Service Instance on Nexus Dashboard.
- cisco.nd.nd_setup - Manages setting up the Nexus Dashboard.

v0.4.0
======

Expand All @@ -20,6 +46,11 @@ Minor Changes

- Add new module nd_site (#47)

New Modules
-----------

- cisco.nd.nd_site - Manage sites on Nexus Dashboard.

v0.3.0
======

Expand Down Expand Up @@ -118,3 +149,16 @@ Release Summary
---------------

Initial release of Nexus Dashboard collection

New Plugins
-----------

Httpapi
~~~~~~~

- cisco.nd.nd - Nexus Dashboard Ansible HTTPAPI Plugin.

New Modules
-----------

- cisco.nd.nd_version - Get version of Nexus Dashboard (ND)
48 changes: 48 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ releases:
0.1.0:
changes:
release_summary: Initial release of Nexus Dashboard collection
modules:
- description: Get version of Nexus Dashboard (ND)
name: nd_version
namespace: ""
plugins:
httpapi:
- description: Nexus Dashboard Ansible HTTPAPI Plugin.
name: nd
namespace: null
release_date: "2021-06-02"
0.1.1:
changes:
Expand Down Expand Up @@ -106,4 +115,43 @@ releases:
in this collection since v0.3.0.
"
modules:
- description: Manage sites on Nexus Dashboard.
name: nd_site
namespace: ""
release_date: "2023-08-04"
0.5.0:
changes:
minor_changes:
- Add nd_setup, nd_cluster_config_route, nd_backup, nd_backup_restore, nd_service,
nd_service_instance and nd_policy_cam_statistics_hit_counts modules
release_summary:
"Release v0.5.0 of the ``ansible-nd`` collection on 2023-11-03.
This changelog describes all changes made to the modules and plugins included
in this collection since v0.4.0.
"
modules:
- description: Manages backup on Nexus Dashboard.
name: nd_backup
namespace: ""
- description: Manages restore of backup on Nexus Dashboard.
name: nd_backup_restore
namespace: ""
- description: Manages routes of the cluster config.
name: nd_cluster_config_route
namespace: ""
- description: Retrieves Policy CAM Statistics Hit Counts
name: nd_policy_cam_statistics_hit_counts
namespace: ""
- description: Manages Service Package on Nexus Dashboard.
name: nd_service
namespace: ""
- description: Manages Service Instance on Nexus Dashboard.
name: nd_service_instance
namespace: ""
- description: Manages setting up the Nexus Dashboard.
name: nd_setup
namespace: ""
release_date: "2023-11-03"
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace: cisco
name: nd
# The version of the collection. Must be compatible with semantic versioning
version: 0.4.0
version: 0.5.0
readme: README.md
authors:
- "Lionel Hercot (@lhercot)"
Expand Down
7 changes: 7 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
requires_ansible: '>=2.9.10'
action_groups:
all:
- nd_backup
- nd_backup_restore
- nd_cluster_config_route
- nd_compliance_analysis
- nd_compliance_requirement_communication
- nd_compliance_requirement_config_import
Expand All @@ -14,5 +17,9 @@ action_groups:
- nd_pcv
- nd_pcv_compliance
- nd_pcv_delta_analysis
- nd_policy_cam_statistics_hit_counts
- nd_service
- nd_service_instance
- nd_setup
- nd_site
- nd_version
2 changes: 1 addition & 1 deletion plugins/httpapi/nd.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
description:
- This ND plugin provides the HTTPAPI transport methods needed to initiate
a connection to ND, send API requests and process the response.
version_added: "0.0.1"
version_added: "0.1.0"
options:
login_domain:
description:
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/nd_backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
DOCUMENTATION = r"""
---
module: nd_backup
version_added: "0.5.0"
short_description: Manages backup on Nexus Dashboard.
description:
- Manages backup of the cluster configuration.
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/nd_backup_restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
DOCUMENTATION = r"""
---
module: nd_backup_restore
version_added: "0.5.0"
short_description: Manages restore of backup on Nexus Dashboard.
description:
- Manages importing the cluster configuration using a backup.
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/nd_cluster_config_route.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
DOCUMENTATION = r"""
---
module: nd_cluster_config_route
version_added: "0.5.0"
short_description: Manages routes of the cluster config.
description:
- Manages the data and management routes of the cluster configuration.
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/nd_policy_cam_statistics_hit_counts.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
DOCUMENTATION = r"""
---
module: nd_policy_cam_statistics_hit_counts
version_added: "0.4.1"
version_added: "0.5.0"
short_description: Retrieves Policy CAM Statistics Hit Counts
description:
- Retrieves Policy CAM Statistics Hit Counts on Cisco Nexus Dashboard Insights (NDI).
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/nd_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
DOCUMENTATION = r"""
---
module: nd_service
version_added: "0.5.0"
short_description: Manages Service Package on Nexus Dashboard.
description:
- Manages Service Package of the Nexus Dashboard.
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/nd_service_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
DOCUMENTATION = r"""
---
module: nd_service_instance
version_added: "0.5.0"
short_description: Manages Service Instance on Nexus Dashboard.
description:
- Manages Service Instance of the Nexus Dashboard.
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/nd_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
DOCUMENTATION = r"""
---
module: nd_setup
version_added: "0.5.0"
short_description: Manages setting up the Nexus Dashboard.
description:
- Manages setting up the Nexus Dashboard (ND).
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/nd_site.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
DOCUMENTATION = r"""
---
module: nd_site
version_added: "0.4.0"
short_description: Manage sites on Nexus Dashboard.
description:
- Manage sites on Nexus Dashboard which are then used by Nexus Dashboard Orchestrator (NDO) >= 2.2(2d).
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/nd_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
DOCUMENTATION = r"""
---
module: nd_version
version_added: "0.0.1"
version_added: "0.1.0"
short_description: Get version of Nexus Dashboard (ND)
description:
- Retrieve the code version of Cisco Nexus Dashboard (ND).
Expand Down

0 comments on commit 8383146

Please sign in to comment.