Skip to content

Commit

Permalink
1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianHayward committed Apr 25, 2024
1 parent 39504ee commit 5745ef7
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Binary file modified pwsh/module/build/AzAPICall.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion pwsh/module/build/AzAPICall/AzAPICall.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'AzAPICall.psm1'

# Version number of this module.
ModuleVersion = '1.2.1'
ModuleVersion = '1.2.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
6 changes: 3 additions & 3 deletions pwsh/module/build/AzAPICall/functions/AzAPICallFunctions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ function AzAPICall {
elseif ($listenOn -eq 'ContentProperties') {
debugAzAPICall -debugMessage "listenOn=ContentProperties ($(($azAPIRequestConvertedFromJson.properties.rows).count))"
if (($azAPIRequestConvertedFromJson.properties.rows).Count -gt 0) {
$apiCallResultsCollection.Add($azAPIRequestConvertedFromJson)
$null = $apiCallResultsCollection.Add($azAPIRequestConvertedFromJson)
}
}
elseif ($listenOn -eq 'Raw') {
Expand Down Expand Up @@ -827,7 +827,7 @@ function AzAPICallErrorHandler {
foreach ($resultTenants in $results) {
$pattern = "$($AzAPICallConfiguration['azAPIEndpointUrls'].IssuerUri)/(.*?)/"
if ([System.Guid]::TryParse([regex]::Match($resultTenants, $pattern).Groups[1].Value, [System.Management.Automation.PSReference]$ObjectGuid)) {
$return.Add([regex]::Match($resultTenants, $pattern).Groups[1].Value)
$null = $return.Add([regex]::Match($resultTenants, $pattern).Groups[1].Value)
}
}
Logging -preventWriteOutput $true -logMessage "$defaultErrorInfo - AzAPICall: return '$($return -join ', ')'"
Expand Down Expand Up @@ -1713,7 +1713,7 @@ function getAzAPICallFunctions {
function getAzAPICallRuleSet {
return $function:AzAPICallErrorHandler.ToString()
}
function getAzAPICallVersion { return '1.2.1' }
function getAzAPICallVersion { return '1.2.2' }

function getJWTDetails {
<#
Expand Down
2 changes: 1 addition & 1 deletion pwsh/module/dev/AzAPICall/AzAPICall.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'AzAPICall.psm1'

# Version number of this module.
ModuleVersion = '1.2.1'
ModuleVersion = '1.2.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion pwsh/module/dev/AzAPICall/functions/AzAPICall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@
elseif ($listenOn -eq 'ContentProperties') {
debugAzAPICall -debugMessage "listenOn=ContentProperties ($(($azAPIRequestConvertedFromJson.properties.rows).count))"
if (($azAPIRequestConvertedFromJson.properties.rows).Count -gt 0) {
$apiCallResultsCollection.Add($azAPIRequestConvertedFromJson)
$null = $apiCallResultsCollection.Add($azAPIRequestConvertedFromJson)
}
}
elseif ($listenOn -eq 'Raw') {
Expand Down
2 changes: 1 addition & 1 deletion pwsh/module/dev/AzAPICall/functions/AzAPICallRuleSet.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ function AzAPICallErrorHandler {
foreach ($resultTenants in $results) {
$pattern = "$($AzAPICallConfiguration['azAPIEndpointUrls'].IssuerUri)/(.*?)/"
if ([System.Guid]::TryParse([regex]::Match($resultTenants, $pattern).Groups[1].Value, [System.Management.Automation.PSReference]$ObjectGuid)) {
$return.Add([regex]::Match($resultTenants, $pattern).Groups[1].Value)
$null = $return.Add([regex]::Match($resultTenants, $pattern).Groups[1].Value)
}
}
Logging -preventWriteOutput $true -logMessage "$defaultErrorInfo - AzAPICall: return '$($return -join ', ')'"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
function getAzAPICallVersion { return '1.2.1' }
function getAzAPICallVersion { return '1.2.2' }

0 comments on commit 5745ef7

Please sign in to comment.