Skip to content

Commit

Permalink
Merge pull request #1099 from PowerShell/rkeithhill/prep-release
Browse files Browse the repository at this point in the history
Prep for 1.5.1 release
  • Loading branch information
TylerLeonhardt authored Nov 14, 2017
2 parents 6068537 + df6bbca commit 8929d69
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# vscode-powershell Release History

## 1.5.1
### Tuesday, November 14, 2017

- [PowerShell/vscode-powershell #1100](https://github.com/PowerShell/vscode-powershell/issues/1100) -
Fixed CodeLens on Pester test invocation fails with "Error: command 'vscode.startDebug' not found".

- [PowerShell/vscode-powershell #1091](https://github.com/PowerShell/vscode-powershell/issues/1091) -
Fixed crash when editing remote file using psedit.

- [PowerShell/vscode-powershell #1084](https://github.com/PowerShell/vscode-powershell/issues/1084) -
Fixed authenticode signature 'HashMismatch' on Start-EditorServices.ps1.

- [PowerShell/vscode-powershell #1078](https://github.com/PowerShell/vscode-powershell/issues/1078) -
Fixed debug adapter process terminating when setting breakpoint in an Untitled file or in a Git diff window.

- Update download.sh to remove macOS OpenSSL check since PowerShell Core Beta and higher no longer depend on OpenSSL. Thanks to [elovelan](https://github.com/elovelan)!

- Get-Help -ShowWindow will no longer error in the PowerShell Integrated Console. The help window will appear but at the moment, it will appear behind VSCode.

- Fix language server crash when processing a deep directory structure that exceeds max path.

## 1.5.0
### Friday, October 27, 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: '1.5.0-insiders-{build}'
version: '1.5.1-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": "1.5.0",
"version": "1.5.1",
"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 @@ -34,7 +34,7 @@ import { HelpCompletionFeature } from "./features/HelpCompletion";

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

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

0 comments on commit 8929d69

Please sign in to comment.