Skip to content

Commit 09dcb38

Browse files
author
Ryan Johnson
authored
chore: add vcf 452 (#91)
- Added support for VMware Cloud Foundation 4.5.2. - Bump module build to 1.3.0.1005. Signed-off-by: Ryan Johnson <[email protected]>
1 parent 889abb8 commit 09dcb38

3 files changed

+5
-3
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Bug Fixes:
1717
- Updated `Request-EsxiPasswordComplexity` to use `Test-VCFConnection` instead of `Test-Connection` to check the connection. [GH-62](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/62)
1818
- Updated `Request-EsxiAccountLockout` to use `Test-VCFConnection` instead of `Test-Connection` to check the connection. [GH-62](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/62)
1919
- Updated `Update-EsxiPasswordExpiration` to use `Test-VCFConnection` instead of `Test-Connection` to check the connection. [GH-62](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/62)
20+
- Updated `Get-PasswordPolicyDefault` to include support for version 4.5.2. [GH-91](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/91)
21+
- Updated `Get-PasswordPolicyConfig` to include support for version 4.5.2. [GH-91](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/91)
2022
- Updated `Get-PasswordPolicyDefault` to include support for version 4.5.0. [GH-71](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/71)
2123
- Updated `Get-PasswordPolicyConfig` to include support for version 4.5.0. [GH-71](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/71)
2224
- Updated `Invoke-PasswordPolicyManager` to address version support updates and JSON file depth handling. [GH-71](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/71)

Diff for: VMware.CloudFoundation.PasswordManagement.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = '.\VMware.CloudFoundation.PasswordManagement.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.3.0.1004'
15+
ModuleVersion = '1.3.0.1005'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

Diff for: VMware.CloudFoundation.PasswordManagement.psm1

+2-2
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ Function Get-PasswordPolicyDefault {
611611

612612
Param (
613613
[Parameter (Mandatory = $false, ParameterSetName = 'json')] [ValidateNotNullOrEmpty()] [Switch]$generateJson,
614-
[Parameter (Mandatory = $true)] [ValidateSet('4.4.0','4.5.0','4.5.1','5.0.0')] [String]$version,
614+
[Parameter (Mandatory = $true)] [ValidateSet('4.4.0','4.5.0','4.5.1','4.5.2','5.0.0')] [String]$version,
615615
[Parameter (Mandatory = $true, ParameterSetName = 'json')] [ValidateNotNullOrEmpty()] [String]$jsonFile,
616616
[Parameter (Mandatory = $false, ParameterSetName = 'json')] [ValidateNotNullOrEmpty()] [Switch]$force
617617
)
@@ -852,7 +852,7 @@ Export-ModuleMember -Function Get-PasswordPolicyDefault
852852
Function Get-PasswordPolicyConfig {
853853
Param (
854854
[Parameter (Mandatory = $false)] [ValidateNotNullOrEmpty()] [String]$reportPath,
855-
[Parameter (Mandatory = $true)] [ValidateSet('4.4.0','4.5.0','4.5.1','5.0.0')] [String]$version,
855+
[Parameter (Mandatory = $true)] [ValidateSet('4.4.0','4.5.0','4.5.1','4.5.2','5.0.0')] [String]$version,
856856
[Parameter (Mandatory = $false)] [ValidateNotNullOrEmpty()] [String]$policyFile
857857
)
858858

0 commit comments

Comments
 (0)