Skip to content

Commit 20a4c8d

Browse files
committed
Fixes ConvertTo-IcingaSecureString exceptions
1 parent a504aa3 commit 20a4c8d

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

doc/31-Changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ documentation before upgrading to a new release.
77

88
Released closed milestones can be found on [GitHub](https://github.com/Icinga/icinga-powershell-framework/milestones?state=closed).
99

10+
## 1.5.0 (pending)
11+
12+
### Enhancements
13+
14+
### Bugfixes
15+
16+
## 1.4.1 (pending)
17+
18+
### Bugfixes
19+
20+
* [#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
21+
1022
## 1.4.0 (2021-03-02)
1123

1224
[Issue and PRs](https://github.com/Icinga/icinga-powershell-framework/milestone/11?closed=1)

icinga-powershell-framework.psd1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
'.\lib\core\logging\Write-IcingaConsolePlain.psm1',
3030
'.\lib\core\tools\Test-IcingaFunction.psm1',
3131
'.\lib\core\tools\Write-IcingaConsoleHeader.psm1',
32-
'.\lib\core\framework\Test-IcingaFrameworkConsoleOutput.psm1'
32+
'.\lib\core\framework\Test-IcingaFrameworkConsoleOutput.psm1',
33+
'.\lib\core\tools\ConvertTo-IcingaSecureString.psm1'
3334
)
3435
FunctionsToExport = @(
3536
'Use-Icinga',
@@ -67,7 +68,8 @@
6768
'Write-IcingaConsolePlain',
6869
'Test-IcingaFunction',
6970
'Write-IcingaConsoleHeader',
70-
'Test-IcingaFrameworkConsoleOutput'
71+
'Test-IcingaFrameworkConsoleOutput',
72+
'ConvertTo-IcingaSecureString'
7173
)
7274
CmdletsToExport = @('*')
7375
VariablesToExport = '*'

0 commit comments

Comments
 (0)