Skip to content

Commit

Permalink
Merge pull request #39 from meraki/develop
Browse files Browse the repository at this point in the history
v3.0.7 new version
  • Loading branch information
fmunozmiranda authored Jul 23, 2024
2 parents 7bddf6d + 6d324a7 commit a85564b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.06] - 2024-07-15
## [3.0.7] - 2024-07-23
### Changed
- update switch.go areaId is now an *int.

## [3.0.6] - 2024-07-15
### Changed
- Managing different types of values are accepted in `appliance_traffic_shapping` operations.
- Managing different types of values are accepted in `wireless_ssids_firewall_l7FirewallRules` operations.
Expand Down Expand Up @@ -1378,4 +1382,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[3.0.4]: https://github.com/meraki/dashboard-api-go/compare/v3.0.3...3.0.4
[3.0.5]: https://github.com/meraki/dashboard-api-go/compare/v3.0.4...3.0.5
[3.0.6]: https://github.com/meraki/dashboard-api-go/compare/v3.0.5...3.0.6
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.6...main
[3.0.7]: https://github.com/meraki/dashboard-api-go/compare/v3.0.6...3.0.7
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.7...main
4 changes: 2 additions & 2 deletions sdk/switch.go
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ type ResponseSwitchGetNetworkSwitchRoutingOspf struct {
V3 *ResponseSwitchGetNetworkSwitchRoutingOspfV3 `json:"v3,omitempty"` //
}
type ResponseSwitchGetNetworkSwitchRoutingOspfAreas struct {
AreaID string `json:"areaId,omitempty"` //
AreaID *int `json:"areaId,omitempty"` //
AreaName string `json:"areaName,omitempty"` //
AreaType string `json:"areaType,omitempty"` //
}
Expand All @@ -1224,7 +1224,7 @@ type ResponseSwitchGetNetworkSwitchRoutingOspfV3 struct {
HelloTimerInSeconds *int `json:"helloTimerInSeconds,omitempty"` //
}
type ResponseSwitchGetNetworkSwitchRoutingOspfV3Areas struct {
AreaID string `json:"areaId,omitempty"` //
AreaID *int `json:"areaId,omitempty"` //
AreaName string `json:"areaName,omitempty"` //
AreaType string `json:"areaType,omitempty"` //
}
Expand Down

0 comments on commit a85564b

Please sign in to comment.