Skip to content

Commit e3e770f

Browse files
authored
Merge pull request #1287 from rjmholt/changelog-1.7.0
Update changelog and files for 1.7.0 release
2 parents ec341ed + 0151024 commit e3e770f

File tree

3 files changed

+59
-2
lines changed

3 files changed

+59
-2
lines changed

CHANGELOG.md

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

3+
## 1.7.0
4+
### Wednesday, April 25, 2018
5+
6+
- [PowerShell/vscode-powershell #1285](https://github.com/PowerShell/vscode-powershell/pull/1285) -
7+
Add a community snippet for date-annotated `Write-Verbose` messages.
8+
9+
- [PowerShell/vscode-powershell #1228](https://github.com/PowerShell/vscode-powershell/issues/1228) -
10+
Make comment-based help trigger always be `##` with a new setting `powershell.helpCompletion` to
11+
allow you to select between help comment styles: `BlockComment` (default) or `LineComment`.
12+
You can also specify Disabled to disable this functionality.
13+
14+
- [PowerShell/vscode-powershell #603](https://github.com/PowerShell/vscode-powershell/issues/603) -
15+
Fix PowerShell crashing on machines with IPv6 disabled.
16+
17+
- [PowerShell/vscode-powershell #1243](https://github.com/PowerShell/vscode-powershell/issues/1243) -
18+
Support custom PowerShell executable paths in user configuration which can be selected (via name)
19+
in either user or workspace configuration.
20+
21+
- [PowerShell/vscode-powershell #1264](https://github.com/PowerShell/vscode-powershell/pull/1264) -
22+
Add support for [Visual Studio Live Share](https://code.visualstudio.com/visual-studio-live-share).
23+
24+
- [PowerShell/vscode-powershell #1261](https://github.com/PowerShell/vscode-powershell/pull/1261) -
25+
Add support for `$psEditor.GetEditorContext.CurrentFile.SaveAs("NewFileName.ps1")`.
26+
27+
- [PowerShell/vscode-powershell #1252](https://github.com/PowerShell/vscode-powershell/pull/1252) -
28+
Change the way the extension builds and runs, so that PowerShellEditorServices is self-contained.
29+
30+
- [PowerShell/vscode-powershell #1248](https://github.com/PowerShell/vscode-powershell/pull/1248) -
31+
Replace `$global:IsOSX` with `$global:IsMacOS`.
32+
33+
- [PowerShell/vscode-powershell #1246](https://github.com/PowerShell/vscode-powershell/pull/1246) -
34+
Create [community_snippets.md](./docs/community_snippets.md) for user created snippets.
35+
36+
- [PowerShell/vscode-powershell #1155](https://github.com/PowerShell/vscode-powershell/issues/1155) -
37+
Fix PSES crashes caused by running "Set PSScriptAnalyzer Rules" on an untitled file.
38+
39+
- [PowerShell/vscode-powershell #1236](https://github.com/PowerShell/vscode-powershell/pull/1236) -
40+
Stop an error occurring when VSCode trims trailing whitespace and sends document update messages.
41+
42+
- [PowerShell/vscode-powershell #996](https://github.com/PowerShell/vscode-powershell/issues/996) -
43+
Fix `Install-PSCode.ps1` crashing due to `$IsLinux` variable in older PowerShell versions.
44+
45+
- [PowerShell/vscode-powershell #1234](https://github.com/PowerShell/vscode-powershell/pull/1234) -
46+
Add snippets for Hashtable and PSCustomObject.
47+
48+
- [PowerShell/vscode-powershell #1233](https://github.com/PowerShell/vscode-powershell/pull/1233) -
49+
Add a keybinding for Show Addtional Commands to <kbd>Shift</kbd>-<kbd>Alt</kbd>-<kbd>S</kbd>.
50+
51+
- [PowerShell/vscode-powershell #1227](https://github.com/PowerShell/vscode-powershell/pull/1227) -
52+
Add an indicator for when PowerShell is running in the status bar.
53+
54+
- [PowerShell/vscode-powershell #1225](https://github.com/PowerShell/vscode-powershell/pull/1225) -
55+
Fix launch config not using temporary integrated console setting.
56+
57+
- [PowerShell/vscode-powershell #1208](https://github.com/PowerShell/vscode-powershell/issues/1208) -
58+
Stop configured temporary windows closing after running Pester tests.
59+
360
## 1.6.0
461
### Thursday, February 22, 2018
562

appveyor.yml

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

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import utils = require("./utils");
3535

3636
// NOTE: We will need to find a better way to deal with the required
3737
// PS Editor Services version...
38-
const requiredEditorServicesVersion = "1.6.0";
38+
const requiredEditorServicesVersion = "1.7.0";
3939

4040
let logger: Logger;
4141
let sessionManager: SessionManager;

0 commit comments

Comments
 (0)