Skip to content

Commit 893619c

Browse files
Merge pull request #3557 from PowerShell/release
Release `v2021.9.0`
2 parents e98bd74 + 600de4b commit 893619c

File tree

2 files changed

+23
-19
lines changed

2 files changed

+23
-19
lines changed

CHANGELOG.md

+18-14
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,34 @@
11
# PowerShell Extension Release History
22

3-
## v2021.9.0-preview
4-
### Tuesday, September 07, 2021
3+
## v2021.9.0
4+
### Thursday, September 09, 2021
55

6-
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
7-
8-
- ✨ 📖 [vscode-powershell #3544](https://github.com/PowerShell/vscode-powershell/pull/3544) - Document the trace server setting is valid (despite Code's warning). (Thanks @michal037!)
9-
- #️⃣ 🔍 [vscode-powershell #3522](https://github.com/PowerShell/vscode-powershell/pull/3542) - Allow PowerShell session to start and stop the debugger interface.
10-
11-
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
6+
This release includes changes from both `v2021.8.3-preview` and `v2021.9.0-preview`.
127

13-
- 🐛 📟 [PowerShellEditorServices #24977523](https://github.com/PowerShell/PowerShellEditorServices/pull/1571) - Implement `LengthInBufferCells` to fix ANSI formatting. (Thanks @SeeminglyScience!)
14-
- ✨ 🔍 [vscode-powershell #3522](https://github.com/PowerShell/PowerShellEditorServices/pull/1570) - Send `stopDebugger` notification when appropriate.
15-
- 🐛 🔍 [vscode-powershell #3537](https://github.com/PowerShell/PowerShellEditorServices/pull/1569) - Fix bug with `ExecuteScriptWithArgsAsync` when `script` is a command.
8+
A new `stopDebugger` notification was added that allows PowerShell Editor Services,
9+
the LSP module, to stop an attached UI debugger (such as VS Code's)
10+
for debugger sessions started by executing code with a `PSBreakpoint` attached.
11+
This may not work in all cases but should improve usability.
1612

17-
## v2021.8.3-preview
18-
### Monday, August 30, 2021
13+
The PowerShell status bar indicator no longer uses custom coloring but instead pulls from the user's theme.
14+
A formatting bug was fixed by community maintainer Patrick Meinecke.
15+
A regression in the debug launch configuration's `script` parameter was fixed and covered with a test.
16+
And finally, the bundled [PSScriptAnalyzer](https://github.com/PowerShell/PSScriptAnalyzer/releases/tag/1.20.0)
17+
was updated to `v1.20.0`.
1918

2019
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
2120

21+
- ✨ 📖 [vscode-powershell #3544](https://github.com/PowerShell/vscode-powershell/pull/3544) - Document the trace server setting is valid (despite Code's warning). (Thanks @michal037!)
22+
- #️⃣ 🔍 [vscode-powershell #3522](https://github.com/PowerShell/vscode-powershell/pull/3542) - Allow PowerShell session to start and stop the debugger interface.
2223
- ✨ 📺 [vscode-powershell #2436](https://github.com/PowerShell/vscode-powershell/pull/3531) - Use status bar colors from theme instead of hardcoded values.
2324
- ✨ 🚨 [vscode-powershell #3529](https://github.com/PowerShell/vscode-powershell/pull/3530) - Extend CI test matrix and update readme(s).
2425

2526
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
2627

27-
- ✨ ‍🕵️ [PowerShellEditorServices #1562](https://github.com/PowerShell/PowerShellEditorServices/pull/1562) - Pin PSScriptAnalyzer to `1.20.0`, Plaster to `1.1.3` and PSReadLine to `2.1.0`.
28+
- 🐛 📟 [PowerShellEditorServices #24977523](https://github.com/PowerShell/PowerShellEditorServices/pull/1571) - Implement `LengthInBufferCells` to fix ANSI formatting. (Thanks @SeeminglyScience!)
29+
- ✨ 🔍 [vscode-powershell #3522](https://github.com/PowerShell/PowerShellEditorServices/pull/1570) - Send `stopDebugger` notification when appropriate.
30+
- 🐛 🔍 [vscode-powershell #3537](https://github.com/PowerShell/PowerShellEditorServices/pull/1569) - Fix bug with `ExecuteScriptWithArgsAsync` when `script` is a command.
31+
- ✨ ‍🕵️ [PowerShellEditorServices #1562](https://github.com/PowerShell/PowerShellEditorServices/pull/1562) - Pin PSScriptAnalyzer to `v1.20.0`, Plaster to `v1.1.3` and PSReadLine to `v2.1.0`.
2832

2933
## v2021.8.2
3034
### Tuesday, August 24, 2021

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "powershell-preview",
3-
"displayName": "PowerShell Preview",
2+
"name": "powershell",
3+
"displayName": "PowerShell",
44
"version": "2021.9.0",
5-
"preview": true,
5+
"preview": false,
66
"publisher": "ms-vscode",
7-
"description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!",
7+
"description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!",
88
"engines": {
99
"vscode": "^1.56.0"
1010
},
@@ -16,7 +16,7 @@
1616
"Snippets",
1717
"Linters"
1818
],
19-
"icon": "media/PowerShell_Preview_Icon.png",
19+
"icon": "media/PowerShell_Icon.png",
2020
"galleryBanner": {
2121
"color": "#ACD1EC",
2222
"theme": "light"

0 commit comments

Comments
 (0)