Skip to content

Commit

Permalink
Merge pull request #183 from rebelinux/dev
Browse files Browse the repository at this point in the history
v0.8.11
  • Loading branch information
rebelinux authored Oct 31, 2024
2 parents a9230c1 + ab12368 commit 1b39300
Show file tree
Hide file tree
Showing 30 changed files with 506 additions and 417 deletions.
6 changes: 3 additions & 3 deletions AsBuiltReport.Veeam.VBR.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'AsBuiltReport.Veeam.VBR.psm1'

# Version number of this module.
ModuleVersion = '0.8.10'
ModuleVersion = '0.8.11'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -63,11 +63,11 @@
}
@{
ModuleName = 'Diagrammer.Core';
ModuleVersion = '0.2.8'
ModuleVersion = '0.2.11'
}
@{
ModuleName = 'Veeam.Diagrammer';
ModuleVersion = '0.6.8'
ModuleVersion = '0.6.12'
}
)

Expand Down
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- Add diagram theming option (Black/White/Neon)
- Add code to properly display space information

### Changed

- Increase Diagrammer.Core minimum requirement to v0.2.8
- Increase Veeam.Diagrammer minimum requirement to v0.6.8
- Increase Diagrammer.Core minimum requirement to v0.2.11
- Increase Veeam.Diagrammer minimum requirement to v0.6.12
- Improve connection validation throuth WinRM
- Deny connection to backup server by Ip Address

### Fixed

- Fix SOBR capacity extent members table
- Fix Unstructured Data section displaying section when no data is available
- Fix [#179](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/179)
- Fix [#181](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/181)
- Fix [#182](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/182)

## [0.8.10] - 2024-09-12

Expand Down
8 changes: 4 additions & 4 deletions Src/Private/Get-AbrVbrBackupCopyjobConf.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function Get-AbrVbrBackupCopyjobConf {
.DESCRIPTION
Documents the configuration of Veeam VBR in Word/HTML/Text formats using PScribo.
.NOTES
Version: 0.8.7
Version: 0.8.11
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand Down Expand Up @@ -98,7 +98,7 @@ function Get-AbrVbrBackupCopyjobConf {
$inObj = [ordered] @{
'Name' = $LinkedBkJob.Name
'Type' = $LinkedBkJob.TypeToString
'Size' = ConvertTo-FileSizeString $LinkedBkJob.Info.IncludedSize
'Size' = ConvertTo-FileSizeString -Size $LinkedBkJob.Info.IncludedSize
'Repository' = $LinkedBkJob.GetTargetRepository().Name
}
$OutObj += [pscustomobject]$inobj
Expand Down Expand Up @@ -132,13 +132,13 @@ function Get-AbrVbrBackupCopyjobConf {
$inObj = [ordered] @{
'Name' = $LinkedRepository.Name
'Type' = "ScaleOut"
'Size' = "$($LinkedRepository.GetContainer().CachedTotalSpace.InGigabytes) GB"
'Size' = ConvertTo-FileSizeString -Size $LinkedRepository.GetContainer().CachedTotalSpace.InBytesAsUInt64
}
} else {
$inObj = [ordered] @{
'Name' = $LinkedRepository.Name
'Type' = "Standard"
'Size' = "$($LinkedRepository.GetContainer().CachedTotalSpace.InGigabytes) Gb"
'Size' = ConvertTo-FileSizeString -Size $LinkedRepository.GetContainer().CachedTotalSpace.InBytesAsUInt64
}
}
$OutObj += [pscustomobject]$inobj
Expand Down
4 changes: 2 additions & 2 deletions Src/Private/Get-AbrVbrBackupJobsRP.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Get-AbrVbrBackupJobsRP {
.DESCRIPTION
Documents the configuration of Veeam VBR in Word/HTML/Text formats using PScribo.
.NOTES
Version: 0.8.7
Version: 0.8.11
Author: Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand All @@ -19,7 +19,7 @@ function Get-AbrVbrBackupJobsRP {
)

begin {
Write-PScriboMessage "RestorePoint InfoLevel set at $($InfoLevel.Restore.RestorePoint)."
Write-PScriboMessage "RestorePoint InfoLevel set at $($InfoLevel.Jobs.Restores)."
}

process {
Expand Down
Loading

0 comments on commit 1b39300

Please sign in to comment.