diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a6c5645..f30cdc64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,11 @@ Bugfix: - Updated `Invoke-VcfUpgradePrecheck` cmdlet to handle `.` or `-` in the report path. [GH-217](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/217) - Updated `Invoke-VcfOverviewReport` cmdlet to handle `.` or `-` in the report path. [GH-217](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/217) +Chore: + +- Updated `VMware.PowerCLI` from v13.1.0 to v13.2.1 [GH-218](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/218) +- Updated `PowerValidatedSolutions` from v2.8.0 to v2.10.0. [GH-218](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/218) + ## v2.6.1 > Release Date: 2024-02-06 diff --git a/VMware.CloudFoundation.Reporting.psd1 b/VMware.CloudFoundation.Reporting.psd1 index c1e321f2..9aafa1c3 100644 --- a/VMware.CloudFoundation.Reporting.psd1 +++ b/VMware.CloudFoundation.Reporting.psd1 @@ -11,7 +11,7 @@ RootModule = '.\VMware.CloudFoundation.Reporting.psm1' # Version number of this module. - ModuleVersion = '2.6.2.1000' + ModuleVersion = '2.6.2.1001' # Supported PSEditions # CompatiblePSEditions = @() @@ -61,7 +61,7 @@ } @{ ModuleName = 'PowerValidatedSolutions' - ModuleVersion = '2.8.0' + ModuleVersion = '2.10.0' } ) diff --git a/docs/index.md b/docs/index.md index 6593a167..a3df0a0e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -48,10 +48,10 @@ The following table lists the required PowerShell module dependencies for this m PowerShell Module | Version | Publisher | Reference -----------------------------------------------------|-----------|--------------|--------------------------------------------------------------------------- -[VMware.PowerCLI][psgallery-module-powercli] | >= 13.1.0 | Broadcom | :fontawesome-solid-book:   [Documentation][developer-module-powercli] +[VMware.PowerCLI][psgallery-module-powercli] | >= 13.2.1 | Broadcom | :fontawesome-solid-book:   [Documentation][developer-module-powercli] [VMware.vSphere.SsoAdmin][psgallery-module-ssoadmin] | >= 1.3.9 | Broadcom | :fontawesome-brands-github:   [GitHub][github-module-ssoadmin] [PowerVCF][psgallery-module-powervcf] | >= 2.4.1 | Broadcom | :fontawesome-solid-book:   [Documentation][docs-module-powervcf] -[PowerValidatedSolutions][psgallery-module-pvs] | >= 2.8.0 | Broadcom | :fontawesome-solid-book:   [Documentation][docs-module-pvs] +[PowerValidatedSolutions][psgallery-module-pvs] | >= 2.10.0 | Broadcom | :fontawesome-solid-book:   [Documentation][docs-module-pvs] ### Browsers diff --git a/docs/snippets/install-module.ps1 b/docs/snippets/install-module.ps1 index 8a472b0e..b862ed92 100644 --- a/docs/snippets/install-module.ps1 +++ b/docs/snippets/install-module.ps1 @@ -1,6 +1,6 @@ Set-PSRepository -Name PSGallery -InstallationPolicy Trusted -Install-Module -Name VMware.PowerCLI -MinimumVersion 13.1.0 -Repository PSGallery -Install-Module -Name VMware.vSphere.SsoAdmin -MinimumVersion 1.3.9 -Repository PSGallery -Install-Module -Name PowerVCF -MinimumVersion 2.4.1 -Repository PSGallery -Install-Module -Name PowerValidatedSolutions -MinimumVersion 2.8.0 -Repository PSGallery -Install-Module -Name VMware.CloudFoundation.Reporting -Repository PSGallery +Install-Module -Name VMware.PowerCLI -MinimumVersion 13.2.1 -Repository PSGallery -AllUsers +Install-Module -Name VMware.vSphere.SsoAdmin -MinimumVersion 1.3.9 -Repository PSGallery -AllUsers +Install-Module -Name PowerVCF -MinimumVersion 2.4.1 -Repository PSGallery -AllUsers +Install-Module -Name PowerValidatedSolutions -MinimumVersion 2.10.0 -Repository PSGallery -AllUsers +Install-Module -Name VMware.CloudFoundation.Reporting -Repository PSGallery -AllUsers