Skip to content

Release v2021.8.1-preview #3512

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 3 commits into from
Aug 19, 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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# PowerShell Extension Release History

## v2021.8.1-preview
### Thursday, August 19, 2021

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

- ✨ 🚨 [vscode-powershell #3506](https://github.com/PowerShell/vscode-powershell/pull/3506) - Update test runner.
- 🐛#️⃣ 🙏 [vscode-powershell #3499](https://github.com/PowerShell/vscode-powershell/pull/3502) - (#3499) Remove msjsdiag.debugger-for-chrome suggestion. (Thanks @corbob!)

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

- 🐛 🛫 [PowerShellEditorServices #1547](https://github.com/PowerShell/PowerShellEditorServices/pull/1547) - Fix creation of `InitialSessionState` to use `CreateDefault2()`.
- ✨ 👷 [PowerShellEditorServices #1544](https://github.com/PowerShell/PowerShellEditorServices/pull/1546) - Explicitly disable implicit namespace imports.
- ✨ 👷 [PowerShellEditorServices #1545](https://github.com/PowerShell/PowerShellEditorServices/pull/1545) - Make `dotnet test` arguments configurable.
- 🐛 ⏱️ [vscode-powershell #3410](https://github.com/PowerShell/PowerShellEditorServices/pull/1542) - Add regression test for `System.Windows.Forms` bug.
- 🐛 👷 [PowerShellEditorServices #1541](https://github.com/PowerShell/PowerShellEditorServices/pull/1541) - Update C# language version to 10.0 to fix bug with .NET SDK 6 Preview 7.
- 🐛 🚨 [PowerShellEditorServices #1442](https://github.com/PowerShell/PowerShellEditorServices/pull/1540) - Fix tests in `Debugging/DebugServiceTests.cs` and simplify faulty script path logic.
- ✨ 🔍 [PowerShellEditorServices #1532](https://github.com/PowerShell/PowerShellEditorServices/pull/1532) - Make `ExecuteCommandAsync` cancellable .


## v2021.8.0
### Monday, August 09, 2021

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "powershell",
"displayName": "PowerShell",
"version": "2021.8.0",
"preview": false,
"name": "powershell-preview",
"displayName": "PowerShell Preview",
"version": "2021.8.1",
"preview": true,
"publisher": "ms-vscode",
"description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!",
"description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!",
"engines": {
"vscode": "^1.53.0"
},
Expand All @@ -16,7 +16,7 @@
"Snippets",
"Linters"
],
"icon": "media/PowerShell_Icon.png",
"icon": "media/PowerShell_Preview_Icon.png",
"galleryBanner": {
"color": "#ACD1EC",
"theme": "light"
Expand Down
6 changes: 3 additions & 3 deletions tools/ReleaseTools.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ function Update-Branch {
Use-Repository -RepositoryName $RepositoryName -Script {
$Branch = git branch --show-current
if ($Branch -ne "release") {
if ($PSCmdlet.ShouldProcess("release", "git checkout -b")) {
git checkout -b "release"
if ($PSCmdlet.ShouldProcess("release", "git checkout -B")) {
git checkout -B "release"
}
}
}
Expand Down Expand Up @@ -389,7 +389,7 @@ function New-ReleasePR {
Use-Repository -RepositoryName $RepositoryName -Script {
if ($PSCmdlet.ShouldProcess("$RepositoryName/release", "git push")) {
Write-Host "Pushing release branch..."
git push --force-with-lease origin release
git push --set-upstream --force-with-lease origin release
}
}

Expand Down