Skip to content

Commit a2c00b3

Browse files
committed
Update CHANGELOG for v2021.5.1
1 parent bc694d6 commit a2c00b3

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

CHANGELOG.md

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

3+
## v2021.5.1
4+
### Thursday, May 27, 2021
5+
6+
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
7+
8+
This stable release includes all the changes in the previews since v2021.2.2, plus the
9+
following:
10+
11+
- 🐛🔧 [vscode-powershell #3221](https://github.com/PowerShell/vscode-powershell/pull/3377) - Disable semantic highlighting by default.
12+
- 📖📺✨ [vscode-powershell #1943](https://github.com/PowerShell/vscode-powershell/pull/3372) - Note that ISE theme is included in this extension.
13+
- 🔧🔍🐛✨ [vscode-powershell #3338](https://github.com/PowerShell/vscode-powershell/pull/3357) - Don't prompt to save untitled PowerShell files when debugging.
14+
15+
Since we have disabled semantic highlighting by default now, if you wish to re-enable it,
16+
use:
17+
18+
```json
19+
"[powershell]": {
20+
"editor.semanticHighlighting.enabled": true
21+
}
22+
```
23+
24+
We now also remove `-` and `$` from the word separators by default for PowerShell files.
25+
To add them back, use:
26+
27+
```json
28+
"[powershell]": {
29+
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?"
30+
}
31+
```
32+
33+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
34+
35+
This stable release includes all the changes in the previews since v2.3.0, plus the following:
36+
37+
- ✨👷 [PowerShellEditorServices #1491](https://github.com/PowerShell/PowerShellEditorServices/pull/1491) - Bump OmniSharp to `v0.19.2`.
38+
- 🧠🐛 [vscode-powershell #715](https://github.com/PowerShell/PowerShellEditorServices/pull/1484) - Fix unintentional module import. (Thanks @MartinGC94!)
39+
40+
The most significant change is the update to [OmniSharp
41+
v0.19.2](https://github.com/OmniSharp/csharp-language-server-protocol/releases/tag/v0.19.2),
42+
from the previous version v0.18.3, released in November 2020. OmniSharp is the underlying
43+
Language Server Protocol and Debug Adapter Protocol server library, and as such is our
44+
biggest dependency. This update brings us to the LSP 3.16 and DAP 1.48.x specifications,
45+
enabling us to start incorporating all the latest LSP changes, and it includes numerous
46+
bug fixes and enhancements resulting in a faster and more stable server and extension
47+
experience.
48+
349
## v2021.5.0-preview
450
### Friday, May 21, 2021
551

0 commit comments

Comments
 (0)