diff --git a/CHANGELOG.md b/CHANGELOG.md index 338baeca..f28f6cea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ Bugfix: - Updates `Request-DatastoreStorageCapacity` to handle datastores with a size of 0. [GH-217](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/217) +Chore: + +- Updated `PowerValidatedSolutions` from v2.10.0 to v2.11.0. [GH-226](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/226) + ## v2.6.2 > Release Date: 2024-05-28 diff --git a/VMware.CloudFoundation.Reporting.psd1 b/VMware.CloudFoundation.Reporting.psd1 index 24956986..413b2b2f 100644 --- a/VMware.CloudFoundation.Reporting.psd1 +++ b/VMware.CloudFoundation.Reporting.psd1 @@ -11,10 +11,7 @@ RootModule = '.\VMware.CloudFoundation.Reporting.psm1' # Version number of this module. - ModuleVersion = '2.6.3.1000' - - # Supported PSEditions - # CompatiblePSEditions = @() + ModuleVersion = '2.6.3.1001' # ID used to uniquely identify this module GUID = '043bbd4d-206a-4520-87f5-070450379d72' @@ -61,7 +58,7 @@ } @{ ModuleName = 'PowerValidatedSolutions' - ModuleVersion = '2.10.0' + ModuleVersion = '2.11.0' } ) @@ -139,5 +136,4 @@ # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' - } diff --git a/docs/index.md b/docs/index.md index 0c7af432..dbd7775e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -23,7 +23,6 @@ Platform | vSAN ReadyNodes :fontawesome-solid-cloud:   VMware Cloud Foundation 5.0 | :fontawesome-solid-check:{ .green } | :fontawesome-solid-check:{ .green } :fontawesome-solid-cloud:   VMware Cloud Foundation 4.5 | :fontawesome-solid-check:{ .green } | :fontawesome-solid-check:{ .green } :fontawesome-solid-cloud:   VMware Cloud Foundation 4.4 | :fontawesome-solid-check:{ .green } | :fontawesome-solid-check:{ .green } -:fontawesome-solid-cloud:   VMware Cloud Foundation 4.3 | :fontawesome-solid-x:{ .red } | :fontawesome-solid-x:{ .red } ### Operating Systems @@ -39,29 +38,29 @@ Operating System | Version The following table lists the supported editions and versions of PowerShell for this module. -Edition | Version -----------------------------------------------------------------------------------|---------- -:material-powershell:   [PowerShell Core][microsoft-powershell] | >= 7.2.0 +Edition | Version +---------------------------------------------------------------------|---------- +:material-powershell:   [PowerShell Core][microsoft-powershell] | >= 7.2.0 ### Module Dependencies The following table lists the required PowerShell module dependencies for this module. -PowerShell Module | Version | Publisher | Reference ------------------------------------------------------|-----------|--------------|--------------------------------------------------------------------------- -[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.10.0 | Broadcom | :fontawesome-solid-book:   [Documentation][docs-module-pvs] +PowerShell Module | Version | Publisher | Reference +-----------------------------------------------------|-----------|-----------|--------------------------------------------------------------------------- +[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.11.0 | Broadcom | :fontawesome-solid-book:   [Documentation][docs-module-pvs] ### Browsers For the best experience, use one of the following browsers to view the HTML reports generated by this module. -Browser | Download -----------------------------------------------------|-------------------------------------------------------------------------- -:fontawesome-brands-edge:   Microsoft Edge | :fontawesome-solid-cloud-arrow-down:   [Download][download-browser-edge] -:fontawesome-brands-chrome:   Google Chrome | :fontawesome-solid-cloud-arrow-down:   [Download][download-browser-chrome] +Browser | Download +---------------------------------------------------|-------------------------------------------------------------------------------- +:fontawesome-brands-edge:   Microsoft Edge | :fontawesome-solid-cloud-arrow-down:   [Download][download-browser-edge] +:fontawesome-brands-chrome:   Google Chrome | :fontawesome-solid-cloud-arrow-down:   [Download][download-browser-chrome] :fontawesome-brands-firefox:   Mozilla Firefox | :fontawesome-solid-cloud-arrow-down:   [Download][download-browser-firefox] [docs-vmware-cloud-foundation]: https://docs.vmware.com/en/VMware-Cloud-Foundation/index.html diff --git a/docs/install.md b/docs/install.md index a56c7e59..55885453 100644 --- a/docs/install.md +++ b/docs/install.md @@ -10,7 +10,7 @@ Verify that your system has a [supported edition and version](index.md#powershel --8<-- "./docs/snippets/install-module.ps1" ``` - If using PowerShell 7 (Core), import the modules before proceeding: + Import the modules before proceeding: For example: diff --git a/docs/snippets/copy-module-local-windows.ps1 b/docs/snippets/copy-module-local-windows.ps1 index 598c97e5..28143f6b 100644 --- a/docs/snippets/copy-module-local-windows.ps1 +++ b/docs/snippets/copy-module-local-windows.ps1 @@ -1 +1 @@ -Copy-Item -Path F:\Module\* -Destination '\\\C$\Program Files\WindowsPowerShell\Modules\' -Recurse \ No newline at end of file +Copy-Item -Path F:\Modules\* -Destination '\\\C$\Program Files\WindowsPowerShell\Modules\' -Recurse diff --git a/docs/snippets/install-module.ps1 b/docs/snippets/install-module.ps1 index f5224a38..df527904 100644 --- a/docs/snippets/install-module.ps1 +++ b/docs/snippets/install-module.ps1 @@ -2,5 +2,5 @@ Set-PSRepository -Name PSGallery -InstallationPolicy Trusted Install-Module -Name VMware.PowerCLI -MinimumVersion 13.2.1 -Repository PSGallery -Scope AllUsers Install-Module -Name VMware.vSphere.SsoAdmin -MinimumVersion 1.3.9 -Repository PSGallery -Scope AllUsers Install-Module -Name PowerVCF -MinimumVersion 2.4.1 -Repository PSGallery -Scope AllUsers -Install-Module -Name PowerValidatedSolutions -MinimumVersion 2.10.0 -Repository PSGallery -Scope AllUsers +Install-Module -Name PowerValidatedSolutions -MinimumVersion 2.11.0 -Repository PSGallery -Scope AllUsers Install-Module -Name VMware.CloudFoundation.Reporting -Repository PSGallery -Scope AllUsers diff --git a/docs/snippets/save-module-local-windows.ps1 b/docs/snippets/save-module-local-windows.ps1 index 7b94e334..71eda426 100644 --- a/docs/snippets/save-module-local-windows.ps1 +++ b/docs/snippets/save-module-local-windows.ps1 @@ -1,5 +1,5 @@ -Save-Module -Name VMware.PowerCLI -Path F:\Module\ -Repository PSGallery -Save-Module -Name VMware.vSphere.SsoAdmin -Path F:\Module\ -Repository PSGallery -Save-Module -Name PowerVCF -Path F:\Module\ -Repository PSGallery -Save-Module -Name PowerValidatedSolutions -Path F:\Module\ -Repository PSGallery -Save-Module -Name VMware.CloudFoundation.Reporting -Path F:\Module\ -Repository PSGallery \ No newline at end of file +Save-Module -Name VMware.PowerCLI -Path F:\Modules\ -Repository PSGallery +Save-Module -Name VMware.vSphere.SsoAdmin -Path F:\Modules\ -Repository PSGallery +Save-Module -Name PowerVCF -Path F:\Modules\ -Repository PSGallery +Save-Module -Name PowerValidatedSolutions -Path F:\Modules\ -Repository PSGallery +Save-Module -Name VMware.CloudFoundation.Reporting -Path F:\Modules\ -Repository PSGallery