|
1 | 1 | # vscode-powershell Release History
|
2 | 2 |
|
| 3 | +## 0.5.0 |
| 4 | +### Thursday, March 10, 2016 |
| 5 | + |
| 6 | +#### Support for PowerShell v3 and v4 |
| 7 | + |
| 8 | +- Support for PowerShell v3 and v4 is now complete! Note that for this release, |
| 9 | + Script Analyzer support has been disabled for PS v3 and v4 until we implement |
| 10 | + a better strategy for integrating it as a module dependency |
| 11 | + |
| 12 | +#### Debugging improvements |
| 13 | + |
| 14 | +- Added support for command breakpoints. |
| 15 | + |
| 16 | + Hover over the Debug workspace's 'Breakpoints' list header and click the 'Add' |
| 17 | + button then type a command name (like `Write-Output`) in the new text box that |
| 18 | + appears in the list. |
| 19 | + |
| 20 | +- Added support for conditional breakpoints. |
| 21 | + |
| 22 | + Right click in the breakpoint margin to the left of the code editor and click |
| 23 | + 'Add conditional breakpoint' then enter a PowerShell expression in the text box |
| 24 | + that appears in the editor. |
| 25 | + |
| 26 | +#### Other improvements |
| 27 | + |
| 28 | +- Added a preview of a possible project template for PowerShell Gallery modules in |
| 29 | + the `examples` folder. Includes a PSake build script with Pester test, clean, |
| 30 | + build, and publish tasks. See the `examples\README.md` file for instructions. |
| 31 | + Check it out and give your feedback on GitHub! |
| 32 | +- `using 'module'` now resolves relative paths correctly, removing a syntax error that |
| 33 | + previously appeared when relative paths were used |
| 34 | +- Calling `Read-Host -AsSecureString` or `Get-Credential` from the console now shows an |
| 35 | + appropriate "not supported" error message instead of crashing the language service. |
| 36 | + Support for these commands will be added in a later release. |
| 37 | + |
| 38 | +#### New configuration settings |
| 39 | + |
| 40 | +- `powershell.useX86Host`: If true, causes the 32-bit language service to be used on 64-bit Windows. On 32-bit Windows this setting has no effect. |
| 41 | + |
3 | 42 | ## 0.4.1
|
4 | 43 | ### Wednesday, February 17, 2016
|
5 | 44 |
|
|
0 commit comments