Skip to content

Commit ce41617

Browse files
Merge pull request #3193 from andschwa/changelog-v2021.2.0
Update powershell-preview CHANGELOG for v2021.2.0-preview
2 parents 7f0b969 + 9e4c8ae commit ce41617

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,55 @@
11
# PowerShell Extension Release History
22

3+
## v2021.2.0-preview
4+
### Friday, February 19, 2021
5+
#### [vscode-PowerShell](https://github.com/PowerShell/vscode-PowerShell)
6+
7+
- 🛫 🐛 [vscode-powershell #3132](https://github.com/PowerShell/vscode-powershell/pull/3132) -
8+
Use new brew cask installation syntax for PowerShell installation. (Thanks @philippkahr!)
9+
- 📺 🐛 [vscode-powershell #3177](https://github.com/PowerShell/vscode-powershell/pull/3177) -
10+
Disable VSCode Notebook API prototype while the API is still unstable.
11+
- 👷 ✨ [vscode-powershell #3162](https://github.com/PowerShell/vscode-powershell/pull/3162) -
12+
Rewrite release signing pipeline.
13+
- 💎 🐛 [vscode-powershell #3129](https://github.com/PowerShell/vscode-powershell/pull/3129) -
14+
Add braces to PSCustomObject snippet to play nice with auto-closing pairs.
15+
- 📖 ✨ [vscode-powershell #3152](https://github.com/PowerShell/vscode-powershell/pull/3152) -
16+
Add @andschwa to the README as maintainer.
17+
- 👷 🐛 [vscode-powershell #3099](https://github.com/PowerShell/vscode-powershell/pull/3099) -
18+
Update dependencies to fix CI on macOS.
19+
- 🐢 🐛 [vscode-powershell #3089](https://github.com/PowerShell/vscode-powershell/pull/3089) -
20+
Remove hardcoded output format.
21+
- 📖 🐛 [vscode-powershell #3086](https://github.com/PowerShell/vscode-powershell/pull/3086) -
22+
Fix typo in description of legacy codelens description. (Thanks @nexxai!)
23+
- 🚂 ✨ [vscode-powershell #3053](https://github.com/PowerShell/vscode-powershell/pull/3053) -
24+
Use VSCode telemetry endpoint for PSES telemetry.
25+
- 🚂 ✨ [vscode-powershell #3047](https://github.com/PowerShell/vscode-powershell/pull/3047) -
26+
Update language server client.
27+
- 🐢 ✨ [vscode-powershell #2998](https://github.com/PowerShell/vscode-powershell/pull/2998) -
28+
Added Pester v5 support to problem matcher. (Thanks @fflaten!)
29+
- ✂️ 🐛 [vscode-powershell #3023](https://github.com/PowerShell/vscode-powershell/pull/3023) -
30+
Ensure help completions only run on powershell scripts.
31+
- 🛫 🐛 [vscode-powershell #2973](https://github.com/PowerShell/vscode-powershell/pull/2973) -
32+
Fix session menu fails to open when PowerShell extension is starting. (Thanks @jeffpatton1971!)
33+
34+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
35+
36+
- 👷 ✨ [PowerShellEditorServices #1408](https://github.com/PowerShell/PowerShellEditorServices/pull/1408) -
37+
Rewrite release signing pipeline.
38+
- 🚨 ✨ [PowerShellEditorServices #1398](https://github.com/PowerShell/PowerShellEditorServices/pull/1398) -
39+
Refactor e2e tests.
40+
- 🚂 ✨ [PowerShellEditorServices #1381](https://github.com/PowerShell/PowerShellEditorServices/pull/1381) -
41+
Hook up Telemetry LSP event and add telemetry event when users opt-out/in to features.
42+
- 👷 🐛 [PowerShellEditorServices #1397](https://github.com/PowerShell/PowerShellEditorServices/pull/1397) -
43+
More compliant NuGet.config.
44+
- 📺 🐛 [vscode-powershell #3071](https://github.com/PowerShell/PowerShellEditorServices/pull/1394) -
45+
Fix #1393: Always use local help to return cmdlet help text. (Thanks @deadlydog!)
46+
- 🚂 ✨ [PowerShellEditorServices #1376](https://github.com/PowerShell/PowerShellEditorServices/pull/1376) -
47+
Move to Omnisharp lib 0.18.x.
48+
- 🛫 🐛 [vscode-powershell #2965](https://github.com/PowerShell/PowerShellEditorServices/pull/1363) -
49+
Fix error when started in low .NET versions.
50+
- 📖 🐛 [PowerShellEditorServices #1364](https://github.com/PowerShell/PowerShellEditorServices/pull/1364) -
51+
Typos in README.md. (Thanks @robotboyfriend!)
52+
353
## v2020.9.0-preview
454
### Wednesday, September 16, 2020
555
#### [vscode-PowerShell](https://github.com/PowerShell/vscode-PowerShell)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "powershell-preview",
33
"displayName": "PowerShell Preview",
4-
"version": "2020.9.0",
4+
"version": "2021.2.0",
55
"preview": true,
66
"publisher": "ms-vscode",
77
"description": "(Preview) Develop PowerShell scripts in Visual Studio Code!",

tools/releaseBuild/findPsesBuild.ps1

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,19 @@ $succeededBuilds = Invoke-RestMethod -ContentType application/json -Uri $buildsU
66
Write-Host "Requested URL: $buildsUrl"
77
Write-Host "Got response:`n$(ConvertTo-Json $succeededBuilds)"
88

9+
$buildsURL = $buildsURL -replace "branchName", "tagName"
10+
$taggedBuilds = Invoke-RestMethod -ContentType application/json -Uri $buildsUrl -Headers $headers
11+
Write-Host "Requested URL: $buildsUrl"
12+
Write-Host "Got response:`n$(ConvertTo-Json $taggedBuilds)"
13+
914
$buildsUrl = $env:VSTS_PSES_URL_TEMPLATE -f $branch, "partiallySucceeded"
1015
$partiallySucceededBuilds = Invoke-RestMethod -ContentType application/json -Uri $buildsUrl -Headers $headers
1116
Write-Host "Requested URL: $buildsUrl"
1217
Write-Host "Got response:`n$(ConvertTo-Json $partiallySucceededBuilds)"
1318

1419
$builds = @(
1520
$succeededBuilds.value
21+
$taggedBuilds.value
1622
$partiallySucceededBuilds.value
1723
) | Sort-Object finishTime -Descending
1824

0 commit comments

Comments
 (0)