Skip to content

Commit 7575683

Browse files
authored
Merge pull request #664 from daviwil/release/0.12.2
Release 0.12.2
2 parents d62a098 + cebf4af commit 7575683

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# vscode-powershell Release History
22

3+
## 0.12.2
4+
### Friday, April 7, 2017
5+
6+
- Fixed [#645](https://github.com/PowerShell/vscode-powershell/issues/645) -
7+
Changed usage of `$env:PSMODULEPATH` to `$env:PSModulePath` to conform to
8+
a recent change in PowerShell 6 ([PowerShell/PowerShell#3255](https://github.com/PowerShell/PowerShell/pull/3255))
9+
which makes the casing of `PSModulePath` consistent between Windows and
10+
the *NIX platforms.
11+
12+
**NOTE: This is a breaking change for PowerShell extension users on Linux and macOS**
13+
14+
If you are using PowerShell 6.0.0-alpha.17 or lower you **will** need to upgrade
15+
to 6.0.0-alpha.18.
16+
17+
- Fixed [#645](https://github.com/PowerShell/vscode-powershell/issues/645) -
18+
"Go to Definition" or "Find References" now work in untitled scripts without
19+
crashing the session
20+
- Fixed [#632](https://github.com/PowerShell/vscode-powershell/issues/632) -
21+
Debugger no longer hangs when launched while PowerShell session is still
22+
initializing
23+
- Fixed [#655](https://github.com/PowerShell/vscode-powershell/issues/655) -
24+
Fixed an issue with current working directory being set incorrectly when
25+
debugging untitled script files
26+
- Fixed [PowerShellEditorServices #430](https://github.com/PowerShell/PowerShellEditorServices/issues/430) -
27+
Resolved occasional IntelliSense slowness by preventing the implicit loading
28+
of the PowerShellGet and PackageManagement modules. This change will be reverted
29+
once a bug in PackageManagement is fixed.
30+
- Fixed [PowerShellEditorServices #427](https://github.com/PowerShell/PowerShellEditorServices/issues/427) -
31+
Fixed an occasional crash when requesting editor IntelliSense while running
32+
a script in the debugger
33+
- Fixed [PowerShellEditorServices #416](https://github.com/PowerShell/PowerShellEditorServices/issues/416) -
34+
Cleaned up errors that would appear in the `$Errors` variable from the use
35+
of `Get-Command` and `Get-Help` in IntelliSense results
36+
337
## 0.12.1
438
### Tuesday, April 4, 2017
539

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '0.12.1-insiders-{build}'
1+
version: '0.12.2-insiders-{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "PowerShell",
33
"displayName": "PowerShell",
4-
"version": "0.12.1",
4+
"version": "0.12.2",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { DocumentFormatterFeature } from './features/DocumentFormatter';
2929

3030
// NOTE: We will need to find a better way to deal with the required
3131
// PS Editor Services version...
32-
var requiredEditorServicesVersion = "0.12.0";
32+
var requiredEditorServicesVersion = "0.12.1";
3333

3434
var logger: Logger = undefined;
3535
var sessionManager: SessionManager = undefined;

0 commit comments

Comments
 (0)