Skip to content

Update CHANGELOG for v2021.4.1-preview #3271

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
Apr 5, 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: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# PowerShell Extension Release History

## v2021.4.1-preview
### Friday, April 02, 2021

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

- 👷🐛 [vscode-powershell #3267](https://github.com/PowerShell/vscode-powershell/pull/3267) - Update download host of vscode. (Thanks @thosoo!)
- 👷✨ [vscode-powershell #3195](https://github.com/PowerShell/vscode-powershell/pull/3265) - Create new `ReleaseTools` module.
- 📺✨ [vscode-powershell #3236](https://github.com/PowerShell/vscode-powershell/pull/3237) - Use title case and shorter notification text. (Thanks @Tyriar!)
- 🚨🐛 [vscode-powershell #3208](https://github.com/PowerShell/vscode-powershell/pull/3222) - Fix hardcoded extension name string.
- 📖🐛 [vscode-powershell #3049](https://github.com/PowerShell/vscode-powershell/pull/3214) - Update examples-module to use Pester 5. (Thanks @nickkimbrough!)
- 🐛 [vscode-powershell #3209](https://github.com/PowerShell/vscode-powershell/pull/3212) - Remove the rest of the experimental Notebook API.
- 👷 [vscode-powershell #3178](https://github.com/PowerShell/vscode-powershell/pull/3207) - Update powershell CHANGELOG for v2021.2.2.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might not want to include this item. We've been asked in the past by users not to include infra/maintenance work items. Personally I don't mind either way.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I'd rather not change it now, but I'll file a task to exclude these PRs from future changelogs.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


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

- 🧠✨ [PowerShellEditorServices #1176](https://github.com/PowerShell/PowerShellEditorServices/pull/1427) - Add '$' as trigger character for completion. (Thanks @MartinGC94!)
- 👷🚨✨ [PowerShellEditorServices #1426](https://github.com/PowerShell/PowerShellEditorServices/pull/1426) - Bump CI images and enable tests on Apple M1.
-[PowerShellEditorServices #1424](https://github.com/PowerShell/PowerShellEditorServices/pull/1424) - Update to use OmniSharp 0.19.0.
- #️⃣ 🙏 [PowerShellEditorServices #1418](https://github.com/PowerShell/PowerShellEditorServices/pull/1418) - Update CHANGELOG for v2.3.0.
- #️⃣ 🙏 [vscode-powershell #3180](https://github.com/PowerShell/PowerShellEditorServices/pull/1411) - Fix New-EditorFile failing when no Editor window open. (Thanks @corbob!)

## v2021.2.2
### Wednesday, February 24, 2021
#### [vscode-PowerShell](https://github.com/PowerShell/vscode-PowerShell)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "powershell-preview",
"displayName": "PowerShell Preview",
"version": "2021.2.3",
"version": "2021.4.1",
"preview": true,
"publisher": "ms-vscode",
"description": "(Preview) Develop PowerShell scripts in Visual Studio Code!",
Expand Down
4 changes: 2 additions & 2 deletions tools/ReleaseTools.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ function New-DraftRelease {
[ValidateSet([RepoNames])]
[string]$RepositoryName
)
# TODO: Abstract this to return version components and reuse in `Update-Version`.
$Changelog = (Get-NewChangelog -RepositoryName $RepositoryName) -join "`n"
$Version = if ($Changelog -match '## (?<version>v\S+)') {
$Matches.version
Expand All @@ -230,8 +231,7 @@ function New-DraftRelease {
Name = $Version
Body = $ChangeLog
PreRelease = $Version -match '-preview'
Confirm = $Confirm
WhatIf = $WhatIf
# TODO: Pass -WhatIf and -Confirm parameters correctly.
}
Get-GitHubRepository -OwnerName PowerShell -RepositoryName $RepositoryName |
New-GitHubRelease @ReleaseParams
Expand Down