File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.3.2] - 2024-05-26
10
+ ### Fixed
11
+ - fixed issued with TimeoutSec on Invoke-SNOWWebRequest in PS 7.3
12
+
9
13
## [ 1.3.1] - 2024-04-20
10
14
### Fixed
11
15
- fixed issued with utf-8 character encoding on update and create table API functions
@@ -88,7 +92,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
92
- TABLE API support with Get/New/Set/Remove-SNOWObject (these core functions provide the template for all other table functions)
89
93
- TABLE API framework with private functions supporting CRUD operations.
90
94
91
- [ Unreleased ] : https://github.com/insomniacc/PSSnow/compare/v1.3.1..HEAD
95
+ [ Unreleased ] : https://github.com/insomniacc/PSSnow/compare/v1.3.2..HEAD
96
+ [ 1.3.2 ] : https://github.com/insomniacc/PSSnow/compare/v1.3.1..v1.3.2
92
97
[ 1.3.1 ] : https://github.com/insomniacc/PSSnow/compare/v1.3.0..v1.3.1
93
98
[ 1.3.0 ] : https://github.com/insomniacc/PSSnow/compare/v1.2.0..v1.3.0
94
99
[ 1.2.0 ] : https://github.com/insomniacc/PSSnow/compare/v1.1.0..v1.2.0
Original file line number Diff line number Diff line change 12
12
RootModule = ' PSSnow.psm1'
13
13
14
14
# Version number of this module.
15
- ModuleVersion = ' 1.3.1 '
15
+ ModuleVersion = ' 1.3.2 '
16
16
17
17
# Supported PSEditions
18
18
CompatiblePSEditions = ' Desktop' , ' Core'
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ function Invoke-SNOWWebRequest {
53
53
54
54
# ? Timeout properties
55
55
if ($WebCallTimeoutSeconds -gt 0 ){
56
- if ($PSVersionTable.PSVersion.ToString () -gt 7.3 ){
56
+ if ($PSVersionTable.PSVersion.ToString () -ge 7.4 ){
57
57
$TimeoutSplat = @ {
58
58
OperationTimeoutSeconds = $WebCallTimeoutSeconds
59
59
}
You can’t perform that action at this time.
0 commit comments