|
1 | 1 | # vscode-powershell Release History
|
2 | 2 |
|
| 3 | +## 1.3.0 |
| 4 | +### Friday, June 9, 2017 |
| 5 | + |
| 6 | +#### CodeLens for running and debugging Pester tests |
| 7 | + |
| 8 | +We've added two new CodeLens actions that show up above Describe blocks in |
| 9 | +your Pester tests, "Run tests" and "Debug tests". By clicking one of these |
| 10 | +CodeLenses, your tests will be executed in the Integrated Console with |
| 11 | +the debugger attached. You can now set breakpoints and quickly debug a portion |
| 12 | +of your test script: |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | +#### CodeLens support for finding references of a function or cmdlet |
| 17 | + |
| 18 | +We've also added CodeLenses for showing the number of references for a function or |
| 19 | +cmdlet that is defined in a script. If you click this CodeLens, the references |
| 20 | +pane will appear so that you can navigate through all of the references: |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | +We will add CodeLens support for PowerShell 5+ classes and class methods in a future |
| 25 | +update! |
| 26 | + |
| 27 | +#### Document symbol support for Pester tests |
| 28 | + |
| 29 | +We've also added document symbol support for Pester tests so that you can easily |
| 30 | +navigate among the Describe, Context, and It blocks in large Pester script files: |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | +#### New PowerShell ISE theme |
| 35 | + |
| 36 | +We now include a new color theme that tries to provide a faithful interpretation |
| 37 | +of the PowerShell ISE's style, including a blue console background! To use this |
| 38 | +theme open the Command Palette (Ctrl+Shift+P), run the "Preferences: Color Theme" |
| 39 | +command, then select "PowerShell ISE". |
| 40 | + |
| 41 | + |
| 42 | + |
| 43 | +This is a first attempt at making this happen so [give us feedback](https://git.io/v9jnL) |
| 44 | +if you think that the colors can be improved! Super huge thanks to |
| 45 | +[Matt McNabb](https://twitter.com/mcnabbmh) for putting this together! |
| 46 | + |
| 47 | +#### New cmdlets inside the Integrated Console |
| 48 | + |
| 49 | +Thanks to new PowerShell Editor Services co-maintainer [Patrick Meinecke](https://github.com/SeeminglyScience), |
| 50 | +we've gained a new set of useful commands for interacting with the $psEditor APIs |
| 51 | +within the Integrated Console: |
| 52 | + |
| 53 | +- [Find-Ast](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/docs/Find-Ast.md) |
| 54 | +- [Get-Token](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/docs/Get-Token.md) |
| 55 | +- [ConvertFrom-ScriptExtent](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/docs/ConvertFrom-ScriptExtent.md) |
| 56 | +- [ConvertTo-ScriptExtent](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/docs/ConvertTo-ScriptExtent.md) |
| 57 | +- [Set-ScriptExtent](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/docs/Set-ScriptExtent.md) |
| 58 | +- [Join-ScriptExtent](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/docs/Join-ScriptExtent.md) |
| 59 | +- [Test-ScriptExtent](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/docs/Test-ScriptExtent.md) |
| 60 | +- [Import-EditorCommand](https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/docs/Import-EditorCommand.md) |
| 61 | + |
| 62 | +This should also resolve the issues some people were seeing when we tried |
| 63 | +to load the unsigned temporary script containing `Register-EditorCommand` |
| 64 | +on machines with an AllSigned execution policy ([#784]([https://github.com/PowerShell/vscode-powershell/issues/784])). |
| 65 | + |
| 66 | +#### Fixes and improvements |
| 67 | + |
| 68 | +- [#827](https://github.com/PowerShell/vscode-powershell/issues/827) - |
| 69 | + Fixed an issue where an Output panel will appear with an error when you close |
| 70 | + the PowerShell Integrated Terminal |
| 71 | + |
3 | 72 | ## 1.2.1
|
4 | 73 | ### Thursday, June 1, 2017
|
5 | 74 |
|
|
0 commit comments