Skip to content

Commit cfcbb1e

Browse files
committed
Fix bad date
1 parent f198d98 commit cfcbb1e

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

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

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

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)