Fixes ConvertTo-IcingaSecureString exceptions

This commit is contained in:
Lord Hepipud 2021-03-04 11:27:23 +01:00
parent a504aa3704
commit 20a4c8d4d3
2 changed files with 16 additions and 2 deletions

View file

@ -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)

View file

@ -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 = '*'