Skip to content

Commit 896e555

Browse files
Merge pull request #263 from JulianHayward/6.6.1
6.6.1
2 parents 7fd176e + 2159901 commit 896e555

File tree

7 files changed

+26
-15
lines changed

7 files changed

+26
-15
lines changed

README.md

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

8585
## Release history
8686

87+
**Changes** (2024-November-01 / 6.6.1 Patch)
88+
89+
- HTML fix filters __TenantSummary__ PolicyAssignment, __ScopeInsights__ PolicySetAssignments
90+
- use [AzAPICall](https://aka.ms/AzAPICall) PowerShell module version 1.2.4 (Handle 'subscription not registered' `/providers/Microsoft.Security/settings`)
91+
8792
**Changes** (2024-October-26 / 6.6.0 Minor)
8893

8994
- Microsoft Defender for Cloud Coverage (Tenant Summary and CSV export). Example html:
@@ -611,6 +616,7 @@ Azure Governance Visualizer polls the following APIs
611616
| ARM | 2024-01-01 | /subscriptions/`subscriptionId`/providers/Microsoft.Security/pricings |
612617
| ARM | 2020-01-01 | /subscriptions/`subscriptionId`/providers/Microsoft.Security/securescores |
613618
| ARM | 2020-01-01-preview | /subscriptions/`subscriptionId`/providers/Microsoft.Security/securityContacts |
619+
| ARM | 2022-05-01 | /subscriptions/`subscriptionId`/providers/Microsoft.Security/settings |
614620
| ARM | 2019-10-01 | /subscriptions/`subscriptionId`/providers |
615621
| ARM | 2021-04-01 | /subscriptions/`subscriptionId`/resourcegroups |
616622
| ARM | 2024-03-01 | /subscriptions/`subscriptionId`/resources |

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** (2024-November-01 / 6.6.1 Patch)
8+
9+
- HTML fix filters __TenantSummary__ PolicyAssignment, __ScopeInsights__ PolicySetAssignments
10+
- use [AzAPICall](https://aka.ms/AzAPICall) PowerShell module version 1.2.4 (Handle 'subscription not registered' `/providers/Microsoft.Security/settings`)
11+
712
**Changes** (2024-October-26 / 6.6.0 Minor)
813

914
- Microsoft Defender for Cloud Coverage (Tenant Summary and CSV export)

pwsh/AzGovVizParallel.ps1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -371,14 +371,14 @@ Param
371371
$Product = 'AzGovViz',
372372

373373
[string]
374-
$ProductVersion = '6.6.0',
374+
$ProductVersion = '6.6.1',
375375

376376
[string]
377377
$GithubRepository = 'aka.ms/AzGovViz',
378378

379379
# <--- AzAPICall related parameters #consult the AzAPICall GitHub repository for details aka.ms/AzAPICall
380380
[string]
381-
$AzAPICallVersion = '1.2.3',
381+
$AzAPICallVersion = '1.2.4',
382382

383383
[switch]
384384
$DebugAzAPICall,
@@ -12846,7 +12846,7 @@ btn_reset: true, highlight_keywords: true, alternate_rows: true, auto_filter: {
1284612846
linked_filters: true,
1284712847
col_1: 'select',
1284812848
col_4: 'select',
12849-
col_7: 'select',
12849+
col_6: 'select',
1285012850
col_8: 'select',
1285112851
locale: 'en-US',
1285212852
col_types: [
@@ -18484,7 +18484,7 @@ extensions: [{ name: 'sort' }]
1848418484
col_11: 'select',
1848518485
col_12: 'select',
1848618486
col_14: 'select',
18487-
col_16: 'select',
18487+
col_15: 'select',
1848818488
col_17: 'select',
1848918489
locale: 'en-US',
1849018490
col_types: [
@@ -35466,14 +35466,14 @@ if (-not $ignoreARMLocation) {
3546635466
#EndRegion initAZAPICall
3546735467

3546835468
#region required AzAPICall version
35469-
if (-not ([System.Version]"$($azapicallConf['htParameters'].azAPICallModuleVersion)" -ge [System.Version]'1.2.1')) {
35469+
if (-not ([System.Version]"$($azapicallConf['htParameters'].azAPICallModuleVersion)" -ge [System.Version]'1.2.4')) {
3547035470
Write-Host ''
3547135471
Write-Host 'Azure Governance Visualizer version '$ProductVersion' - AzAPICall PowerShell module version check failed -> https://aka.ms/AzAPICall; https://www.powershellgallery.com/packages/AzAPICall'
35472-
throw "This version of Azure Governance Visualizer '$ProductVersion' requires AzAPICall PowerShell module version '1.2.1' or greater"
35472+
throw "This version of Azure Governance Visualizer '$ProductVersion' requires AzAPICall PowerShell module version '1.2.4' or greater"
3547335473
}
3547435474
else {
3547535475
Write-Host ''
35476-
Write-Host "Azure Governance Visualizer version '$ProductVersion' - AzAPICall PowerShell module version requirement check succeeded: '1.2.1' or greater - current: '$($azapicallConf['htParameters'].azAPICallModuleVersion)' " -ForegroundColor Green
35476+
Write-Host "Azure Governance Visualizer version '$ProductVersion' - AzAPICall PowerShell module version requirement check succeeded: '1.2.4' or greater - current: '$($azapicallConf['htParameters'].azAPICallModuleVersion)' " -ForegroundColor Green
3547735477
}
3547835478
#endregion required AzAPICall version
3547935479

pwsh/dev/devAzGovVizParallel.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -371,14 +371,14 @@ Param
371371
$Product = 'AzGovViz',
372372

373373
[string]
374-
$ProductVersion = '6.6.0',
374+
$ProductVersion = '6.6.1',
375375

376376
[string]
377377
$GithubRepository = 'aka.ms/AzGovViz',
378378

379379
# <--- AzAPICall related parameters #consult the AzAPICall GitHub repository for details aka.ms/AzAPICall
380380
[string]
381-
$AzAPICallVersion = '1.2.3',
381+
$AzAPICallVersion = '1.2.4',
382382

383383
[switch]
384384
$DebugAzAPICall,
@@ -854,14 +854,14 @@ if (-not $ignoreARMLocation) {
854854
#EndRegion initAZAPICall
855855

856856
#region required AzAPICall version
857-
if (-not ([System.Version]"$($azapicallConf['htParameters'].azAPICallModuleVersion)" -ge [System.Version]'1.2.1')) {
857+
if (-not ([System.Version]"$($azapicallConf['htParameters'].azAPICallModuleVersion)" -ge [System.Version]'1.2.4')) {
858858
Write-Host ''
859859
Write-Host 'Azure Governance Visualizer version '$ProductVersion' - AzAPICall PowerShell module version check failed -> https://aka.ms/AzAPICall; https://www.powershellgallery.com/packages/AzAPICall'
860-
throw "This version of Azure Governance Visualizer '$ProductVersion' requires AzAPICall PowerShell module version '1.2.1' or greater"
860+
throw "This version of Azure Governance Visualizer '$ProductVersion' requires AzAPICall PowerShell module version '1.2.4' or greater"
861861
}
862862
else {
863863
Write-Host ''
864-
Write-Host "Azure Governance Visualizer version '$ProductVersion' - AzAPICall PowerShell module version requirement check succeeded: '1.2.1' or greater - current: '$($azapicallConf['htParameters'].azAPICallModuleVersion)' " -ForegroundColor Green
864+
Write-Host "Azure Governance Visualizer version '$ProductVersion' - AzAPICall PowerShell module version requirement check succeeded: '1.2.4' or greater - current: '$($azapicallConf['htParameters'].azAPICallModuleVersion)' " -ForegroundColor Green
865865
}
866866
#endregion required AzAPICall version
867867

pwsh/dev/functions/processScopeInsightsMgOrSub.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3008,7 +3008,7 @@ btn_reset: true, highlight_keywords: true, alternate_rows: true, auto_filter: {
30083008
linked_filters: true,
30093009
col_1: 'select',
30103010
col_4: 'select',
3011-
col_7: 'select',
3011+
col_6: 'select',
30123012
col_8: 'select',
30133013
locale: 'en-US',
30143014
col_types: [

pwsh/dev/functions/processTenantSummary.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4337,7 +4337,7 @@ extensions: [{ name: 'sort' }]
43374337
col_11: 'select',
43384338
col_12: 'select',
43394339
col_14: 'select',
4340-
col_16: 'select',
4340+
col_15: 'select',
43414341
col_17: 'select',
43424342
locale: 'en-US',
43434343
col_types: [

version.json

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

0 commit comments

Comments
 (0)