Skip to content

Commit 8d405ca

Browse files
Merge pull request #22 from FriedrichWeinmann/development
1.3.18
2 parents e299e6b + 1692984 commit 8d405ca

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

MiniGraph/MiniGraph.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'MiniGraph.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.3.17'
7+
ModuleVersion = '1.3.18'
88

99
# Supported PSEditions
1010
# CompatiblePSEditions = @()

MiniGraph/functions/Invoke-GraphRequest.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
ContentType = $ContentType
7171
}
7272
if ($Query -match '^http://|https://') {
73-
$parameters.Query = $Query
73+
$parameters.Uri = $Query
7474
}
7575
if ($Body) {
7676
if ($Body -is [string]) { $parameters.Body = $Body }

changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.3.18 (2024-03-19)
4+
5+
+ Fix: Invoke-GraphRequest - fails to execute queries starting with http
6+
37
## 1.3.17 (2024-03-13)
48

59
+ Upd: Invoke-GraphRequest - supports full http links as query

0 commit comments

Comments
 (0)