Skip to content

Commit

Permalink
Merge pull request #66 from cisco-en-programmability/develop
Browse files Browse the repository at this point in the history
Develop v2.5.3
  • Loading branch information
fmunozmiranda authored Aug 9, 2022
2 parents 4eea09c + 535e368 commit e45ad9a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.3] - 2022-08-09

### Fixed
- `virtualNetwork` on `sda.adds_border_device` parameter comes from `array` to `object`.
- Parameters `borderWithExternalConnectivity` and `connectedToInternet` on `sda.adds_border_device` comes from `boolean` to `string`.

## [2.5.2] - 2022-07-29

### Fixed
Expand Down Expand Up @@ -338,4 +344,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[2.5.0]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.4.11...v2.5.0
[2.5.1]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.0...v2.5.1
[2.5.2]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.1...v2.5.2
[Unreleased]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.2...master
[2.5.3]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.2...v2.5.3
[Unreleased]: https://github.com/cisco-en-programmability/dnacentersdk/compare/v2.5.3...master
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ def __init__(self):
"type": "string"
},
"borderWithExternalConnectivity": {
"type": "boolean"
"type": "string"
},
"connectedToInternet": {
"type": "boolean"
"type": "string"
},
"deviceManagementIpAddress": {
"type": "string"
Expand Down Expand Up @@ -97,7 +97,6 @@ def __init__(self):
"items": {
"properties": {
"virtualNetwork": {
"items": {
"properties": {
"virtualNetworkName": {
"type": "string"
Expand All @@ -107,8 +106,6 @@ def __init__(self):
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dnacentersdk"
version = "2.5.2"
version = "2.5.3"
description = "Cisco DNA Center Platform SDK"
authors = ["Jose Bogarin Solano <jbogarin@altus.cr>", "William Astorga <wastorga@altus.cr>"]
license = "MIT"
Expand Down

0 comments on commit e45ad9a

Please sign in to comment.