Skip to content

Commit 8929d69

Browse files
Merge pull request #1099 from PowerShell/rkeithhill/prep-release
Prep for 1.5.1 release
2 parents 6068537 + df6bbca commit 8929d69

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

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

3+
## 1.5.1
4+
### Tuesday, November 14, 2017
5+
6+
- [PowerShell/vscode-powershell #1100](https://github.com/PowerShell/vscode-powershell/issues/1100) -
7+
Fixed CodeLens on Pester test invocation fails with "Error: command 'vscode.startDebug' not found".
8+
9+
- [PowerShell/vscode-powershell #1091](https://github.com/PowerShell/vscode-powershell/issues/1091) -
10+
Fixed crash when editing remote file using psedit.
11+
12+
- [PowerShell/vscode-powershell #1084](https://github.com/PowerShell/vscode-powershell/issues/1084) -
13+
Fixed authenticode signature 'HashMismatch' on Start-EditorServices.ps1.
14+
15+
- [PowerShell/vscode-powershell #1078](https://github.com/PowerShell/vscode-powershell/issues/1078) -
16+
Fixed debug adapter process terminating when setting breakpoint in an Untitled file or in a Git diff window.
17+
18+
- 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)!
19+
20+
- 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.
21+
22+
- Fix language server crash when processing a deep directory structure that exceeds max path.
23+
324
## 1.5.0
425
### Friday, October 27, 2017
526

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.5.0-insiders-{build}'
1+
version: '1.5.1-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": "1.5.0",
4+
"version": "1.5.1",
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
@@ -34,7 +34,7 @@ import { HelpCompletionFeature } from "./features/HelpCompletion";
3434

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

3939
var logger: Logger = undefined;
4040
var sessionManager: SessionManager = undefined;

0 commit comments

Comments
 (0)