From e3881dd9953d58ab4805cc27c42832cc37816edc Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Tue, 17 Mar 2026 13:23:01 -0400 Subject: [PATCH 1/2] Fix typo in function name for special character removal in Get-AbrOntapVserverDiagram --- AsBuiltReport.NetApp.ONTAP/AsBuiltReport.NetApp.ONTAP.psd1 | 2 +- .../Src/Private/Get-AbrOntapVserverDiagram.ps1 | 2 +- CHANGELOG.md | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) 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..73b09f5 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.12] - 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 From 8b72be56c20f32ec9a62e457d2aa7956b8527b98 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Tue, 17 Mar 2026 13:45:16 -0400 Subject: [PATCH 2/2] Bump version to 0.6.13 and fix typo Updated version number and fixed a typo in the changelog. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73b09f5..9b9442f 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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.12] - 2026-03-17 +## [0.6.13] - 2026-03-17 ### Fixed