Skip to content

Commit

Permalink
[ignore] Update CHANGELOG.md for v0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lhercot committed Jan 31, 2023
1 parent 59e7226 commit d7a97d2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.8.0 (January 31, 2023)
BUG FIXES:
- Fix concurrency issues by implementing a mutex in the MSO/NDO Golang client

IMPROVEMENTS:
- Add mso_schema_template_deploy_ndo resource to support NDO4.1+ deploy API (#165)
- Add support for multiple DHCP Label policies in mso_schema_template_bd (#161)
- Add option in mso_tenant to decide if deleting tenant from mso/ndo only or not (#162)

## 0.7.1 (October 14, 2022)
BUG FIXES:
- Fix Cloud EPG default attribute issue in mso_schema_template_anp_epg
Expand Down
4 changes: 2 additions & 2 deletions mso/resource_mso_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ func resourceMSOSchemaDelete(d *schema.ResourceData, m interface{}) error {
return err
}

//Helper function 1 for sets
// Helper function 1 for sets
func differenceInMaps(mapSlice1, mapSlice2 *schema.Set) []interface{} {
var difference []interface{}
for i := 0; i < 1; i++ {
Expand All @@ -442,7 +442,7 @@ func differenceInMaps(mapSlice1, mapSlice2 *schema.Set) []interface{} {
return difference
}

//Helper function 2 for lists
// Helper function 2 for lists
func differenceInLists(mapSlice1, mapSlice2 []interface{}) []interface{} {
var difference []interface{}
for i := 0; i < 1; i++ {
Expand Down

0 comments on commit d7a97d2

Please sign in to comment.