From af79046bb5d2ef4e1d847891d59ed65af6abbf6f Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 19 Feb 2021 15:57:07 -0800 Subject: [PATCH 1/3] Update CHANGELOG for v2.3.0-preview.3 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c80cbd63..24b568e18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # PowerShell Editor Services Release History +## v2.3.0-preview.3 +### Friday, February 19, 2021 + +- Fix publish step. +- Merge pull request #1408 from PowerShell/andschwa/esrp. +- Fix issues caught by PoliCheck. +- Exclude .git folder from PoliCheck. +- Point PoliCheck to source subfolder. +- Replace compliance tasks with template. +- Delete deprecated signing.xml. +- Use ADO tasks instead of pwsh inline scripts. +- Start simplifying release build. +- Replace PackageES with ESRP template. +- Add self as maintainer to readme. +- Set DFS to false in package build. +- [PowerShellEditorServices #1398](https://github.com/PowerShell/PowerShellEditorServices/pull/1398) - + Refactor e2e tests. +- [PowerShellEditorServices #1381](https://github.com/PowerShell/PowerShellEditorServices/pull/1381) - + Hook up Telemetry LSP event and add telemetry event when users opt-out/in to features. +- [PowerShellEditorServices #1397](https://github.com/PowerShell/PowerShellEditorServices/pull/1397) - + More compliant NuGet.config. +- [vscode-powershell #3071](https://github.com/PowerShell/PowerShellEditorServices/pull/1394) - + Fix #1393: Always use local help to return cmdlet help text. (Thanks @deadlydog!) +- [PowerShellEditorServices #1376](https://github.com/PowerShell/PowerShellEditorServices/pull/1376) - + Move to Omnisharp lib 0.18.x. +- 🛫 🐛 [vscode-powershell #2965](https://github.com/PowerShell/PowerShellEditorServices/pull/1363) - + Fix error when started in low .NET versions. +- [PowerShellEditorServices #1364](https://github.com/PowerShell/PowerShellEditorServices/pull/1364) - + Typos in README.md. (Thanks @robotboyfriend!) + ## v2.3.0-preview.2 ### Wednesday, September 16, 2020 From 798c8ed1ce7a5928d1b78ebb79bec0c7937ba182 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 19 Feb 2021 16:36:42 -0800 Subject: [PATCH 2/3] Bump version to 'v2.3.0-preview.3' --- PowerShellEditorServices.Common.props | 2 +- module/PowerShellEditorServices/PowerShellEditorServices.psd1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PowerShellEditorServices.Common.props b/PowerShellEditorServices.Common.props index d7eafb9a9..63523d8f2 100644 --- a/PowerShellEditorServices.Common.props +++ b/PowerShellEditorServices.Common.props @@ -1,7 +1,7 @@ 2.3.0 - preview.2 + preview.3 Microsoft © Microsoft Corporation. All rights reserved. PowerShell;editor;development;language;debugging diff --git a/module/PowerShellEditorServices/PowerShellEditorServices.psd1 b/module/PowerShellEditorServices/PowerShellEditorServices.psd1 index 30f9d3eaf..60e737cd0 100644 --- a/module/PowerShellEditorServices/PowerShellEditorServices.psd1 +++ b/module/PowerShellEditorServices/PowerShellEditorServices.psd1 @@ -19,7 +19,7 @@ RootModule = if ($PSEdition -eq 'Core') } # Version number of this module. -ModuleVersion = '2.1.0' +ModuleVersion = '2.3.0' # ID used to uniquely identify this module GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47' From b5da5e49915b291661339a74428c55b8230f8087 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 19 Feb 2021 17:22:00 -0800 Subject: [PATCH 3/3] Touch-up changelog --- CHANGELOG.md | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24b568e18..0ececa56f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,31 +3,21 @@ ## v2.3.0-preview.3 ### Friday, February 19, 2021 -- Fix publish step. -- Merge pull request #1408 from PowerShell/andschwa/esrp. -- Fix issues caught by PoliCheck. -- Exclude .git folder from PoliCheck. -- Point PoliCheck to source subfolder. -- Replace compliance tasks with template. -- Delete deprecated signing.xml. -- Use ADO tasks instead of pwsh inline scripts. -- Start simplifying release build. -- Replace PackageES with ESRP template. -- Add self as maintainer to readme. -- Set DFS to false in package build. -- [PowerShellEditorServices #1398](https://github.com/PowerShell/PowerShellEditorServices/pull/1398) - +- 👷 ✨ [PowerShellEditorServices #1408](https://github.com/PowerShell/PowerShellEditorServices/pull/1408) - + Rewrite release signing pipeline. +- 🚨 ✨ [PowerShellEditorServices #1398](https://github.com/PowerShell/PowerShellEditorServices/pull/1398) - Refactor e2e tests. -- [PowerShellEditorServices #1381](https://github.com/PowerShell/PowerShellEditorServices/pull/1381) - +- 🚂 ✨ [PowerShellEditorServices #1381](https://github.com/PowerShell/PowerShellEditorServices/pull/1381) - Hook up Telemetry LSP event and add telemetry event when users opt-out/in to features. -- [PowerShellEditorServices #1397](https://github.com/PowerShell/PowerShellEditorServices/pull/1397) - +- 👷 🐛 [PowerShellEditorServices #1397](https://github.com/PowerShell/PowerShellEditorServices/pull/1397) - More compliant NuGet.config. -- [vscode-powershell #3071](https://github.com/PowerShell/PowerShellEditorServices/pull/1394) - +- 📺 🐛 [vscode-powershell #3071](https://github.com/PowerShell/PowerShellEditorServices/pull/1394) - Fix #1393: Always use local help to return cmdlet help text. (Thanks @deadlydog!) -- [PowerShellEditorServices #1376](https://github.com/PowerShell/PowerShellEditorServices/pull/1376) - +- 🚂 ✨ [PowerShellEditorServices #1376](https://github.com/PowerShell/PowerShellEditorServices/pull/1376) - Move to Omnisharp lib 0.18.x. - 🛫 🐛 [vscode-powershell #2965](https://github.com/PowerShell/PowerShellEditorServices/pull/1363) - Fix error when started in low .NET versions. -- [PowerShellEditorServices #1364](https://github.com/PowerShell/PowerShellEditorServices/pull/1364) - +- 📖 🐛 [PowerShellEditorServices #1364](https://github.com/PowerShell/PowerShellEditorServices/pull/1364) - Typos in README.md. (Thanks @robotboyfriend!) ## v2.3.0-preview.2