Skip to content

Release v2021.9.2 #3599

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 7 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,17 @@
# PowerShell Extension Release History

## v2021.9.2-preview
### Wednesday, September 29, 2021
## v2021.9.2
### Thursday, September 30, 2021

This release includes changes from both the `v2021.9.1-preview` and `v2021.9.2-preview`.
There were no changes made to PowerShell Editor Services, but several several bugfixes
made to the extension, and most notably, the extension code is now properly minified and
bundled. This should result in a faster and more reliable extension.

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

- #️⃣ 🙏 [vscode-powershell #3593](https://github.com/PowerShell/vscode-powershell/pull/3593) - Remove `mocha-junit-reporter` package by relying on Mocha's xUnit module.
- #️⃣ 🙏 [vscode-powershell #3592](https://github.com/PowerShell/vscode-powershell/pull/3592) - Remove unused feature commands. (Thanks @CrendKing!)
- #️⃣ 🙏 [vscode-powershell #3591](https://github.com/PowerShell/vscode-powershell/pull/3591) - Bump dependencies and lockfile.
- 🐛 🚨 [vscode-powershell #3570](https://github.com/PowerShell/vscode-powershell/pull/3570) - Fix path regressions and cover with tests.

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

No changes.

## v2021.9.1-preview
### Tuesday, September 14, 2021

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

- 🐛 📺 [vscode-powershell #3105](https://github.com/PowerShell/vscode-powershell/pull/3564) - Remove accidentally enabled commands.
- ✨ 👷 [vscode-powershell #2450](https://github.com/PowerShell/vscode-powershell/pull/3555) - Bundle the extension.

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "powershell-preview",
"displayName": "PowerShell Preview",
"name": "powershell",
"displayName": "PowerShell",
"version": "2021.9.2",
"preview": true,
"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.56.0"
},
Expand All @@ -16,7 +16,7 @@
"Snippets",
"Linters"
],
"icon": "media/PowerShell_Preview_Icon.png",
"icon": "media/PowerShell_Icon.png",
"galleryBanner": {
"color": "#ACD1EC",
"theme": "light"
Expand Down