Skip to content

Commit 75abaf2

Browse files
committed
6.5.4
1 parent 42618ac commit 75abaf2

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,13 @@ The [Azure Governance Visualizer accelerator](https://github.com/Azure/Azure-Gov
8484

8585
## Release history
8686

87+
**Changes** (2024-September-19 / 6.5.4 Patch)
88+
89+
- minor PSScriptAnalyzer finding resolved
90+
8791
**Changes** (2024-September-17 / 6.5.3 Patch)
8892

89-
- fix stop error for subscriptions with null valued quotaId. the function detailSubscription uses `.startsWith()` method to check for `AAD_` but cannot validate when a null-valued `.quotaId` occurs.
93+
- fix stop error for subscriptions with null valued quotaId. the function detailSubscription uses `.startsWith()` method to check for `AAD_` but cannot validate when a null-valued `.quotaId` occurs.
9094

9195
[Full release history](history.md)
9296

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+
8+
**Changes** (2024-September-19 / 6.5.4 Patch)
9+
10+
- minor PSScriptAnalyzer finding resolved
11+
712
**Changes** (2024-September-17 / 6.5.3 Patch)
813

914
- fix stop error for subscriptions with null valued quotaId. the function detailSubscription uses `.startsWith()` method to check for `AAD_` but cannot validate when a null-valued `.quotaId` occurs.

pwsh/AzGovVizParallel.ps1

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

367367
[string]
368-
$ProductVersion = '6.5.3',
368+
$ProductVersion = '6.5.4',
369369

370370
[string]
371371
$GithubRepository = 'aka.ms/AzGovViz',
@@ -2435,7 +2435,7 @@ function detailSubscriptions {
24352435
foreach ($childrenSubscription in $childrenSubscriptions) {
24362436

24372437
$sub = $htAllSubscriptionsFromAPI.($childrenSubscription.name)
2438-
if ($sub.subDetails.subscriptionPolicies.quotaId -eq $null) {
2438+
if ($null -eq $sub.subDetails.subscriptionPolicies.quotaId) {
24392439
$null = $script:outOfScopeSubscriptions.Add([PSCustomObject]@{
24402440
subscriptionId = $childrenSubscription.name
24412441
subscriptionName = $childrenSubscription.properties.displayName

pwsh/dev/devAzGovVizParallel.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ Param
365365
$Product = 'AzGovViz',
366366

367367
[string]
368-
$ProductVersion = '6.5.3',
368+
$ProductVersion = '6.5.4',
369369

370370
[string]
371371
$GithubRepository = 'aka.ms/AzGovViz',

pwsh/dev/functions/detailSubscriptions.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
foreach ($childrenSubscription in $childrenSubscriptions) {
3838

3939
$sub = $htAllSubscriptionsFromAPI.($childrenSubscription.name)
40-
if ($sub.subDetails.subscriptionPolicies.quotaId -eq $null) {
40+
if ($null -eq $sub.subDetails.subscriptionPolicies.quotaId) {
4141
$null = $script:outOfScopeSubscriptions.Add([PSCustomObject]@{
4242
subscriptionId = $childrenSubscription.name
4343
subscriptionName = $childrenSubscription.properties.displayName

version.json

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

0 commit comments

Comments
 (0)