Skip to content

Commit 4017931

Browse files
authored
Merge pull request #242 from cisco-en-programmability/develop
Develop
2 parents 13284b8 + 7c91001 commit 4017931

1,963 files changed

Lines changed: 437485 additions & 2623 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.11.0] - 2026-02-04
10+
### Added
11+
- Add support of Cisco Catalyst Center version ('3.1.6.0')
12+
- Adds modules for v3_1_6_0
13+
- New service for Cisco Catalyst Center 3.1.6.0's API:
14+
- `system_software_upgrade`
915

16+
### Changed
17+
- SDK is now compatible with Cisco Catalyst Center 3.1.6.0's API.
1018

1119
## [2.10.6] - 2025-12-15
1220
### Fixed
@@ -831,4 +839,5 @@ respond with a binary.
831839
[2.10.4]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.10.3...v2.10.4
832840
[2.10.5]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.10.4...v2.10.5
833841
[2.10.6]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.10.5...v2.10.6
834-
[Unreleased]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.10.6...develop
842+
[2.11.0]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.10.6...v2.11.0
843+
[Unreleased]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.11.0...develop

Pipfile.lock

Lines changed: 411 additions & 340 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dnacentersdk
1616
username="devnetuser",
1717
password="Cisco123!",
1818
base_url="https://sandboxdnac.cisco.com:443",
19-
version="3.1.3.0",
19+
version="3.1.6.0",
2020
verify=True
2121
)
2222
@@ -27,7 +27,7 @@ dnacentersdk
2727
print("{:20s}{}".format(device.hostname, device.upTime))
2828
2929
# Find all tags
30-
all_tags = dnac.tag.get_tag(sort_by="name", order="des")
30+
all_tags = dnac.tag.get_tag(sort_by="name", order="desc")
3131
demo_tags = [tag for tag in all_tags.response if "Demo" in tag.name]
3232
3333
# Delete demo tags
@@ -175,7 +175,9 @@ Compatibility Matrix
175175
* - 2.3.7.9
176176
- 2.8.14
177177
* - 3.1.3.0
178-
- 2.10.5
178+
- 2.10.6
179+
* - 3.1.6.0
180+
- 2.11.0
179181

180182
Documentation
181183
-------------

dnacentersdk/_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
__url__ = "https://github.com/cisco-en-programmability/dnacentersdk"
2929
__download_url__ = "https://pypi.python.org/pypi/dnacentersdk"
3030
__author__ = "Jose Bogarín"
31-
__author_email__ = "jbogarin@altus.cr"
31+
__author_email__ = "jbogarin@cloverhound.com"
3232
__copyright__ = "Copyright (c) 2019-2021 Cisco Systems, Inc."
3333
__license__ = "MIT"

0 commit comments

Comments
 (0)