From 20a4c8d4d3313b40a1c6525afcb2e7a5dc21079c Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Thu, 4 Mar 2021 11:27:23 +0100 Subject: [PATCH] Fixes ConvertTo-IcingaSecureString exceptions --- doc/31-Changelog.md | 12 ++++++++++++ icinga-powershell-framework.psd1 | 6 ++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/doc/31-Changelog.md b/doc/31-Changelog.md index 875d71a..9a363c7 100644 --- a/doc/31-Changelog.md +++ b/doc/31-Changelog.md @@ -7,6 +7,18 @@ documentation before upgrading to a new release. Released closed milestones can be found on [GitHub](https://github.com/Icinga/icinga-powershell-framework/milestones?state=closed). +## 1.5.0 (pending) + +### Enhancements + +### Bugfixes + +## 1.4.1 (pending) + +### Bugfixes + +* [#222](https://github.com/Icinga/icinga-powershell-framework/pull/222) Fixes an issue with [Secure.String] arguments for PowerShell plugins, caused by `ConvertTo-IcingaSecureString` Cmdlet not being pre-loaded + ## 1.4.0 (2021-03-02) [Issue and PRs](https://github.com/Icinga/icinga-powershell-framework/milestone/11?closed=1) diff --git a/icinga-powershell-framework.psd1 b/icinga-powershell-framework.psd1 index d23230e..ee7edeb 100644 --- a/icinga-powershell-framework.psd1 +++ b/icinga-powershell-framework.psd1 @@ -29,7 +29,8 @@ '.\lib\core\logging\Write-IcingaConsolePlain.psm1', '.\lib\core\tools\Test-IcingaFunction.psm1', '.\lib\core\tools\Write-IcingaConsoleHeader.psm1', - '.\lib\core\framework\Test-IcingaFrameworkConsoleOutput.psm1' + '.\lib\core\framework\Test-IcingaFrameworkConsoleOutput.psm1', + '.\lib\core\tools\ConvertTo-IcingaSecureString.psm1' ) FunctionsToExport = @( 'Use-Icinga', @@ -67,7 +68,8 @@ 'Write-IcingaConsolePlain', 'Test-IcingaFunction', 'Write-IcingaConsoleHeader', - 'Test-IcingaFrameworkConsoleOutput' + 'Test-IcingaFrameworkConsoleOutput', + 'ConvertTo-IcingaSecureString' ) CmdletsToExport = @('*') VariablesToExport = '*'