File tree Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 1
1
# vscode-powershell Release History
2
2
3
+ ## 0.12.2
4
+ ### Friday, April 7, 2017
5
+
6
+ - Fixed [ #645 ] ( https://github.com/PowerShell/vscode-powershell/issues/645 ) -
7
+ "Go to Definition" or "Find References" now work in untitled scripts without
8
+ crashing the session
9
+ - Fixed [ #632 ] ( https://github.com/PowerShell/vscode-powershell/issues/632 ) -
10
+ Debugger no longer hangs when launched while PowerShell session is still
11
+ initializing
12
+ - Fixed [ #655 ] ( https://github.com/PowerShell/vscode-powershell/issues/655 ) -
13
+ Fixed an issue with current working directory being set incorrectly when
14
+ debugging untitled script files
15
+ - Fixed [ PowerShellEditorServices #430 ] ( https://github.com/PowerShell/PowerShellEditorServices/issues/430 ) -
16
+ Resolved occasional IntelliSense slowness by preventing the implicit loading
17
+ of the PowerShellGet and PackageManagement modules. This change will be reverted
18
+ once a bug in PackageManagement is fixed.
19
+ - Fixed [ PowerShellEditorServices #427 ] ( https://github.com/PowerShell/PowerShellEditorServices/issues/427 ) -
20
+ Fixed an occasional crash when requesting editor IntelliSense while running
21
+ a script in the debugger
22
+ - Fixed [ PowerShellEditorServices #416 ] ( https://github.com/PowerShell/PowerShellEditorServices/issues/416 ) -
23
+ Cleaned up errors that would appear in the ` $Errors ` variable from the use
24
+ of ` Get-Command ` and ` Get-Help ` in IntelliSense results
25
+
3
26
## 0.12.1
4
27
### Tuesday, April 4, 2017
5
28
Original file line number Diff line number Diff line change 1
- version : ' 0.12.1 -insiders-{build}'
1
+ version : ' 0.12.2 -insiders-{build}'
2
2
image : Visual Studio 2017
3
3
clone_depth : 10
4
4
skip_tags : true
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " PowerShell" ,
3
3
"displayName" : " PowerShell" ,
4
- "version" : " 0.12.1 " ,
4
+ "version" : " 0.12.2 " ,
5
5
"publisher" : " ms-vscode" ,
6
6
"description" : " Develop PowerShell scripts in Visual Studio Code!" ,
7
7
"engines" : {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import { DocumentFormatterFeature } from './features/DocumentFormatter';
29
29
30
30
// NOTE: We will need to find a better way to deal with the required
31
31
// PS Editor Services version...
32
- var requiredEditorServicesVersion = "0.12.0 " ;
32
+ var requiredEditorServicesVersion = "0.12.1 " ;
33
33
34
34
var logger : Logger = undefined ;
35
35
var sessionManager : SessionManager = undefined ;
You can’t perform that action at this time.
0 commit comments