Skip to content

Commit 46e72d0

Browse files
authored
Merge pull request #38 from rebelinux/dev
v1.1.6
2 parents e62a73d + 8001277 commit 46e72d0

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

AsBuiltReport.VMware.Horizon.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"ShowTableCaptions": true
1010
},
1111
"Options": {
12-
"EnableDiagrams": true,
12+
"EnableDiagrams": false,
1313
"EnableDiagramDebug": false,
1414
"DiagramColumnSize": 3,
1515
"DiagramTheme": "White",

AsBuiltReport.VMware.Horizon.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'AsBuiltReport.VMware.Horizon.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.2'
15+
ModuleVersion = '1.1.6'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

CHANGELOG.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +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.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.2] - 2025-09-13
8+
## [1.1.6] - 2025-09-13
99

1010
### Added
1111

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

1515
### Changed
1616

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

2425
## [1.1.5.1] - 2025-03-13
2526

Src/Private/Get-RequiredModule.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function Get-RequiredModule {
4545
# Convert installed version to a [Version] object
4646
$InstalledVersion = [Version]$InstalledModule.Version
4747

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

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

0 commit comments

Comments
 (0)