Skip to content

Commit e7e3f82

Browse files
authored
Merge pull request #14 from cisco-en-programmability/develop
Develop
2 parents fae69ce + 53aba16 commit e7e3f82

20 files changed

Lines changed: 2065 additions & 879 deletions
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Prerequisites**
11+
* [ ] Have you tested the operation in the API directly?
12+
* [ ] Do you have the latest SDK version?
13+
* [ ] Review the [compatibility matrix](https://github.com/cisco-en-programmability/catalystcentersdk/tree/master#compatibility-matrix) before opening an issue.
14+
15+
**Describe the bug**
16+
A clear and concise description of what the bug is.
17+
18+
**Expected behavior**
19+
A clear and concise description of what you expected to happen.
20+
21+
**Screenshots**
22+
Please provide an screenshot of the successful API call with cuRL, Postman, etc.
23+
24+
**Environment (please complete the following information):**
25+
* Cisco Catalyst Center Version and patch:
26+
* Python version:
27+
* SDK version:
28+
* OS Version:
29+
30+
**Additional context**
31+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,5 @@ dmypy.json
130130
test.py
131131

132132
# Code
133-
.vscode/
133+
.vscode/
134+
.github/copilot-instructions.md

CHANGELOG.md

Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.1.3.0.1] - 2026-02-06
10+
### Added
11+
- GitHub issue templates for bug reports and feature requests
12+
- Configuration file for GitHub issues (config.yml)
13+
14+
### Changed
15+
- Updated .gitignore to exclude `.github/copilot-instructions.md`
16+
- Renamed function `un_claim_device` to `unclaim_device` in Device Onboarding (PnP) module for versions 2.3.7.6.1, 2.3.7.9, and 3.1.3.0 (backward compatibility alias maintained)
17+
- Renamed function `download_unmaskedraw_device_configuration_as_z_ip` to `download_unmaskedraw_device_configuration_as_zip` in Configuration Archive module for versions 2.3.7.9 and 3.1.3.0 (backward compatibility alias maintained)
18+
- Renamed function `the_trend_analytics_data_for_thousand_eyes_test_results_in_the_specified_time_range` to `get_trend_analytics_data_for_thousand_eyes_test_results_in_the_specified_time_range` in Applications module for version 3.1.3.0 (backward compatibility alias maintained)
19+
- Renamed multiple functions in Industrial Configuration module for versions 2.3.7.9 and 3.1.3.0 (backward compatibility aliases maintained):
20+
+ `configure_are_p_ring_on_fabric_deployment` to `configure_rep_ring_on_fabric_deployment`
21+
+ `configure_are_p_ring_on_non_fabric_deployment` to `configure_rep_ring_on_non_fabric_deployment`
22+
+ `delete_are_p_ring_configured_in_the_fabric_deployment` to `delete_rep_ring_configured_in_the_fabric_deployment`
23+
+ `delete_are_p_ring_configured_in_the_non_fabric_deployment` to `delete_rep_ring_configured_in_the_non_fabric_deployment`
24+
+ `retrieves_the_list_of_are_p_rings` to `retrieves_the_list_of_rep_rings`
25+
+ `retrieves_the_count_of_are_p_rings` to `retrieves_the_count_of_rep_rings`
26+
+ `get_the_are_p_ring_based_on_the_ring_id` to `get_the_rep_ring_based_on_the_ring_id`
27+
928
## [3.1.3.0.0] - 2025-06-19
1029
### Added
1130
- Add support of DNA Center versions ('3.1.3.0')
@@ -59,7 +78,7 @@ to "application".
5978
- Modification of validators in 2.3.7.9 and 2.3.7.6
6079
- Fixed a bug in site_design in the uploads_floor_image function in versions 2.3.7.6 and 2.3.7.9
6180

62-
## [2.3.7.9] - 2024-12-12
81+
## [2.3.7.9.0] - 2024-12-12
6382
### Added
6483
- Add support of Catalyst Center versions ('2.3.7.9')
6584
- Adds modules for v2_3_7_9
@@ -85,14 +104,16 @@ to "application".
85104
- Add support of Catalyst Center versions ('2.3.7.6')
86105
- Adds modules for v2_3_7_6_1
87106

88-
[Unreleased]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v3.1.3.0.0...develop
89-
[3.1.3.0.0]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.5...v3.1.3.0.0
90-
[2.3.7.9.5]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.4...v2.3.7.9.5
91-
[2.3.7.9.4]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.3...v2.3.7.9.4
92-
[2.3.7.9.3]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.2...v2.3.7.9.3
93-
[2.3.7.9.2]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.1...v2.3.7.9.2
94-
[2.3.7.9.1]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9...v2.3.7.9.1
95-
[2.3.7.9]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.6.2...v2.3.7.9
96-
[2.3.7.6.2]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.6.1...v2.3.7.6.2
107+
108+
[2.3.7.6.0]: https://github.com/cisco-en-programmability/catalystcentersdk/releases/tag/v2.3.7.6.0
97109
[2.3.7.6.1]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.6.0...v2.3.7.6.1
98-
[2.3.7.6.0]: https://github.com/cisco-en-programmability/catalystcentersdk/releases/tag/v2.3.7.6.0
110+
[2.3.7.6.2]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.6.1...v2.3.7.6.2
111+
[2.3.7.9.0]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.6.2...v2.3.7.9.0
112+
[2.3.7.9.1]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.0...v2.3.7.9.1
113+
[2.3.7.9.2]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.1...v2.3.7.9.2
114+
[2.3.7.9.3]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.2...v2.3.7.9.3
115+
[2.3.7.9.4]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.3...v2.3.7.9.4
116+
[2.3.7.9.5]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.4...v2.3.7.9.5
117+
[3.1.3.0.0]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v2.3.7.9.5...v3.1.3.0.0
118+
[3.1.3.0.1]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v3.1.3.0.0...v3.1.3.0.1
119+
[Unreleased]: https://github.com/cisco-en-programmability/catalystcentersdk/compare/v3.1.3.0.1...develop

Pipfile

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
[[source]]
2-
url = "https://pypi.org/simple"
1+
[[source]] # Here goes your package sources (where you are downloading your packages from).
2+
url = "https://pypi.python.org/simple"
33
verify_ssl = true
44
name = "pypi"
55

6-
[packages]
7-
certifi = "==2024.7.4"
8-
charset-normalizer = "==3.3.2"
9-
fastjsonschema = "==2.20.0"
10-
idna = "==3.7"
11-
requests-toolbelt = "==1.0.0"
12-
requests = "==2.32.3"
13-
urllib3 = "==2.2.2"
6+
[packages] # Here goes your package requirements for running the application and its versions (which packages you will use when running the application).
7+
requests = ">=2.32.0, <3.0.0"
8+
requests-toolbelt = ">=1.0.0"
9+
fastjsonschema = ">=2.16.2"
1410

15-
[dev-packages]
16-
17-
[requires]
18-
python_version = "3.12"
11+
[dev-packages] # Here goes your package requirements for developing the application and its versions (which packaes you will use when developing the application)
12+
sphinx = ">=5.3.0"
13+
sphinx-rtd-theme = ">=1.3.0"
14+
pytest = "*"
15+
pytest-rerunfailures = ">=10.3"
16+
flake8 = "*"
17+
ipython = "*"
18+
readthedocs-sphinx-search = ">=0.3.2"
19+
setuptools_scm = ">=6.0.0"

0 commit comments

Comments
 (0)