Skip to content

Commit 8383146

Browse files
dcn-ecosystemlhercot
authored andcommitted
[ignore] Update Changelog for new release (v0.5.0) and missing plugins in older releases
1 parent ac90055 commit 8383146

14 files changed

Lines changed: 110 additions & 4 deletions

CHANGELOG.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ Cisco Nexus Dashboard Ansible Collection Release Notes
55
.. contents:: Topics
66

77

8+
v0.5.0
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
Release v0.5.0 of the ``ansible-nd`` collection on 2023-11-03.
15+
This changelog describes all changes made to the modules and plugins included in this collection since v0.4.0.
16+
17+
18+
Minor Changes
19+
-------------
20+
21+
- 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
22+
23+
New Modules
24+
-----------
25+
26+
- cisco.nd.nd_backup - Manages backup on Nexus Dashboard.
27+
- cisco.nd.nd_backup_restore - Manages restore of backup on Nexus Dashboard.
28+
- cisco.nd.nd_cluster_config_route - Manages routes of the cluster config.
29+
- cisco.nd.nd_policy_cam_statistics_hit_counts - Retrieves Policy CAM Statistics Hit Counts
30+
- cisco.nd.nd_service - Manages Service Package on Nexus Dashboard.
31+
- cisco.nd.nd_service_instance - Manages Service Instance on Nexus Dashboard.
32+
- cisco.nd.nd_setup - Manages setting up the Nexus Dashboard.
33+
834
v0.4.0
935
======
1036

@@ -20,6 +46,11 @@ Minor Changes
2046

2147
- Add new module nd_site (#47)
2248

49+
New Modules
50+
-----------
51+
52+
- cisco.nd.nd_site - Manage sites on Nexus Dashboard.
53+
2354
v0.3.0
2455
======
2556

@@ -118,3 +149,16 @@ Release Summary
118149
---------------
119150

120151
Initial release of Nexus Dashboard collection
152+
153+
New Plugins
154+
-----------
155+
156+
Httpapi
157+
~~~~~~~
158+
159+
- cisco.nd.nd - Nexus Dashboard Ansible HTTPAPI Plugin.
160+
161+
New Modules
162+
-----------
163+
164+
- cisco.nd.nd_version - Get version of Nexus Dashboard (ND)

changelogs/changelog.yaml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ releases:
33
0.1.0:
44
changes:
55
release_summary: Initial release of Nexus Dashboard collection
6+
modules:
7+
- description: Get version of Nexus Dashboard (ND)
8+
name: nd_version
9+
namespace: ""
10+
plugins:
11+
httpapi:
12+
- description: Nexus Dashboard Ansible HTTPAPI Plugin.
13+
name: nd
14+
namespace: null
615
release_date: "2021-06-02"
716
0.1.1:
817
changes:
@@ -106,4 +115,43 @@ releases:
106115
in this collection since v0.3.0.
107116
108117
"
118+
modules:
119+
- description: Manage sites on Nexus Dashboard.
120+
name: nd_site
121+
namespace: ""
109122
release_date: "2023-08-04"
123+
0.5.0:
124+
changes:
125+
minor_changes:
126+
- Add nd_setup, nd_cluster_config_route, nd_backup, nd_backup_restore, nd_service,
127+
nd_service_instance and nd_policy_cam_statistics_hit_counts modules
128+
release_summary:
129+
"Release v0.5.0 of the ``ansible-nd`` collection on 2023-11-03.
130+
131+
This changelog describes all changes made to the modules and plugins included
132+
in this collection since v0.4.0.
133+
134+
"
135+
modules:
136+
- description: Manages backup on Nexus Dashboard.
137+
name: nd_backup
138+
namespace: ""
139+
- description: Manages restore of backup on Nexus Dashboard.
140+
name: nd_backup_restore
141+
namespace: ""
142+
- description: Manages routes of the cluster config.
143+
name: nd_cluster_config_route
144+
namespace: ""
145+
- description: Retrieves Policy CAM Statistics Hit Counts
146+
name: nd_policy_cam_statistics_hit_counts
147+
namespace: ""
148+
- description: Manages Service Package on Nexus Dashboard.
149+
name: nd_service
150+
namespace: ""
151+
- description: Manages Service Instance on Nexus Dashboard.
152+
name: nd_service_instance
153+
namespace: ""
154+
- description: Manages setting up the Nexus Dashboard.
155+
name: nd_setup
156+
namespace: ""
157+
release_date: "2023-11-03"

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
namespace: cisco
33
name: nd
44
# The version of the collection. Must be compatible with semantic versioning
5-
version: 0.4.0
5+
version: 0.5.0
66
readme: README.md
77
authors:
88
- "Lionel Hercot (@lhercot)"

meta/runtime.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
requires_ansible: '>=2.9.10'
33
action_groups:
44
all:
5+
- nd_backup
6+
- nd_backup_restore
7+
- nd_cluster_config_route
58
- nd_compliance_analysis
69
- nd_compliance_requirement_communication
710
- nd_compliance_requirement_config_import
@@ -14,5 +17,9 @@ action_groups:
1417
- nd_pcv
1518
- nd_pcv_compliance
1619
- nd_pcv_delta_analysis
20+
- nd_policy_cam_statistics_hit_counts
21+
- nd_service
22+
- nd_service_instance
23+
- nd_setup
1724
- nd_site
1825
- nd_version

plugins/httpapi/nd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description:
1818
- This ND plugin provides the HTTPAPI transport methods needed to initiate
1919
a connection to ND, send API requests and process the response.
20-
version_added: "0.0.1"
20+
version_added: "0.1.0"
2121
options:
2222
login_domain:
2323
description:

plugins/modules/nd_backup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
DOCUMENTATION = r"""
1414
---
1515
module: nd_backup
16+
version_added: "0.5.0"
1617
short_description: Manages backup on Nexus Dashboard.
1718
description:
1819
- Manages backup of the cluster configuration.

plugins/modules/nd_backup_restore.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
DOCUMENTATION = r"""
1414
---
1515
module: nd_backup_restore
16+
version_added: "0.5.0"
1617
short_description: Manages restore of backup on Nexus Dashboard.
1718
description:
1819
- Manages importing the cluster configuration using a backup.

plugins/modules/nd_cluster_config_route.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
DOCUMENTATION = r"""
1414
---
1515
module: nd_cluster_config_route
16+
version_added: "0.5.0"
1617
short_description: Manages routes of the cluster config.
1718
description:
1819
- Manages the data and management routes of the cluster configuration.

plugins/modules/nd_policy_cam_statistics_hit_counts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
DOCUMENTATION = r"""
1515
---
1616
module: nd_policy_cam_statistics_hit_counts
17-
version_added: "0.4.1"
17+
version_added: "0.5.0"
1818
short_description: Retrieves Policy CAM Statistics Hit Counts
1919
description:
2020
- Retrieves Policy CAM Statistics Hit Counts on Cisco Nexus Dashboard Insights (NDI).

plugins/modules/nd_service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
DOCUMENTATION = r"""
1414
---
1515
module: nd_service
16+
version_added: "0.5.0"
1617
short_description: Manages Service Package on Nexus Dashboard.
1718
description:
1819
- Manages Service Package of the Nexus Dashboard.

0 commit comments

Comments
 (0)