Skip to content

Commit 87087b6

Browse files
authored
Merge pull request #658 from tylerl0706/prep-for-1.7.0-release
prep for 1.7.0 release 🎉
2 parents 2cb9c6c + 6df41b3 commit 87087b6

File tree

4 files changed

+49
-5
lines changed

4 files changed

+49
-5
lines changed

CHANGELOG.md

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,56 @@
11
# PowerShell Editor Services Release History
22

3+
## 1.7.0
4+
### Wednesday, April 25, 2018
5+
6+
#### Fixes and Improvements
7+
8+
- [PowerShell/PowerShellEditorServices #629](https://github.com/PowerShell/PowerShellEditorServices/pull/629) -
9+
Allow Tcp/NamedPipe/Stdio listeners to enable other editors to use PowerShell Editor Services. Thanks to [yatli](https://github.com/yatli) 🎉
10+
11+
- [PowerShell/PowerShellEditorServices #632](https://github.com/PowerShell/PowerShellEditorServices/pull/632) -
12+
Add events for PowerShell execution status (running, completed, etc).
13+
14+
- [PowerShell/PowerShellEditorServices #638](https://github.com/PowerShell/PowerShellEditorServices/pull/638) -
15+
Refactor pester script detection.
16+
17+
- [PowerShell/PowerShellEditorServices #639](https://github.com/PowerShell/PowerShellEditorServices/pull/639) -
18+
Add Start-EditorServices script from vscode-powershell repo.
19+
20+
- [PowerShell/PowerShellEditorServices #641](https://github.com/PowerShell/PowerShellEditorServices/pull/641) -
21+
Fix GetVersionDetails error on non-Windows platforms.
22+
23+
- [PowerShell/PowerShellEditorServices #642](https://github.com/PowerShell/PowerShellEditorServices/pull/642) -
24+
Add support for running xUnit tests in VS Test Explorer.
25+
26+
- [PowerShell/PowerShellEditorServices #643](https://github.com/PowerShell/PowerShellEditorServices/pull/643/files) -
27+
Fix issue using pre-release version of NET Core SDK.
28+
29+
- [PowerShell/PowerShellEditorServices #645](https://github.com/PowerShell/PowerShellEditorServices/pull/645) -
30+
Implemented a better way to test for in-memory file.
31+
32+
- [PowerShell/PowerShellEditorServices #647](https://github.com/PowerShell/PowerShellEditorServices/pull/647) -
33+
Change PSES to be buildable as a standalone.
34+
35+
- [PowerShell/PowerShellEditorServices #649](https://github.com/PowerShell/PowerShellEditorServices/pull/649) -
36+
Get rid of the unneeded exception variable causing a compile warning.
37+
38+
- [PowerShell/PowerShellEditorServices #650](https://github.com/PowerShell/PowerShellEditorServices/pull/650) -
39+
Add $psEditor.GetEditorContext().CurrentFile.SaveAs("Name") support.
40+
41+
- [PowerShell/PowerShellEditorServices #652](https://github.com/PowerShell/PowerShellEditorServices/pull/652) -
42+
Make the 'PSESRemoteSessionOpenFile' a support event.
43+
44+
- [PowerShell/PowerShellEditorServices #654](https://github.com/PowerShell/PowerShellEditorServices/pull/654) -
45+
Add customize output color enhancement. Thanks to [KeroroLulu](https://github.com/KeroroLulu) 🎉
46+
347
## 1.6.0
448
### Thursday, February 22, 2018
549

650
#### Fixes and Improvements
751

852
- [PowerShell/vscode-powershell #863](https://github.com/PowerShell/vscode-powershell/issues/863) -
9-
Eliminate duplicate dgb prompt.
53+
Eliminate duplicate [DBG] prompt.
1054

1155
- [PowerShell/PowerShellEditorServices #626](https://github.com/PowerShell/PowerShellEditorServices/pull/626) -
1256
Switch to w3c log file timestamp format.
@@ -58,7 +102,7 @@ Fix remote editing in PSCore by fixing *-Content calls in psedit scripts and set
58102
Add .Save() to FileContext API.
59103

60104
- [PowerShell/PowerShellEditorServices #588](https://github.com/PowerShell/PowerShellEditorServices/pull/588) -
61-
Fix bad pssa settings path crashes PSES.
105+
Fix bad PSScriptAnalyzer settings path crashes PSES.
62106

63107
- [PowerShell/PowerShellEditorServices #582](https://github.com/PowerShell/PowerShellEditorServices/issues/582) -
64108
Fix Very Large String crashes PS Editor Services.

PowerShellEditorServices.Common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.6.0</VersionPrefix>
3+
<VersionPrefix>1.7.0</VersionPrefix>
44
<Company>Microsoft</Company>
55
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
66
<PackageTags>PowerShell;editor;development;language;debugging</PackageTags>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.6.0.{build}'
1+
version: '1.7.0.{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

module/PowerShellEditorServices/PowerShellEditorServices.psd1

Lines changed: 1 addition & 1 deletion
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.6.0'
15+
ModuleVersion = '1.7.0'
1616

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

0 commit comments

Comments
 (0)