Skip to content

Commit

Permalink
Merge pull request AsBuiltReport#191 from rebelinux/dev
Browse files Browse the repository at this point in the history
v0.8.12
  • Loading branch information
rebelinux authored Nov 23, 2024
2 parents 6e692c9 + 8866215 commit a736640
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,13 @@ jobs:
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
bsky-post:
needs: publish-to-gallery
runs-on: ubuntu-latest
steps:
- uses: zentered/bluesky-post-action@v0.1.0
with:
post: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #Veeam #AsBuiltReport #PowerShell #VeeamVanguard #VeeamLegend"
env:
BSKY_IDENTIFIER: ${{ secrets.BSKY_IDENTIFIER }}
BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }}
4 changes: 2 additions & 2 deletions AsBuiltReport.Veeam.VBR.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@
}
@{
ModuleName = 'Diagrammer.Core';
ModuleVersion = '0.2.11'
ModuleVersion = '0.2.13'
}
@{
ModuleName = 'Veeam.Diagrammer';
ModuleVersion = '0.6.12'
ModuleVersion = '0.6.16'
}
)

Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [0.8.12] - Unreleased
## [0.8.12] - 2024-11-22

### Changed

- Improve detection of empty fields in tables
- Improve detection of true/false elements in tables
- Improve support for Veeam B&R v11
- Update GitHub release workflow to add post to Bluesky social platform
- Increase Diagrammer.Core minimum requirement to v0.2.13
- Increase Veeam.Diagrammer minimum requirement to v0.6.16

### Fixed

- Fix [#187](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/187)
- Fix Cloud Connect tenant expiration date healthcheck
- Fix VbrVersion variable not getting populated

## [0.8.11] - 2024-10-30

Expand Down
2 changes: 1 addition & 1 deletion Src/Private/Get-AbrVbrFileToTape.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function Get-AbrVbrFileToTape {
'Include Filter' = '--'
'Exclude Filter' = '--'
}
$OutObj += [pscustomobject](ConvertTo-HashToYN $inObj)
$OutObj += [pscustomobject](ConvertTo-HashToYN $inObj2)
} catch {
Write-PScriboMessage -IsWarning "Files and Folders $($NDMP.Name) Section: $($_.Exception.Message)"
}
Expand Down
3 changes: 3 additions & 0 deletions Src/Public/Invoke-AsBuiltReport.Veeam.VBR.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ function Invoke-AsBuiltReport.Veeam.VBR {
# Used to set values to TitleCase where required
$script:TextInfo = (Get-Culture).TextInfo

# Identify installed Veeam module version
$script:VbrVersion = (Get-Module -ListAvailable -Name Veeam.Backup.PowerShell).Version.ToString()

#region foreach loop
foreach ($System in $Target) {
if (Select-String -InputObject $System -Pattern "^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$") {
Expand Down

0 comments on commit a736640

Please sign in to comment.