diff --git a/AsBuiltReport.NetApp.ONTAP/AsBuiltReport.NetApp.ONTAP.psd1 b/AsBuiltReport.NetApp.ONTAP/AsBuiltReport.NetApp.ONTAP.psd1 index aeca4d0..b367d34 100755 --- a/AsBuiltReport.NetApp.ONTAP/AsBuiltReport.NetApp.ONTAP.psd1 +++ b/AsBuiltReport.NetApp.ONTAP/AsBuiltReport.NetApp.ONTAP.psd1 @@ -12,7 +12,7 @@ RootModule = 'AsBuiltReport.NetApp.ONTAP.psm1' # Version number of this module. - ModuleVersion = '0.6.12' + ModuleVersion = '0.6.13' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/AsBuiltReport.NetApp.ONTAP/Src/Private/Get-AbrOntapVserverDiagram.ps1 b/AsBuiltReport.NetApp.ONTAP/Src/Private/Get-AbrOntapVserverDiagram.ps1 index c45d2cb..0891c05 100644 --- a/AsBuiltReport.NetApp.ONTAP/Src/Private/Get-AbrOntapVserverDiagram.ps1 +++ b/AsBuiltReport.NetApp.ONTAP/Src/Private/Get-AbrOntapVserverDiagram.ps1 @@ -59,7 +59,7 @@ function Get-AbrOntapVserverDiagram { $VserverAggrs = (Get-NcVol -VserverContext $Vserver -Controller $Array).Aggregate | ForEach-Object { Get-NcAggr -Name $_ } | Select-Object -Unique $VserverLifs = Get-NcNetInterface -Controller $Array | Where-Object { $_.Vserver -eq $Vserver -and $_.Role -eq 'data' } - $VserverNodeName = Remove-SpecialChar -String $Vserver -SpecialChars '\-_' + $VserverNodeName = Remove-SpecialCharacter -String $Vserver -SpecialChars '\-_' # SVM Additional Info $SVMAdditionalInfo = [PSCustomObject][ordered]@{ diff --git a/CHANGELOG.md b/CHANGELOG.md index cd1d749..9b9442f 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.13] - 2026-03-17 + +### Fixed + +- Fix typo in function name for special character removal in Get-AbrOntapVserverDiagram +- Fix issue preventing report to finish + ## [0.6.12] - 2026-03-16 ### Added