Skip to content

Commit f089b43

Browse files
committed
6.3.2
1 parent 16e8ff8 commit f089b43

5 files changed

Lines changed: 21 additions & 11 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@ The [Azure Governance Visualizer Accelerator](https://github.com/Azure/Azure-Gov
7878

7979
## Release history
8080

81+
__Changes__ (2023-Sep-12 / 6.3.2 Minor)
82+
83+
* another fix for [AzAPICall issue43](https://github.com/JulianHayward/AzAPICall/issues/43). Use-case scenario will be documented in the near future. Kudos to Asbjørn Nielsen (fellowmind dk) @AsbjornNielsen
84+
* use [AzAPICall](https://aka.ms/AzAPICall) PowerShell module version 1.1.79
85+
8186
__Changes__ (2023-Sep-04 / 6.3.1 Minor)
8287

8388
* introduce new optional parameter `-TenantId4AzContext` which makes it possible to set the Azure context to a different tenant. Fix for [AzAPICall issue43](https://github.com/JulianHayward/AzAPICall/issues/43). Use-case scenario will be documented in the near future. Kudos to Asbjørn Nielsen (fellowmind dk) @AsbjornNielsen

history.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
### Azure Governance Visualizer version 6
66

7+
__Changes__ (2023-Sep-12 / 6.3.2 Minor)
8+
9+
* another fix for [AzAPICall issue43](https://github.com/JulianHayward/AzAPICall/issues/43). Use-case scenario will be documented in the near future. Kudos to Asbjørn Nielsen (fellowmind dk) @AsbjornNielsen
10+
* use [AzAPICall](https://aka.ms/AzAPICall) PowerShell module version 1.1.79
11+
712
__Changes__ (2023-Sep-04 / 6.3.1 Minor)
813

914
* introduce new optional parameter `-TenantId4AzContext` which makes it possible to set the Azure context to a different tenant. Fix for [AzAPICall issue43](https://github.com/JulianHayward/AzAPICall/issues/43). Use-case scenario will be documented in the near future. Kudos to Asbjørn Nielsen (fellowmind dk) @AsbjornNielsen

pwsh/AzGovVizParallel.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,10 @@ Param
365365
$Product = 'AzGovViz',
366366

367367
[string]
368-
$AzAPICallVersion = '1.1.78',
368+
$AzAPICallVersion = '1.1.79',
369369

370370
[string]
371-
$ProductVersion = '6.3.1',
371+
$ProductVersion = '6.3.2',
372372

373373
[string]
374374
$GithubRepository = 'aka.ms/AzGovViz',
@@ -33793,12 +33793,12 @@ Write-Host " Initialize 'AzAPICall' succeeded" -ForegroundColor Green
3379333793
#EndRegion initAZAPICall
3379433794

3379533795
#region required AzAPICall version
33796-
if (-not ([System.Version]"$($azapicallConf['htParameters'].azAPICallModuleVersion)" -ge [System.Version]'1.1.78')) {
33796+
if (-not ([System.Version]"$($azapicallConf['htParameters'].azAPICallModuleVersion)" -ge [System.Version]'1.1.79')) {
3379733797
Write-Host 'AzAPICall version check failed -> https://aka.ms/AzAPICall; https://www.powershellgallery.com/packages/AzAPICall'
33798-
throw "This version of Azure Governance Visualizer ($ProductVersion) requires AzAPICall module version 1.1.78 or greater"
33798+
throw "This version of Azure Governance Visualizer ($ProductVersion) requires AzAPICall module version 1.1.79 or greater"
3379933799
}
3380033800
else {
33801-
Write-Host "AzAPICall module version requirement check succeeded: 1.1.78 or greater - current: $($azapicallConf['htParameters'].azAPICallModuleVersion) " -ForegroundColor Green
33801+
Write-Host "AzAPICall module version requirement check succeeded: 1.1.79 or greater - current: $($azapicallConf['htParameters'].azAPICallModuleVersion) " -ForegroundColor Green
3380233802
}
3380333803
#endregion required AzAPICall version
3380433804

pwsh/dev/devAzGovVizParallel.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,10 @@ Param
365365
$Product = 'AzGovViz',
366366

367367
[string]
368-
$AzAPICallVersion = '1.1.78',
368+
$AzAPICallVersion = '1.1.79',
369369

370370
[string]
371-
$ProductVersion = '6.3.1',
371+
$ProductVersion = '6.3.2',
372372

373373
[string]
374374
$GithubRepository = 'aka.ms/AzGovViz',
@@ -779,12 +779,12 @@ Write-Host " Initialize 'AzAPICall' succeeded" -ForegroundColor Green
779779
#EndRegion initAZAPICall
780780

781781
#region required AzAPICall version
782-
if (-not ([System.Version]"$($azapicallConf['htParameters'].azAPICallModuleVersion)" -ge [System.Version]'1.1.78')) {
782+
if (-not ([System.Version]"$($azapicallConf['htParameters'].azAPICallModuleVersion)" -ge [System.Version]'1.1.79')) {
783783
Write-Host 'AzAPICall version check failed -> https://aka.ms/AzAPICall; https://www.powershellgallery.com/packages/AzAPICall'
784-
throw "This version of Azure Governance Visualizer ($ProductVersion) requires AzAPICall module version 1.1.78 or greater"
784+
throw "This version of Azure Governance Visualizer ($ProductVersion) requires AzAPICall module version 1.1.79 or greater"
785785
}
786786
else {
787-
Write-Host "AzAPICall module version requirement check succeeded: 1.1.78 or greater - current: $($azapicallConf['htParameters'].azAPICallModuleVersion) " -ForegroundColor Green
787+
Write-Host "AzAPICall module version requirement check succeeded: 1.1.79 or greater - current: $($azapicallConf['htParameters'].azAPICallModuleVersion) " -ForegroundColor Green
788788
}
789789
#endregion required AzAPICall version
790790

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"ProductVersion": "6.3.1"
2+
"ProductVersion": "6.3.2"
33
}

0 commit comments

Comments
 (0)