Skip to content

Commit 690e523

Browse files
authored
Merge pull request #63 from insomniacc/next
v1.3.2
2 parents ea029fe + 7dcb4c0 commit 690e523

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.3.2] - 2024-05-26
10+
### Fixed
11+
- fixed issued with TimeoutSec on Invoke-SNOWWebRequest in PS 7.3
12+
913
## [1.3.1] - 2024-04-20
1014
### Fixed
1115
- 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
8892
- TABLE API support with Get/New/Set/Remove-SNOWObject (these core functions provide the template for all other table functions)
8993
- TABLE API framework with private functions supporting CRUD operations.
9094

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
9297
[1.3.1]: https://github.com/insomniacc/PSSnow/compare/v1.3.0..v1.3.1
9398
[1.3.0]: https://github.com/insomniacc/PSSnow/compare/v1.2.0..v1.3.0
9499
[1.2.0]: https://github.com/insomniacc/PSSnow/compare/v1.1.0..v1.2.0

src/PSSnow.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'PSSnow.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.3.1'
15+
ModuleVersion = '1.3.2'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Desktop', 'Core'

src/Public/Invoke-SNOWWebRequest.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function Invoke-SNOWWebRequest {
5353

5454
#? Timeout properties
5555
if($WebCallTimeoutSeconds -gt 0){
56-
if($PSVersionTable.PSVersion.ToString() -gt 7.3){
56+
if($PSVersionTable.PSVersion.ToString() -ge 7.4){
5757
$TimeoutSplat = @{
5858
OperationTimeoutSeconds = $WebCallTimeoutSeconds
5959
}

0 commit comments

Comments
 (0)