Skip to content

Commit 8fdb131

Browse files
committed
Bump version to 0.11.0, update CHANGELOG.md
1 parent 6547209 commit 8fdb131

File tree

4 files changed

+72
-3
lines changed

4 files changed

+72
-3
lines changed

Diff for: CHANGELOG.md

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

3+
## 0.11.0
4+
### Wednesday, March 22, 2017
5+
6+
#### Remotely edited files can now be saved
7+
8+
- Added [#583](https://github.com/PowerShell/vscode-powershell/issues/583) -
9+
When you open files in a remote PowerShell session with the `psedit` command,
10+
their updated contents are now saved back to the remote machine when you save
11+
them in the editor.
12+
13+
#### Integrated console improvements
14+
15+
- Fixed [#533](https://github.com/PowerShell/vscode-powershell/issues/533) -
16+
The backspace key now works in the integrated console on Linux and macOS. This
17+
fix also resolves a few usability problems with the integrated console on all
18+
supported OSes.
19+
20+
- Fixed [542](https://github.com/PowerShell/vscode-powershell/issues/542) -
21+
Get-Credential now hides keystrokes correctly on Linux and macOS.
22+
23+
We also added some new settings ([#580](https://github.com/PowerShell/vscode-powershell/issues/580),
24+
[#588](https://github.com/PowerShell/vscode-powershell/issues/588)) to allow fine-tuning
25+
of the integrated console experience:
26+
27+
- `powershell.startAutomatically` (default: `true`) - If true, causes PowerShell extension
28+
features to start automatically when a PowerShell file is opened. If false, the user must
29+
initiate startup using the 'PowerShell: Restart Current Session' command. IntelliSense,
30+
code navigation, integrated console, code formatting, and other features will not be
31+
enabled until the extension has been started. Most users will want to leave this
32+
setting to `true`, though it was added to save CPU cycles if you often use new VS Code
33+
instances to quickly view PowerShell files.
34+
35+
- `powershell.integratedConsole.showOnStartup` (default: `true`) - If true, causes the
36+
integrated console to be shown automatically when the PowerShell extension is initialized.
37+
38+
- `powershell.integratedConsole.focusConsoleOnExecute` (default: `true`) - If `true`,
39+
causes the integrated console to be focused when a script selection is run or a
40+
script file is debugged.
41+
42+
#### Interactive debugging improvements
43+
44+
- Added [#540](https://github.com/PowerShell/vscode-powershell/issues/540) -
45+
The scripts that you debug are now dot-sourced into the integrated console's
46+
session, allowing you to experiment with the results of your last execution.
47+
48+
- Added [#600](https://github.com/PowerShell/vscode-powershell/issues/600) -
49+
Debugger commands like `stepInto`, `continue`, and `quit` are now available
50+
in the integrated console while debugging a script.
51+
52+
- Fixed [#596](https://github.com/PowerShell/vscode-powershell/issues/596) -
53+
VS Code's Debug Console now warns the user when it is used while debugging
54+
a script. All command evaluation now happens through the integrated console
55+
so this message should help alleviate confusion.
56+
57+
#### Other fixes and improvements
58+
59+
- Fixed [#579](https://github.com/PowerShell/vscode-powershell/issues/579) -
60+
Sorting of IntelliSense results is now consistent with the PowerShell ISE
61+
- Fixed [#591](https://github.com/PowerShell/vscode-powershell/issues/591) -
62+
"Editor commands" registered with the `Register-EditorCommand` function are
63+
now sorted alphabetically by their `Name` field, causing commands to be grouped
64+
based on their source module.
65+
- Fixed [#575](https://github.com/PowerShell/vscode-powershell/issues/575) -
66+
The interactive console no longer starts up with errors in the `$Error` variable.
67+
- Fixed [#599](https://github.com/PowerShell/vscode-powershell/issues/599) -
68+
The [SSASCMDLETS module](https://msdn.microsoft.com/en-us/library/hh213141.aspx?f=255&MSPPError=-2147217396)
69+
from SQL Server Analytics Service should now load correctly in the integrated
70+
console.
71+
372
## 0.10.1
473
### Thursday, March 16, 2017
574

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '0.10.1-insiders-{build}'
1+
version: '0.11.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": "0.10.1",
4+
"version": "0.11.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
@@ -28,7 +28,7 @@ import { DocumentFormatterFeature } from './features/DocumentFormatter';
2828

2929
// NOTE: We will need to find a better way to deal with the required
3030
// PS Editor Services version...
31-
var requiredEditorServicesVersion = "0.10.1";
31+
var requiredEditorServicesVersion = "0.11.0";
3232

3333
var logger: Logger = undefined;
3434
var sessionManager: SessionManager = undefined;

0 commit comments

Comments
 (0)