Skip to content

Commit 46094d2

Browse files
authored
v1.0.3 patch release (#41)
* Improve code and report readability * Fix vCenter Server licensing (Issue #34) * Fix Datastore reporting when an empty datastore cluster exists (Issue #35) * Fix VMHost reporting to exclude HCX Cloud Gateway host (Issue #36) * Fix DRS Cluster Group reporting when group does not contain any members * Fix DRS Cluster Group sorting
1 parent f2d92ca commit 46094d2

File tree

4 files changed

+1050
-791
lines changed

4 files changed

+1050
-791
lines changed

AsBuiltReport.VMware.vSphere.psd1

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@
33
#
44
# Generated by: Tim Carman
55
#
6-
# Generated on: 12/03/2019
6+
# Generated on: 7/04/2019
77
#
8+
89
@{
910
# Script module or binary module file associated with this manifest.
1011
RootModule = 'AsBuiltReport.VMware.vSphere.psm1'
1112

1213
# Version number of this module.
13-
ModuleVersion = '1.0.0'
14-
14+
ModuleVersion = '1.0.3'
15+
16+
# Supported PSEditions
17+
CompatiblePSEditions = 'Desktop'
18+
1519
# ID used to uniquely identify this module
1620
GUID = 'e1cbf1ce-cf01-4b6e-9cc2-56323da3c351'
1721

@@ -28,7 +32,7 @@
2832
Description = 'A PowerShell module to generate an as built report on the configuration of VMware vSphere.'
2933

3034
# Minimum version of the Windows PowerShell engine required by this module
31-
PowerShellVersion = '4.0'
35+
PowerShellVersion = '5.1'
3236

3337
# Name of the Windows PowerShell host required by this module
3438
# PowerShellHostName = ''
@@ -46,9 +50,7 @@
4650
# ProcessorArchitecture = ''
4751

4852
# Modules that must be imported into the global environment prior to importing this module
49-
RequiredModules = @(
50-
'AsBuiltReport.Core'
51-
)
53+
RequiredModules = @('AsBuiltReport.Core')
5254

5355
# Assemblies that must be loaded prior to importing this module
5456
# RequiredAssemblies = @()
@@ -92,11 +94,30 @@
9294
PrivateData = @{
9395

9496
PSData = @{
95-
Tags = @('AsBuiltReport', 'Report', 'VMware', 'vSphere', 'Documentation', 'PScribo', 'PSEdition_Desktop')
97+
# Tags applied to this module. These help with module discovery in online galleries.
98+
Tags = 'AsBuiltReport', 'Report', 'VMware', 'vSphere', 'Documentation', 'PScribo', 'PSEdition_Desktop'
99+
100+
# A URL to the license for this module.
96101
LicenseUri = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/master/LICENSE'
102+
103+
# A URL to the main website for this project.
97104
ProjectUri = 'https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere'
105+
106+
# A URL to an icon representing this module.
98107
# IconUri = ''
108+
109+
# ReleaseNotes of this module
99110
# ReleaseNotes = ''
111+
112+
# Prerelease string of this module
113+
# Prerelease = ''
114+
115+
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
116+
# RequireLicenseAcceptance = $false
117+
118+
# External dependent modules of this module
119+
# ExternalModuleDependencies = @()
120+
100121
} # End of PSData hashtable
101122

102123
} # End of PrivateData hashtable
@@ -106,6 +127,6 @@
106127

107128
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
108129
# DefaultCommandPrefix = ''
109-
}
110130

131+
}
111132

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# VMware vSphere As Built Report Changelog
22

3+
## [1.0.3] - 2019-05-14
4+
### Changed
5+
- Improvements to code and report readability
6+
- Fixed vCenter Server licensing reporting
7+
- Fixed Datastore reporting when an empty datastore cluster exists
8+
- Fixed DRS Cluster Group reporting when group does not contain any members
9+
- Fixed DRS Cluster Group sorting
10+
- Fixed VMHost reporting to exclude HCX Cloud Gateway host
11+
312
## [1.0.0] - 2019-03-27
413
### Added
514
- Update Manager Server name added to vCenter Server detailed information

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ New-AsBuiltReport -Target 'vcenter-01.corp.local' -Username 'administrator@vsphe
209209
- Generate HTML & Text reports with Health Checks
210210
Generate a vSphere As Built Report for vCenter Server 'vcenter-01.corp.local' using stored credentials. Export report to HTML & Text formats. Use default report style. Highlight environment issues within the report. Save reports to 'C:\Users\Tim\Documents'
211211
```powershell
212-
New-AsBuiltReport -Target 'vcenter-01.corp.local' -Credentials $Creds -Report VMware.vSphere -Format Html,Text -OutputPath 'C:\Users\Tim\Documents' -EnableHealthCheck
212+
New-AsBuiltReport -Target 'vcenter-01.corp.local' -Credential $Creds -Report VMware.vSphere -Format Html,Text -OutputPath 'C:\Users\Tim\Documents' -EnableHealthCheck
213213
```
214214
- Generate report with multiple vCenter Servers using Custom Style
215215
Generate a single vSphere As Built Report for vCenter Servers 'vcenter-01.corp.local' and 'vcenter-02.corp.local' using specified credentials. Report exports to WORD format by default. Apply custom style to the report. Reports are saved to the user profile folder by default.

0 commit comments

Comments
 (0)