Skip to content

Release 0.12.2 #664

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# vscode-powershell Release History

## 0.12.2
### Friday, April 7, 2017

- Fixed [#645](https://github.com/PowerShell/vscode-powershell/issues/645) -
Changed usage of `$env:PSMODULEPATH` to `$env:PSModulePath` to conform to
a recent change in PowerShell 6 ([PowerShell/PowerShell#3255](https://github.com/PowerShell/PowerShell/pull/3255))
which makes the casing of `PSModulePath` consistent between Windows and
the *NIX platforms.

**NOTE: This is a breaking change for PowerShell extension users on Linux and macOS**

If you are using PowerShell 6.0.0-alpha.17 or lower you **will** need to upgrade
to 6.0.0-alpha.18.

- Fixed [#645](https://github.com/PowerShell/vscode-powershell/issues/645) -
"Go to Definition" or "Find References" now work in untitled scripts without
crashing the session
- Fixed [#632](https://github.com/PowerShell/vscode-powershell/issues/632) -
Debugger no longer hangs when launched while PowerShell session is still
initializing
- Fixed [#655](https://github.com/PowerShell/vscode-powershell/issues/655) -
Fixed an issue with current working directory being set incorrectly when
debugging untitled script files
- Fixed [PowerShellEditorServices #430](https://github.com/PowerShell/PowerShellEditorServices/issues/430) -
Resolved occasional IntelliSense slowness by preventing the implicit loading
of the PowerShellGet and PackageManagement modules. This change will be reverted
once a bug in PackageManagement is fixed.
- Fixed [PowerShellEditorServices #427](https://github.com/PowerShell/PowerShellEditorServices/issues/427) -
Fixed an occasional crash when requesting editor IntelliSense while running
a script in the debugger
- Fixed [PowerShellEditorServices #416](https://github.com/PowerShell/PowerShellEditorServices/issues/416) -
Cleaned up errors that would appear in the `$Errors` variable from the use
of `Get-Command` and `Get-Help` in IntelliSense results

## 0.12.1
### Tuesday, April 4, 2017

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '0.12.1-insiders-{build}'
version: '0.12.2-insiders-{build}'
image: Visual Studio 2017
clone_depth: 10
skip_tags: true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PowerShell",
"displayName": "PowerShell",
"version": "0.12.1",
"version": "0.12.2",
"publisher": "ms-vscode",
"description": "Develop PowerShell scripts in Visual Studio Code!",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { DocumentFormatterFeature } from './features/DocumentFormatter';

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

var logger: Logger = undefined;
var sessionManager: SessionManager = undefined;
Expand Down