Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AsBuiltReport.VMware.Horizon.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ShowTableCaptions": true
},
"Options": {
"EnableDiagrams": true,
"EnableDiagrams": false,
"EnableDiagramDebug": false,
"DiagramColumnSize": 3,
"DiagramTheme": "White",
Expand Down
2 changes: 1 addition & 1 deletion AsBuiltReport.VMware.Horizon.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'AsBuiltReport.VMware.Horizon.psm1'

# Version number of this module.
ModuleVersion = '1.2'
ModuleVersion = '1.1.6'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
19 changes: 10 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2] - 2025-09-13
## [1.1.6] - 2025-09-13

### Added

- Add Diagrammer.Core module requirements
- Add the required files structure to support the building of diagrams
- Include Diagrammer.Core module as a requirement.
- Introduce the necessary file structure to enable diagram generation.

### Changed

- Bump AsBuiltReport.Core module to v1.4.3
- Bump actions/checkout to v5 in Codeql.yml and PSScriptAnalyzer.yml
- Change Release.yml to use windows-latest
- Enhance Invoke-ASBuiltReport function with version checks for dependencies
- Update CHANGELOG.md with recent changes
- This mark the last edition that support VMware Horizon (Next version Omnissa only)
- Update AsBuiltReport.Core module requirement to v1.4.3.
- Upgrade actions/checkout to v5 in Codeql.yml and PSScriptAnalyzer.yml.
- Upgrade actions/bluesky-post-action to v0.3.0
- Modifie Release.yml to use windows-latest.
- Enhance Invoke-ASBuiltReport function with improved dependency version checks.
- Update CHANGELOG.md to reflect recent changes.
- This is the final release supporting VMware Horizon; future versions will support Omnissa only.

## [1.1.5.1] - 2025-03-13

Expand Down
2 changes: 1 addition & 1 deletion Src/Private/Get-RequiredModule.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
# Convert installed version to a [Version] object
$InstalledVersion = [Version]$InstalledModule.Version

Write-Host " - $($InstalledModule.Name) $InstalledVersion is currently installed."
Write-Host "- $($InstalledModule.Name) $InstalledVersion is currently installed."

if ($InstalledVersion -lt $RequiredVersion) {
throw "VMware PowerCLI $Version or higher is required. Run 'Update-Module -Name $Name -MinimumVersion $Version -Force' to update the required modules."
Expand Down