Skip to content

Commit baddde3

Browse files
committed
Bump version to 1.5.0, update CHANGELOG.md
1 parent 3ed4406 commit baddde3

File tree

6 files changed

+49
-5
lines changed

6 files changed

+49
-5
lines changed

CHANGELOG.md

+44
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
# PowerShell Editor Services Release History
22

3+
## 1.5.0
4+
### Friday, October 27, 2017
5+
6+
#### Fixes and Improvements
7+
8+
- [PowerShell/vscode-powershell #910](https://github.com/PowerShell/vscode-powershell/issues/910) -
9+
Set-VSCodeHtmlContentView cmdlet now exposes `JavaScriptPaths` and `StyleSheetPaths` parameters to allow using JavaScript code and CSS stylesheets in VS Code HTML preview views.
10+
11+
- [PowerShell/vscode-powershell #909](https://github.com/PowerShell/vscode-powershell/issues/909) -
12+
Write-VSCodeHtmlContentView's AppendBodyContent now accepts input from the pipeline
13+
14+
- [PowerShell/vscode-powershell #842](https://github.com/PowerShell/vscode-powershell/issues/842) -
15+
psedit can now open empty files in remote sessions
16+
17+
- [PowerShell/vscode-powershell #1040](https://github.com/PowerShell/vscode-powershell/issues/1040) -
18+
Non-PowerShell files opened in remote sessions using psedit can now be saved back to the remote server
19+
20+
- [PowerShell/vscode-powershell #625](https://github.com/PowerShell/vscode-powershell/issues/625) -
21+
Breakpoints are now cleared from the session when the debugger starts so that stale breakpoints from previous sessions are not hit
22+
23+
- [PowerShell/vscode-powershell #1004](https://github.com/PowerShell/vscode-powershell/issues/1004) -
24+
Handle exception case when finding references of a symbol
25+
26+
- [PowerShell/vscode-powershell #942](https://github.com/PowerShell/vscode-powershell/issues/942) -
27+
Temporary debugging session now does not hang when running "PowerShell Interactive Session" debugging configuration in VS Code
28+
29+
- [PowerShell/vscode-powershell #872](https://github.com/PowerShell/vscode-powershell/issues/872) -
30+
Watch variables with children are now expandable
31+
32+
- [PowerShell/PowerShellEditorServices #342](https://github.com/PowerShell/PowerShellEditorServices/issues/342) -
33+
Unexpected file URI schemes are now handled more reliably
34+
35+
- [PowerShell/PowerShellEditorServices #396](https://github.com/PowerShell/PowerShellEditorServices/issues/396) -
36+
Resolved errors being written to Integrated Console when running native applications while transcription is turned on
37+
38+
- [PowerShell/PowerShellEditorServices #529](https://github.com/PowerShell/PowerShellEditorServices/issues/529) -
39+
Fixed an issue with loading the PowerShellEditorServices module in PowerShell Core 6.0.0-beta3
40+
41+
- [PowerShell/PowerShellEditorServices #533](https://github.com/PowerShell/PowerShellEditorServices/pull/533) -
42+
Added new $psEditor.GetCommand() method for getting all registered editor commands. Thanks to [Kamil Kosek](https://github.com/kamilkosek)!
43+
44+
- [PowerShell/PowerShellEditorServices #535](https://github.com/PowerShell/PowerShellEditorServices/pull/535) -
45+
Type information is now exposed on hover for variables in the Variables view
46+
347
## 1.4.1
448
### Thursday, June 22, 2017
549

PowerShellEditorServices.Common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.4.1</VersionPrefix>
3+
<VersionPrefix>1.5.0</VersionPrefix>
44
<Company>Microsoft</Company>
55
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
66
<PackageTags>PowerShell;editor;development;language;debugging</PackageTags>

appveyor.yml

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

module/PowerShellEditorServices.VSCode/PowerShellEditorServices.VSCode.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'PowerShellEditorServices.VSCode.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.1.0'
15+
ModuleVersion = '0.2.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

module/PowerShellEditorServices/Commands/PowerShellEditorServices.Commands.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'PowerShellEditorServices.Commands.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.1.1'
15+
ModuleVersion = '0.2.0'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '6064d846-0fa0-4b6d-afc1-11e5bed3c4a9'

module/PowerShellEditorServices/PowerShellEditorServices.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'PowerShellEditorServices.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.4.1'
15+
ModuleVersion = '1.5.0'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'

0 commit comments

Comments
 (0)