Skip to content

Commit faa2e9b

Browse files
committed
Bump version to 1.5.0, update CHANGELOG.md
1 parent 5204162 commit faa2e9b

File tree

4 files changed

+65
-3
lines changed

4 files changed

+65
-3
lines changed

Diff for: CHANGELOG.md

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

3+
## 1.5.0
4+
### Friday, October 27, 2017
5+
6+
#### Fixes and Improvements
7+
8+
- [PowerShell/vscode-powershell #820](https://github.com/PowerShell/vscode-powershell/issues/820) -
9+
Added new "Upload Bug Report to GitHub" command to make it easy to post an issue to the vscode-powershell GitHub repo. Thanks to [Mark Schill](https://github.com/PowerSchill)!
10+
11+
- [PowerShell/vscode-powershell #910](https://github.com/PowerShell/vscode-powershell/issues/910) -
12+
Set-VSCodeHtmlContentView cmdlet now exposes `JavaScriptPaths` and `StyleSheetPaths` parameters to allow using JavaScript code and CSS stylesheets in VS Code HTML preview views.
13+
14+
- [PowerShell/vscode-powershell #909](https://github.com/PowerShell/vscode-powershell/issues/909) -
15+
Write-VSCodeHtmlContentView's AppendBodyContent now accepts input from the pipeline
16+
17+
- [PowerShell/vscode-powershell #1071](https://github.com/PowerShell/vscode-powershell/pull/1071) -
18+
Updated session menu to find PowerShell Core installs with the new pwsh.exe path
19+
20+
- [PowerShell/vscode-powershell #842](https://github.com/PowerShell/vscode-powershell/issues/842) -
21+
psedit can now open empty files in remote sessions
22+
23+
- [PowerShell/vscode-powershell #1040](https://github.com/PowerShell/vscode-powershell/issues/1040) -
24+
Non-PowerShell files opened in remote sessions using psedit can now be saved back to the remote server
25+
26+
- [PowerShell/vscode-powershell #660](https://github.com/PowerShell/vscode-powershell/issues/660) -
27+
Set/Enable/Disable/Remove-PSBreakpoint commands now cause the VS Code breakpoint UI to be updated while the debugger is active
28+
29+
- [PowerShell/vscode-powershell #625](https://github.com/PowerShell/vscode-powershell/issues/625) -
30+
Breakpoints are now cleared from the session when the debugger starts so that stale breakpoints from previous sessions are not hit
31+
32+
- [PowerShell/vscode-powershell #1004](https://github.com/PowerShell/vscode-powershell/issues/1004) -
33+
Handle exception case when finding references of a symbol
34+
35+
- [PowerShell/vscode-powershell #942](https://github.com/PowerShell/vscode-powershell/issues/942) -
36+
Temporary debugging session now does not hang when running "PowerShell Interactive Session" debugging configuration
37+
38+
- [PowerShell/vscode-powershell #917](https://github.com/PowerShell/vscode-powershell/issues/917) -
39+
Added PowerShell.InvokeRegisteredEditorCommand command to be used from HTML preview views for invoking editor commands registered in PowerShell. Thanks to [Kamil Kosek](https://github.com/kamilkosek)!
40+
41+
- [PowerShell/vscode-powershell #872](https://github.com/PowerShell/vscode-powershell/issues/872) -
42+
Watch variables with children are now expandable
43+
44+
- [PowerShell/vscode-powershell #1060](https://github.com/PowerShell/vscode-powershell/issues/1060) -
45+
$psEditor.Workspace.NewFile() now works again in VSC 1.18.0 Insiders builds
46+
47+
- [PowerShell/vscode-powershell #1046](https://github.com/PowerShell/vscode-powershell/issues/1046) -
48+
Debugging now works again in VSC 1.18.0 Insiders builds
49+
50+
- [PowerShell/PowerShellEditorServices #342](https://github.com/PowerShell/PowerShellEditorServices/issues/342) -
51+
Unexpected file URI schemes are now handled more reliably
52+
53+
- [PowerShell/PowerShellEditorServices #396](https://github.com/PowerShell/PowerShellEditorServices/issues/396) -
54+
Resolved errors being written to Integrated Console when running native applications while transcription is turned on
55+
56+
- [PowerShell/PowerShellEditorServices #529](https://github.com/PowerShell/PowerShellEditorServices/issues/529) -
57+
Fixed an issue with loading the PowerShellEditorServices module in PowerShell Core 6.0.0-beta3
58+
59+
- [PowerShell/PowerShellEditorServices #533](https://github.com/PowerShell/PowerShellEditorServices/pull/533) -
60+
Added new $psEditor.GetCommand() method for getting all registered editor commands. Thanks to [Kamil Kosek](https://github.com/kamilkosek)!
61+
62+
- [PowerShell/PowerShellEditorServices #535](https://github.com/PowerShell/PowerShellEditorServices/pull/535) -
63+
Type information is now exposed on hover for variables in the Variables view
64+
365
## 1.4.3
466
### Wednesday, September 13, 2017
567

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.4.3-insiders-{build}'
1+
version: '1.5.0-insiders-{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

Diff for: 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.4.3",
4+
"version": "1.5.0",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

Diff for: 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.4.1";
37+
var requiredEditorServicesVersion = "1.5.0";
3838

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

0 commit comments

Comments
 (0)