From 5c5396553ea91a39b501e74fee866e162b86fdac Mon Sep 17 00:00:00 2001 From: bhumitra nagar Date: Fri, 25 Aug 2023 20:01:31 +0100 Subject: [PATCH] chore: release preparation (#171) - Updated `PowerValidatedSolutions` from v13.0.0 to v13.1.0 - Updated `VMware.PowerCLI` from v2.5.0 to v2.6.0. - Updated module versions in `docs/snippets/install-module.ps1` - Added PowerShell Gallery downloads badge to the `docs/index.md` Signed-off-by: bhumitra nagar Signed-off-by: bhumitra nagar Co-authored-by: Ryan Johnson --- CHANGELOG.md | 10 ++++++++-- VMware.CloudFoundation.Reporting.psd1 | 4 ++-- docs/index.md | 6 ++++-- docs/snippets/install-module.ps1 | 4 ++-- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8600f31f..e4e54e90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,18 @@ # Release History -> Release Date: Unreleased +> Release Date: 2023-08-29 ## [v2.4.0](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/releases/tag/v2.4.0) Bugfix: -- Updated `Request-VcenterStorageHealth` to exclude `/dev/mapper/archive_vg-archive` from the output per [KB 76563](https://kb.vmware.com/s/article/76563). +- Updated `Request-VcenterStorageHealth` to exclude `/dev/mapper/archive_vg-archive` from the output per [KB 76563](https://kb.vmware.com/s/article/76563). [GH-167](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/167) + +Chore: + +- Updated `VMware.PowerCLI` from v13.0.0 to v13.1.0. [GH-171](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/171) +- Updated `PowerValidatedSolutions` from v2.5.0 to v2.6.0. [GH-171](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/171) +- Added PowerShell Gallery downloads badge to the `docs/index.md` [GH-171](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/pull/171) ## [v2.3.0](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-reporting/releases/tag/v2.3.0) diff --git a/VMware.CloudFoundation.Reporting.psd1 b/VMware.CloudFoundation.Reporting.psd1 index a946520d..6e6fa07b 100644 --- a/VMware.CloudFoundation.Reporting.psd1 +++ b/VMware.CloudFoundation.Reporting.psd1 @@ -12,7 +12,7 @@ RootModule = '.\VMware.CloudFoundation.Reporting.psm1' # Version number of this module. - ModuleVersion = '2.4.0.1000' + ModuleVersion = '2.4.0.1001' # Supported PSEditions # CompatiblePSEditions = @() @@ -62,7 +62,7 @@ } @{ ModuleName = 'PowerValidatedSolutions' - ModuleVersion = '2.5.0' + ModuleVersion = '2.6.0' } ) diff --git a/docs/index.md b/docs/index.md index d7bacf80..68a657dd 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,6 +4,8 @@ # PowerShell Module for VMware Cloud Foundation Reporting +PowerShell Gallery Downloads + `VMware.CloudFoundation.Reporting` is an open source PowerShell module that supports the ability to gain insights into the operational state of [VMware Cloud Foundation][docs-vmware-cloud-foundation] through the use of PowerShell cmdlets. These cmdlets provide quick access to information from the PowerShell console as well as the ability to publish pre-defined HTML reports. [:material-powershell:   PowerShell Gallery][psgallery-module-reporting]{ .md-button .md-button--primary } @@ -46,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.0.0 | VMware, Inc. | :fontawesome-solid-book:   [Documentation][developer-module-powercli] +[VMware.PowerCLI][psgallery-module-powercli] | >= 13.1.0 | VMware, Inc. | :fontawesome-solid-book:   [Documentation][developer-module-powercli] [VMware.vSphere.SsoAdmin][psgallery-module-ssoadmin] | >= 1.3.9 | VMware, Inc. | :fontawesome-brands-github:   [GitHub][github-module-ssoadmin] [PowerVCF][psgallery-module-powervcf] | >= 2.3.0 | VMware, Inc. | :fontawesome-solid-book:   [Documentation][docs-module-powervcf] -[PowerValidatedSolutions][psgallery-module-pvs] | >= 2.5.0 | VMware, Inc. | :fontawesome-solid-book:   [Documentation][docs-module-pvs] +[PowerValidatedSolutions][psgallery-module-pvs] | >= 2.6.0 | VMware, Inc. | :fontawesome-solid-book:   [Documentation][docs-module-pvs] ### Browsers diff --git a/docs/snippets/install-module.ps1 b/docs/snippets/install-module.ps1 index 102bc46c..97fbc790 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.0.0 +Install-Module -Name VMware.PowerCLI -MinimumVersion 13.1.0 Install-Module -Name VMware.vSphere.SsoAdmin -MinimumVersion 1.3.9 Install-Module -Name PowerVCF -MinimumVersion 2.3.0 -Install-Module -Name PowerValidatedSolutions -MinimumVersion 2.5.0 +Install-Module -Name PowerValidatedSolutions -MinimumVersion 2.6.0 Install-Module -Name VMware.CloudFoundation.Reporting