diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f9a0208..5fde6737 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/mso/resource_mso_schema.go b/mso/resource_mso_schema.go index 1943f30f..46a1db7c 100644 --- a/mso/resource_mso_schema.go +++ b/mso/resource_mso_schema.go @@ -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++ { @@ -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++ {