mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
Fixes ConvertTo-IcingaSecureString exceptions
This commit is contained in:
parent
a504aa3704
commit
20a4c8d4d3
2 changed files with 16 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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 = '*'
|
||||
|
|
|
|||
Loading…
Reference in a new issue