Skip to content

Commit bb65b2a

Browse files
authored
[Ignore] Update CHANGELOG for 1.10.0 (#804)
1 parent 99f01ef commit bb65b2a

File tree

4 files changed

+49
-3
lines changed

4 files changed

+49
-3
lines changed

CHANGELOG.md

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

3+
## v1.10.0
4+
### Monday, December 3, 2018
5+
6+
- [PowerShellEditorServices #786](https://github.com/PowerShell/PowerShellEditorServices/pull/786) -
7+
Fix #17: Add go to definition support for dot sourced file paths (Thanks @dee-see!)
8+
- [PowerShellEditorServices #767](https://github.com/PowerShell/PowerShellEditorServices/pull/767) -
9+
Change unhandled messages to warnings instead of errors
10+
- [PowerShellEditorServices #765](https://github.com/PowerShell/PowerShellEditorServices/pull/765) -
11+
Fix PowerShell wildcard escaping in debug paths
12+
- [PowerShellEditorServices #778](https://github.com/PowerShell/PowerShellEditorServices/pull/778) -
13+
Fix multiple occurrences of the same typo (Thanks @dee-see!)
14+
- [PowerShellEditorServices #782](https://github.com/PowerShell/PowerShellEditorServices/pull/782) -
15+
Fix #779: NRE on Dispose in ExecutionTimer (Thanks @dee-see!)
16+
- [PowerShellEditorServices #772](https://github.com/PowerShell/PowerShellEditorServices/pull/772) -
17+
Add build information to releases to document it in logs
18+
- [PowerShellEditorServices #774](https://github.com/PowerShell/PowerShellEditorServices/pull/774) -
19+
New-EditorFile works on non-powershell untitled files
20+
- [PowerShellEditorServices #787](https://github.com/PowerShell/PowerShellEditorServices/pull/787) -
21+
Fix descion/decision typo in visitors (Thanks @dee-see!)
22+
- [PowerShellEditorServices #784](https://github.com/PowerShell/PowerShellEditorServices/pull/784) -
23+
Replace bad StringReader usage with String.Split()
24+
- [PowerShellEditorServices #768](https://github.com/PowerShell/PowerShellEditorServices/pull/768) -
25+
Make pipeline runtime exceptions warnings in log
26+
- [PowerShellEditorServices #790](https://github.com/PowerShell/PowerShellEditorServices/pull/790) -
27+
Add managed thread id to log output to add debugging threading issues (Thanks @rkeithhill!)
28+
- [PowerShellEditorServices #794](https://github.com/PowerShell/PowerShellEditorServices/pull/794) -
29+
Fix Pester CodeLens run/debug by not quoting params/already quoted args (Thanks @rkeithhill!)
30+
- [PowerShellEditorServices #785](https://github.com/PowerShell/PowerShellEditorServices/pull/785) -
31+
Adds ability to use separate pipes for reading and writing (Thanks @ant-druha!)
32+
- [PowerShellEditorServices #796](https://github.com/PowerShell/PowerShellEditorServices/pull/796) -
33+
Code cleanup of the start script and ESHost.cs file (Thanks @rkeithhill!)
34+
- [PowerShellEditorServices #795](https://github.com/PowerShell/PowerShellEditorServices/pull/795) -
35+
Fix file recursion overflow problems when enumerating directories in workspaces
36+
- [PowerShellEditorServices #697](https://github.com/PowerShell/PowerShellEditorServices/pull/697) -
37+
Add functionality to allow a Show-Command-like panel in VS Code (Thanks @corbob!)
38+
- [PowerShellEditorServices #777](https://github.com/PowerShell/PowerShellEditorServices/pull/777) -
39+
Move syntax folding processing to language server (Thanks @glennsarti!)
40+
- [PowerShellEditorServices #801](https://github.com/PowerShell/PowerShellEditorServices/pull/801) -
41+
Fix remoting to local PowerShell instances (e.g. WSL)
42+
- [PowerShellEditorServices #797](https://github.com/PowerShell/PowerShellEditorServices/pull/797) -
43+
Start of a PSES log file analyzer (Thanks @rkeithhill!)
44+
- [PowerShellEditorServices #789](https://github.com/PowerShell/PowerShellEditorServices/pull/789) -
45+
Add support for a "Show Documentation" quick fix menu entry (Thanks @rkeithhill!)
46+
- [PowerShellEditorServices #760](https://github.com/PowerShell/PowerShellEditorServices/pull/760) -
47+
Fix exception when remoting from Windows to non-Windows (Thanks @SeeminglyScience!)
48+
349
## v1.9.0
450
### Thursday, September 27, 2018
551

PowerShellEditorServices.Common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.9.1</VersionPrefix>
3+
<VersionPrefix>1.10.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.9.1{build}'
1+
version: '1.10.0{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

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.9.1'
15+
ModuleVersion = '1.10.0'
1616

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

0 commit comments

Comments
 (0)