Skip to content

Commit d8721b5

Browse files
committed
v1.3.6 release
## 1.3.6 - 2025-08-24 ### Fixed - Fix divide by zero error (@rebelinux) ([Fix #129](#129)) - Fix PowerCLI module dependency ([#134](#134)) - Update colour placeholders in `README.md` ### Changed - Improve vSAN Capacity reporting and healthchecks - Add `VCF.PowerCLI` to `ExternalModuleDependencies` in the module manifest. ### Removed - Remove `Get-RequiredModule` function to check for PowerCLI versions. - Remove VMware document style script
1 parent 1ee33b1 commit d8721b5

File tree

10 files changed

+109
-236
lines changed

10 files changed

+109
-236
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ body:
6969
id: powershell-modules
7070
attributes:
7171
label: PowerShell Modules
72-
description: Please provide information about the PowerShell modules are you using. Please provide the output from the following PowerShell command `Get-Module -ListAvailable @("AsBuiltReport.Core";"AsBuiltReport.VMware.vSphere";"PSPKI";"PScriboCharts";"PScribo") | Select Name, Version`
73-
placeholder: Get-Module -ListAvailable @("AsBuiltReport.Core";"AsBuiltReport.VMware.vSphere";"PScribo") | Select Name, Version
72+
description: Please provide information about the PowerShell modules are you using. Please provide the output from the following PowerShell command `Get-Module -ListAvailable @("AsBuiltReport.Core";"AsBuiltReport.VMware.vSphere";"PScribo";"VCF.PowerCLI") | Select Name, Version`
73+
placeholder: Get-Module -ListAvailable @("AsBuiltReport.Core";"AsBuiltReport.VMware.vSphere";"PScribo";"VCF.PowerCLI") | Select Name, Version
7474
validations:
7575
required: true
7676
- type: textarea
@@ -87,11 +87,11 @@ body:
8787
If you are unsure of what a specific requirement means, please follow the links to learn about it and understand why it is necessary before submitting.
8888
options:
8989
- label: >-
90-
I have read and followed the [bug reporting guidelines](https://www.asbuiltreport.com/about/contributing/#reporting-issues-and-bugs).
90+
I have read and followed the [bug reporting guidelines](https://www.asbuiltreport.com/dev-guide/contributing/#reporting-issues-and-bugs).
9191
required: true
9292
- label: >-
9393
I have read [the documentation](https://www.asbuiltreport.com/user-guide/new-asbuiltconfig),
94-
and referred to the [known issues](https://www.asbuiltreport.com/user-guide/known-issues/) before submitting this bug report.
94+
and referred to the [known issues](https://www.asbuiltreport.com/support/known-issues) before submitting this bug report.
9595
required: true
9696
- label: >-
9797
I have checked for previously opened & closed [issues](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/issues) before submitting this bug report.

.github/ISSUE_TEMPLATE/change_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
options:
2828
- label: >-
2929
I have read [the documentation](https://www.asbuiltreport.com/user-guide/new-asbuiltconfig),
30-
and referred to the [known issues](https://www.asbuiltreport.com/user-guide/known-issues/) before submitting this change request.
30+
and referred to the [known issues](https://www.asbuiltreport.com/support/known-issues) before submitting this change request.
3131
required: true
3232
- label: >-
3333
I have checked for previously opened & closed [issues](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/issues) before submitting this change request.

.github/workflows/PSScriptAnalyzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Run PSScriptAnalyzer
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99
- name: lint
1010
uses: devblackops/github-action-psscriptanalyzer@master
1111
with:

AsBuiltReport.VMware.vSphere.Style.ps1

Lines changed: 0 additions & 104 deletions
This file was deleted.

AsBuiltReport.VMware.vSphere.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
RequiredModules = @(
5252
@{
5353
ModuleName = 'AsBuiltReport.Core';
54-
ModuleVersion = '1.4.2'
54+
ModuleVersion = '1.4.3'
5555
}
5656
)
5757

@@ -117,7 +117,7 @@
117117
# RequireLicenseAcceptance = $false
118118

119119
# External dependent modules of this module
120-
# ExternalModuleDependencies = @()
120+
ExternalModuleDependencies = @('VCF.PowerCLI')
121121

122122
} # End of PSData hashtable
123123

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 1.3.6 - 2025-02-27
8+
## 1.3.6 - 2025-08-24
9+
10+
### Fixed
11+
- Fix divide by zero error (@rebelinux) ([Fix #129](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/issues/129))
12+
- Fix PowerCLI module dependency ([#134](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/issues/134))
13+
- Update colour placeholders in `README.md`
14+
15+
### Changed
16+
- Improve vSAN Capacity reporting and healthchecks
17+
- Add `VCF.PowerCLI` to `ExternalModuleDependencies` in the module manifest.
18+
19+
### Removed
20+
- Remove `Get-RequiredModule` function to check for PowerCLI versions.
21+
- Remove VMware document style script
22+
23+
## 1.3.5 - 2025-02-27
924
### Fixed
1025
- Fix issue with license reporting ([Fix #128](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/issues/128))
1126
- Fix issue with vCenter user privileges not handling groups (@nathcoad) ([Fix #102](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/issues/102))
@@ -14,7 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1429

1530
### Added
1631
- Add Free resource capacity reporting to VMhost hardware section
17-
- Add vSAN Capacity reporting and healthchecks
1832

1933
### Changed
2034
- Update VMware PowerCLI requirements to version 13.3

0 commit comments

Comments
 (0)