Skip to content

Commit a913fec

Browse files
committed
More updates
1 parent 24533c8 commit a913fec

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

PoshRSJob/PoshRSJob.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
#
33
# PoshRSJob
4-
# Version 1.7.3.2
4+
# Version 1.7.3.3
55
#
66
# Boe Prox (c) 2014
77
# http://learn-powershell.net
@@ -14,7 +14,7 @@
1414
ModuleToProcess = 'PoshRSJob.psm1'
1515

1616
# Version number of this module.
17-
ModuleVersion = '1.7.3.2'
17+
ModuleVersion = '1.7.3.3'
1818

1919
# ID used to uniquely identify this module
2020
GUID = '9b17fb0f-e939-4a5c-b194-3f2247452972'

PoshRSJob/Private/WriteStream.ps1

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
If (($IndividualJob.$Stream.Count -gt 0) -AND (-NOT ($Null -eq $IndividualJob.$Stream)))
1515
{
1616
Switch ($Stream) {
17-
"Verbose" { $IndividualJob | Select -ExpandProperty Verbose | ForEach { $host.ui.WriteVerboseLine($_)} }
18-
"Debug" { $IndividualJob | Select -ExpandProperty Debug | ForEach { $host.ui.WriteDebugLine($_)} }
19-
"Warning" { $IndividualJob | Select -ExpandProperty Warning | ForEach { $host.ui.WriteWarningLine($_) } }
17+
"Verbose" { $IndividualJob | Select -ExpandProperty Verbose| Where { $_.Message } | ForEach { $host.ui.WriteVerboseLine($_)} }
18+
"Debug" { $IndividualJob | Select -ExpandProperty Debug| Where { $_.Message } | ForEach { $host.ui.WriteDebugLine($_)} }
19+
"Warning" { $IndividualJob | Select -ExpandProperty Warning| Where { $_.Message } | ForEach { $host.ui.WriteWarningLine($_) } }
2020
"Error" { $IndividualJob.Error.Exception | Select -ExpandProperty Message | ForEach {$host.ui.WriteErrorLine($_)} }
2121
"Output" { $IndividualJob | Select -ExpandProperty Output }
2222
}

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PoshRSJob 1.7.3.2
1+
PoshRSJob 1.7.3.3
22
===================
33

44
[![Build status](https://ci.appveyor.com/api/projects/status/svrd4ho4otugki24?svg=true)](https://ci.appveyor.com/project/proxb/poshrsjob) [![Join the chat at https://gitter.im/proxb/PoshRSJob](https://badges.gitter.im/proxb/PoshRSJob.svg)](https://gitter.im/proxb/PoshRSJob?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
@@ -12,8 +12,8 @@ Provides an alternative to PSjobs with greater performance and less overhead to
1212
Install-Module -Name PoshRSJob
1313
```
1414

15-
####Download the latest release (1.7.3.2)
16-
https://github.com/proxb/PoshRSJob/releases/download/1.7.3.2/PoshRSJob.zip
15+
####Download the latest release (1.7.3.3)
16+
https://github.com/proxb/PoshRSJob/releases/download/1.7.3.3/PoshRSJob.zip
1717

1818

1919
More information and examples here: http://learn-powershell.net/2015/04/19/latest-updates-to-poshrsjob/

ReleaseNotes.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---------
2-
|1.7.3.2|
2+
|1.7.3.3|
33
---------
44
* Fixed Issue #116 (v1.7.3.0 is extremely slow)
55
* Fixed Issue #75 (Feature Request: Add RunspaceID handling to Start-RSJob for better throttling support)
6+
* Fixed Issue #107 (Write-Stream throws lots of spurious errors on missing variables)
67
* Added some better support for streams with Receive-RSJob
78

89
---------

0 commit comments

Comments
 (0)