From c2c841d8b57a980e73d7cec281f973053cfd844b Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Thu, 10 Mar 2022 15:17:42 -0800 Subject: [PATCH 1/2] Update CHANGELOG for `v2022.3.0-preview` --- CHANGELOG.md | 20 ++++++++++++++++++++ tools/ReleaseTools.psm1 | 7 ++++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc815c4488..c2f16f8c02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # PowerShell Extension Release History +## v2022.3.0-preview +### Thursday, March 10, 2022 + +#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell) + +- ✨ 📺 [vscode-powershell #2499](https://github.com/PowerShell/vscode-powershell/pull/3869) - Use Code's new Language Status API. +- ✨ 📺 [vscode-powershell #3866](https://github.com/PowerShell/vscode-powershell/pull/3866) - Fix title of PowerShell Command Explorer pane. +- ✨ 📺 [vscode-powershell #3865](https://github.com/PowerShell/vscode-powershell/pull/3865) - Replace custom graphics with updated Codicons. +- ✨ 🔧 [vscode-powershell #3858](https://github.com/PowerShell/vscode-powershell/pull/3859) - Deprecate `promptToUpdatePackageManagement`. +- 🐛 📟 [vscode-powershell #3360](https://github.com/PowerShell/vscode-powershell/pull/3854) - Use new `isTransient` API to prevent duplicate integrated consoles. +- 🐛 🔍 [vscode-powershell #3259](https://github.com/PowerShell/vscode-powershell/pull/3852) - Fix Pester `Test/Debug` code lenses to now change directory. +- ✨ ✂️ [vscode-powershell #3839](https://github.com/PowerShell/vscode-powershell/pull/3839) - Modernize built-in snippets. (Thanks @JustinGrote!) + +#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices) + +- ✨ 🧠 [vscode-powershell #3364](https://github.com/PowerShell/PowerShellEditorServices/pull/1738) - Improve completion logic (more icons!). +- 🐛 🛫 [PowerShellEditorServices #1576](https://github.com/PowerShell/PowerShellEditorServices/pull/1735) - Remove `PackageManagement` module update prompt. +- 🐛 📟 [PowerShellEditorServices #1734](https://github.com/PowerShell/PowerShellEditorServices/pull/1734) - Finish redirection of `$Host.PrivateData`. +- 🐛 📟 [PowerShellEditorServices #1639](https://github.com/PowerShell/PowerShellEditorServices/pull/1732) - Redirect `PSHost.Notify*Application` methods. + ## v2022.2.2-preview ### Thursday, February 24, 2022 diff --git a/tools/ReleaseTools.psm1 b/tools/ReleaseTools.psm1 index 85ea6ca4a4..a478d2543e 100644 --- a/tools/ReleaseTools.psm1 +++ b/tools/ReleaseTools.psm1 @@ -62,9 +62,10 @@ function Get-Bullets { 'andschwa' 'daxian-dbw' 'PaulHigin' - 'rjmholt' + 'SeeminglyScience' 'SteveL-MSFT' - 'TylerLeonhardt' + 'StevenBucher98' + 'SydneyhSmith' ) $IssueEmojis = @{ @@ -390,7 +391,7 @@ function New-ReleasePR { Use-Repository -RepositoryName $RepositoryName -Script { if ($PSCmdlet.ShouldProcess("$RepositoryName/release", "git push")) { Write-Host "Pushing release branch..." - git push --set-upstream --force-with-lease origin release + git push --force-with-lease origin release } } From 9cc0abeffe8362533ceae90caff35d8c2620877a Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Thu, 10 Mar 2022 15:17:42 -0800 Subject: [PATCH 2/2] Bump version to `v2022.3.0-preview` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d8bd96d058..6d1f16c1bd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "powershell-preview", "displayName": "PowerShell Preview", - "version": "2022.2.2", + "version": "2022.3.0", "preview": true, "publisher": "ms-vscode", "description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!",