Skip to content

Commit 4a00b8f

Browse files
authored
0.3.9
1 parent 292daec commit 4a00b8f

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

AsBuiltReport.Veeam.VB365.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'AsBuiltReport.Veeam.VB365.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.3.8'
15+
ModuleVersion = '0.3.9'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -55,15 +55,15 @@
5555
RequiredModules = @(
5656
@{
5757
ModuleName = 'AsBuiltReport.Core';
58-
ModuleVersion = '1.4.0'
58+
ModuleVersion = '1.4.1'
5959
},
6060
@{
6161
ModuleName = 'PScriboCharts';
6262
ModuleVersion = '0.9.0'
6363
},
6464
@{
6565
ModuleName = 'Diagrammer.Core';
66-
ModuleVersion = '0.2.12'
66+
ModuleVersion = '0.2.13'
6767
}
6868
)
6969

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
##### This project is community maintained and has no sponsorship from Veeam, its employees or any of its affiliates.
99

10+
## [0.3.9] - Unreleased
11+
12+
### Changed
13+
14+
- Change the infrastructure diagram default save location to $OutputFolderPath
15+
- Increase Diagrammer.Core to v0.2.13
16+
- Increase AsBuiltReport.Core to v1.4.1
17+
1018
## [0.3.8] - 2024-11-12
1119

1220
### Added
@@ -24,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2432
## [0.3.7] - 2024-10-12
2533

2634
### Changed
27-
35+
Increase Diagrammer.Core to v0.2.12
2836
- Improve infrastructure diagram
2937
- Increase Diagrammer.Core to v0.2.9
3038
- Update Sample Diagram

Src/Public/Invoke-AsBuiltReport.Veeam.VB365.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function Invoke-AsBuiltReport.Veeam.VB365 {
130130

131131
$DiagramParams = @{
132132
'FileName' = "AsBuiltReport.Veeam.VB365"
133-
'OutputFolderPath' = (Get-Location).Path
133+
'OutputFolderPath' = $OutputFolderPath
134134
'Direction' = 'top-to-bottom'
135135
'MainDiagramLabel' = 'Backup for Microsoft 365'
136136
'IconPath' = $IconPath
@@ -184,7 +184,7 @@ function Invoke-AsBuiltReport.Veeam.VB365 {
184184
$Diagram = New-Diagrammer @DiagramParams -InputObject $Graph
185185
if ($Diagram) {
186186
foreach ($OutputFormat in $DiagramFormat) {
187-
Write-Information "Saved 'AsBuiltReport.Veeam.VB365.$($OutputFormat)' diagram to '$((Get-Location).Path)\'." -InformationAction Continue
187+
Write-Information "Saved 'AsBuiltReport.Veeam.VB365.$($OutputFormat)' diagram to '$($OutputFolderPath)'." -InformationAction Continue
188188
}
189189
}
190190
}

0 commit comments

Comments
 (0)