From cfcbb1ec2f5e9b4eb4e06dfe18bb5d4af4d6c500 Mon Sep 17 00:00:00 2001 From: Keith Hill Date: Mon, 13 Nov 2017 23:00:18 -0700 Subject: [PATCH 1/2] Fix bad date --- CHANGELOG.md | 18 ++++++++++++++++++ appveyor.yml | 2 +- package.json | 2 +- src/main.ts | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e804ed4dcb..5cb576ce33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # vscode-powershell Release History +## 1.5.1 +### Tuesday, November 14, 2017 + +- [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 diff --git a/appveyor.yml b/appveyor.yml index bfe36a3f81..ea860c2d9f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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 diff --git a/package.json b/package.json index 52d47321a7..c53589f788 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/main.ts b/src/main.ts index 13a85335dc..8bfa1ed098 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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; From df6bbcad01abcf4ae1941593a8bb0b99a08865a4 Mon Sep 17 00:00:00 2001 From: Keith Hill Date: Tue, 14 Nov 2017 11:29:20 -0700 Subject: [PATCH 2/2] Add info on fix for #1100. --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cb576ce33..f874168d0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ ## 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.