Skip to content

Commit

Permalink
6.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianHayward committed Sep 12, 2023
1 parent 16e8ff8 commit f089b43
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 11 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ The [Azure Governance Visualizer Accelerator](https://github.com/Azure/Azure-Gov

## Release history

__Changes__ (2023-Sep-12 / 6.3.2 Minor)

* 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
* use [AzAPICall](https://aka.ms/AzAPICall) PowerShell module version 1.1.79

__Changes__ (2023-Sep-04 / 6.3.1 Minor)

* 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
Expand Down
5 changes: 5 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

### Azure Governance Visualizer version 6

__Changes__ (2023-Sep-12 / 6.3.2 Minor)

* 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
* use [AzAPICall](https://aka.ms/AzAPICall) PowerShell module version 1.1.79

__Changes__ (2023-Sep-04 / 6.3.1 Minor)

* 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
Expand Down
10 changes: 5 additions & 5 deletions pwsh/AzGovVizParallel.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -365,10 +365,10 @@ Param
$Product = 'AzGovViz',

[string]
$AzAPICallVersion = '1.1.78',
$AzAPICallVersion = '1.1.79',

[string]
$ProductVersion = '6.3.1',
$ProductVersion = '6.3.2',

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

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

Expand Down
10 changes: 5 additions & 5 deletions pwsh/dev/devAzGovVizParallel.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -365,10 +365,10 @@ Param
$Product = 'AzGovViz',

[string]
$AzAPICallVersion = '1.1.78',
$AzAPICallVersion = '1.1.79',

[string]
$ProductVersion = '6.3.1',
$ProductVersion = '6.3.2',

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

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

Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"ProductVersion": "6.3.1"
"ProductVersion": "6.3.2"
}

0 comments on commit f089b43

Please sign in to comment.