From feb92e8c0237eb1680aa9b894a5ce3c5cb19d9ad Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Mon, 13 Jan 2020 15:07:51 -0800 Subject: [PATCH 1/4] Redo changelog --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72e3406633..6e55064f2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,45 @@ # PowerShell Preview Extension Release History +## v2020.1.0 +### Monday, January 13, 2020 +#### [vscode-PowerShell](https://github.com/PowerShell/vscode-PowerShell) + +- [vscode-PowerShell #2391](https://github.com/PowerShell/vscode-PowerShell/pull/2391) - + Bump semver from 6.3.0 to 7.1.1. (Thanks @dependabot-preview[bot]!) +- [vscode-PowerShell #2403](https://github.com/PowerShell/vscode-PowerShell/pull/2403) - + Bump sinon from 7.5.0 to 8.0.4. (Thanks @dependabot-preview[bot]!) +- [vscode-PowerShell #2340](https://github.com/PowerShell/vscode-PowerShell/pull/2340) - + Bump mock-fs from 4.10.3 to 4.10.4. (Thanks @dependabot-preview[bot]!) +- 🛫 ✨ [vscode-powershell #2384](https://github.com/PowerShell/vscode-PowerShell/pull/2400) - + Add -Login startup option. +- 🛫 🐛 [vscode-powershell #2380](https://github.com/PowerShell/vscode-PowerShell/pull/2399) - + Make PowerShell names case insensitive for configuration. +- 🛫 📺 ✨ [vscode-powershell #2370](https://github.com/PowerShell/vscode-PowerShell/pull/2398) - + Add configuration to enable/disable banner. + +#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices) + +- 📺 [vscode-powershell #2405](https://github.com/PowerShell/PowerShellEditorServices/pull/1152) - + Add tooltip to completions ParameterValue. +- 🛫 🐛 [vscode-powershell #2393](https://github.com/PowerShell/PowerShellEditorServices/pull/1151) - + Probe netfx dir for deps. +- [PowerShellEditorServices #1136](https://github.com/PowerShell/PowerShellEditorServices/pull/1136) - + Bump Microsoft.CodeAnalysis.FxCopAnalyzers from 2.9.7 to 2.9.8. (Thanks @dependabot-preview[bot]!) +- 🚂 ⏱️ 🐛 [vscode-powershell #2352](https://github.com/PowerShell/PowerShellEditorServices/pull/1149) - + Fix lock up that occurs when WinForms is executed on the pipeline thread. +- 💭 🐛 [vscode-powershell #2402](https://github.com/PowerShell/PowerShellEditorServices/pull/1150) - + Fix temp debugging after it broke bringing in $psEditor. +- 🧠 🐛 [vscode-powershell #2324](https://github.com/PowerShell/PowerShellEditorServices/pull/1143) - + Fix unicode character uri bug. +- 🛫 📺 ✨ [vscode-powershell #2370](https://github.com/PowerShell/PowerShellEditorServices/pull/1141) - + Make startup banner simpler. +- [vscode-powershell #2386](https://github.com/PowerShell/PowerShellEditorServices/pull/1140) - + Fix uncaught exception when SafeToString returns null. (Thanks @jborean93!) +- 🔗 🐛 [vscode-powershell #2374](https://github.com/PowerShell/PowerShellEditorServices/pull/1139) - + Simplify logic of determining Reference definition. +- 🛫 🐛 [vscode-powershell #2379](https://github.com/PowerShell/PowerShellEditorServices/pull/1138) - + Use -Option AllScope to fix Windows PowerShell error. + ## v2019.12.0 ### Wednesday, December 11, 2019 #### [vscode-PowerShell](https://github.com/PowerShell/vscode-PowerShell) From 47ac8c7befee8e3fd3ca73612089ee9a89e5b955 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Mon, 13 Jan 2020 15:08:24 -0800 Subject: [PATCH 2/4] Increment version --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index c08ec63eee..ef54b82bcb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "powershell-preview", - "version": "2019.12.0", + "version": "2020.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 544f493066..8738833129 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "powershell-preview", "displayName": "PowerShell Preview", - "version": "2019.12.0", + "version": "2020.1.0", "preview": true, "publisher": "ms-vscode", "description": "(Preview) Develop PowerShell scripts in Visual Studio Code!", From bb1d6516e75a9fd1bf1703f099de805e50d22a18 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Mon, 13 Jan 2020 15:11:04 -0800 Subject: [PATCH 3/4] Remove dependabot thanks --- CHANGELOG.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e55064f2d..cbcf6dd588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,6 @@ ### Monday, January 13, 2020 #### [vscode-PowerShell](https://github.com/PowerShell/vscode-PowerShell) -- [vscode-PowerShell #2391](https://github.com/PowerShell/vscode-PowerShell/pull/2391) - - Bump semver from 6.3.0 to 7.1.1. (Thanks @dependabot-preview[bot]!) -- [vscode-PowerShell #2403](https://github.com/PowerShell/vscode-PowerShell/pull/2403) - - Bump sinon from 7.5.0 to 8.0.4. (Thanks @dependabot-preview[bot]!) -- [vscode-PowerShell #2340](https://github.com/PowerShell/vscode-PowerShell/pull/2340) - - Bump mock-fs from 4.10.3 to 4.10.4. (Thanks @dependabot-preview[bot]!) - 🛫 ✨ [vscode-powershell #2384](https://github.com/PowerShell/vscode-PowerShell/pull/2400) - Add -Login startup option. - 🛫 🐛 [vscode-powershell #2380](https://github.com/PowerShell/vscode-PowerShell/pull/2399) - From 706403b69cd4619622ff6a9b22448e2ad7fdb6d2 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Mon, 13 Jan 2020 15:24:38 -0800 Subject: [PATCH 4/4] See ya! --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbcf6dd588..409114b0b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,8 +17,6 @@ Add tooltip to completions ParameterValue. - 🛫 🐛 [vscode-powershell #2393](https://github.com/PowerShell/PowerShellEditorServices/pull/1151) - Probe netfx dir for deps. -- [PowerShellEditorServices #1136](https://github.com/PowerShell/PowerShellEditorServices/pull/1136) - - Bump Microsoft.CodeAnalysis.FxCopAnalyzers from 2.9.7 to 2.9.8. (Thanks @dependabot-preview[bot]!) - 🚂 ⏱️ 🐛 [vscode-powershell #2352](https://github.com/PowerShell/PowerShellEditorServices/pull/1149) - Fix lock up that occurs when WinForms is executed on the pipeline thread. - 💭 🐛 [vscode-powershell #2402](https://github.com/PowerShell/PowerShellEditorServices/pull/1150) -