Skip to content

Commit 22b0070

Browse files
Merge pull request #711 from PowershellFrameworkCollective/runspaces
1.13.426
2 parents 501da2e + 471a898 commit 22b0070

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

PSFramework/PSFramework.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'PSFramework.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.13.425'
7+
ModuleVersion = '1.13.426'
88

99
# ID used to uniquely identify this module
1010
GUID = '8028b914-132b-431f-baa9-94a6952f21ff'

PSFramework/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.13.426 (2026-01-13)
4+
5+
- Fix: Write-PSFHostColor - Ignores the `-NoNewLine` parameter
6+
37
## 1.13.425 (2026-01-07)
48

59
- New: Configuration `PSFramework.Message.Style.OldColor` - reverts update to message printing, disabling use of ANSI codes for colors

PSFramework/functions/message/Write-PSFHostColor.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
foreach ($entry in $match) {
129129
$row = $row -replace $entry.Groups[0].Value, "$($escape)$($colorMap[$entry.Groups[1].Value])m$($entry.Groups[2].Value)$($escape)$($defaultCode)m"
130130
}
131-
Microsoft.PowerShell.Utility\Write-Host -Object $row -ForegroundColor $DefaultColor
131+
Microsoft.PowerShell.Utility\Write-Host -Object $row -ForegroundColor $DefaultColor -NoNewline:$NoNewLine
132132
continue
133133
}
134134

0 commit comments

Comments
 (0)