Skip to content

Commit c139f48

Browse files
committed
Updated Get-OSServerConfig to allow properties with numbers. Raise version
1 parent c210793 commit c139f48

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Outsystems.SetupTools Release History
22

3+
## 3.11.0.0
4+
5+
- Change Set-OSServerConfig and Get-OSServerConfig to allow properties with numbers
6+
37
## 3.10.1.0
48

59
- Fixed Publish-OSPlatformLifetime when updating lifetime with newer lifetime versions

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 3.10.1.{build}
1+
version: 3.11.0.{build}
22

33
only_commits:
44
files:

src/Outsystems.SetupTools/Functions/Get-OSServerConfig.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ function Get-OSServerConfig
2121
param(
2222
[Parameter(Mandatory = $true)]
2323
[ValidateNotNullOrEmpty()]
24-
[ValidatePattern('^[a-zA-Z]+$')]
24+
[ValidatePattern('^[a-zA-Z0-9]+$')]
2525
[string]$SettingSection,
2626

2727
[Parameter(Mandatory = $true)]
2828
[ValidateNotNullOrEmpty()]
29-
[ValidatePattern('^[a-zA-Z]+$')]
29+
[ValidatePattern('^[a-zA-Z0-9]+$')]
3030
[string]$Setting
3131
)
3232

src/Outsystems.SetupTools/OutSystems.SetupTools.psd1

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

1414
# Version number of this module.
15-
ModuleVersion = '3.10.1.0'
15+
ModuleVersion = '3.11.0.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

0 commit comments

Comments
 (0)