Skip to content

Commit 119061e

Browse files
Merge pull request #3512 from PowerShell/release
Release `v2021.8.1-preview`
2 parents 22fee68 + 4ca4545 commit 119061e

File tree

3 files changed

+28
-9
lines changed

3 files changed

+28
-9
lines changed

CHANGELOG.md

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

3+
## v2021.8.1-preview
4+
### Thursday, August 19, 2021
5+
6+
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
7+
8+
- ✨ 🚨 [vscode-powershell #3506](https://github.com/PowerShell/vscode-powershell/pull/3506) - Update test runner.
9+
- 🐛#️⃣ 🙏 [vscode-powershell #3499](https://github.com/PowerShell/vscode-powershell/pull/3502) - (#3499) Remove msjsdiag.debugger-for-chrome suggestion. (Thanks @corbob!)
10+
11+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
12+
13+
- 🐛 🛫 [PowerShellEditorServices #1547](https://github.com/PowerShell/PowerShellEditorServices/pull/1547) - Fix creation of `InitialSessionState` to use `CreateDefault2()`.
14+
- ✨ 👷 [PowerShellEditorServices #1544](https://github.com/PowerShell/PowerShellEditorServices/pull/1546) - Explicitly disable implicit namespace imports.
15+
- ✨ 👷 [PowerShellEditorServices #1545](https://github.com/PowerShell/PowerShellEditorServices/pull/1545) - Make `dotnet test` arguments configurable.
16+
- 🐛 ⏱️ [vscode-powershell #3410](https://github.com/PowerShell/PowerShellEditorServices/pull/1542) - Add regression test for `System.Windows.Forms` bug.
17+
- 🐛 👷 [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.
18+
- 🐛 🚨 [PowerShellEditorServices #1442](https://github.com/PowerShell/PowerShellEditorServices/pull/1540) - Fix tests in `Debugging/DebugServiceTests.cs` and simplify faulty script path logic.
19+
- ✨ 🔍 [PowerShellEditorServices #1532](https://github.com/PowerShell/PowerShellEditorServices/pull/1532) - Make `ExecuteCommandAsync` cancellable .
20+
21+
322
## v2021.8.0
423
### Monday, August 09, 2021
524

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "powershell",
3-
"displayName": "PowerShell",
4-
"version": "2021.8.0",
5-
"preview": false,
2+
"name": "powershell-preview",
3+
"displayName": "PowerShell Preview",
4+
"version": "2021.8.1",
5+
"preview": true,
66
"publisher": "ms-vscode",
7-
"description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!",
7+
"description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!",
88
"engines": {
99
"vscode": "^1.53.0"
1010
},
@@ -16,7 +16,7 @@
1616
"Snippets",
1717
"Linters"
1818
],
19-
"icon": "media/PowerShell_Icon.png",
19+
"icon": "media/PowerShell_Preview_Icon.png",
2020
"galleryBanner": {
2121
"color": "#ACD1EC",
2222
"theme": "light"

tools/ReleaseTools.psm1

+3-3
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ function Update-Branch {
180180
Use-Repository -RepositoryName $RepositoryName -Script {
181181
$Branch = git branch --show-current
182182
if ($Branch -ne "release") {
183-
if ($PSCmdlet.ShouldProcess("release", "git checkout -b")) {
184-
git checkout -b "release"
183+
if ($PSCmdlet.ShouldProcess("release", "git checkout -B")) {
184+
git checkout -B "release"
185185
}
186186
}
187187
}
@@ -389,7 +389,7 @@ function New-ReleasePR {
389389
Use-Repository -RepositoryName $RepositoryName -Script {
390390
if ($PSCmdlet.ShouldProcess("$RepositoryName/release", "git push")) {
391391
Write-Host "Pushing release branch..."
392-
git push --force-with-lease origin release
392+
git push --set-upstream --force-with-lease origin release
393393
}
394394
}
395395

0 commit comments

Comments
 (0)