From a2c00b34e6e7edfdae3abf60ccc9ee4025ce22eb Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Thu, 27 May 2021 13:19:42 -0700 Subject: [PATCH 1/2] Update CHANGELOG for v2021.5.1 --- CHANGELOG.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dc4f7ea70..b4e715f6d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,51 @@ # PowerShell Extension Release History +## v2021.5.1 +### Thursday, May 27, 2021 + +#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell) + +This stable release includes all the changes in the previews since v2021.2.2, plus the +following: + +- 🐛🔧 [vscode-powershell #3221](https://github.com/PowerShell/vscode-powershell/pull/3377) - Disable semantic highlighting by default. +- 📖📺✨ [vscode-powershell #1943](https://github.com/PowerShell/vscode-powershell/pull/3372) - Note that ISE theme is included in this extension. +- 🔧🔍🐛✨ [vscode-powershell #3338](https://github.com/PowerShell/vscode-powershell/pull/3357) - Don't prompt to save untitled PowerShell files when debugging. + +Since we have disabled semantic highlighting by default now, if you wish to re-enable it, +use: + +```json +"[powershell]": { + "editor.semanticHighlighting.enabled": true +} +``` + +We now also remove `-` and `$` from the word separators by default for PowerShell files. +To add them back, use: + +```json +"[powershell]": { + "editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?" +} +``` + +#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices) + +This stable release includes all the changes in the previews since v2.3.0, plus the following: + +- ✨👷 [PowerShellEditorServices #1491](https://github.com/PowerShell/PowerShellEditorServices/pull/1491) - Bump OmniSharp to `v0.19.2`. +- 🧠🐛 [vscode-powershell #715](https://github.com/PowerShell/PowerShellEditorServices/pull/1484) - Fix unintentional module import. (Thanks @MartinGC94!) + +The most significant change is the update to [OmniSharp +v0.19.2](https://github.com/OmniSharp/csharp-language-server-protocol/releases/tag/v0.19.2), +from the previous version v0.18.3, released in November 2020. OmniSharp is the underlying +Language Server Protocol and Debug Adapter Protocol server library, and as such is our +biggest dependency. This update brings us to the LSP 3.16 and DAP 1.48.x specifications, +enabling us to start incorporating all the latest LSP changes, and it includes numerous +bug fixes and enhancements resulting in a faster and more stable server and extension +experience. + ## v2021.5.0-preview ### Friday, May 21, 2021 From 949de6bdffd6de1f4979ad9ddaa1fe37df448cd0 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Thu, 27 May 2021 13:28:06 -0700 Subject: [PATCH 2/2] Bump version to v2021.5.1 --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index a56cd7969e..5627b04ded 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "powershell-preview", - "displayName": "PowerShell Preview", - "version": "2021.5.0", - "preview": true, + "name": "powershell", + "displayName": "PowerShell", + "version": "2021.5.1", + "preview": false, "publisher": "ms-vscode", - "description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!", + "description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!", "engines": { "vscode": "^1.53.0" },