diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 8b9c045950..2bcdef12e3 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -64,7 +64,7 @@ jobs: - name: Build, test and package shell: pwsh - run: Invoke-Build + run: Invoke-Build -Configuration Release env: NPM_PASSWORD: ${{ secrets.AZURE_NPM_PASSWORD_BASE64}} diff --git a/.vsts-ci/azure-pipelines-ci.yml b/.vsts-ci/azure-pipelines-ci.yml index 7c23c8399b..811e29c239 100644 --- a/.vsts-ci/azure-pipelines-ci.yml +++ b/.vsts-ci/azure-pipelines-ci.yml @@ -1,11 +1,8 @@ name: CI-$(Build.SourceBranchName)-$(Date:yyyyMMdd)$(Rev:.rr) +# NOTE: This was superceded by the GitHub Actions workflow. pr: none - -trigger: - branches: - include: - - release +trigger: none variables: # Don't download unneeded packages diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c2b643c8d..1822375dc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # PowerShell Extension Release History +## v2024.3.1-preview +### Tuesday, March 5, 2024 + +#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell) + +- ✨ 🙏 [vscode-powershell #4932](https://github.com/PowerShell/vscode-powershell/pull/4934) - Don't make the Command Explorer visible by default. +- ✨ 💭 [vscode-powershell #4933](https://github.com/PowerShell/vscode-powershell/pull/4933) - Fix how we pass the log directory to Editor Services. + +#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices) v3.18.0 + +- ✨ 👷 [PowerShellEditorServices #2138](https://github.com/PowerShell/PowerShellEditorServices/pull/2138) - Fixed sln file. (Thanks @dkattan!) +- #️⃣ 🙏 [PowerShellEditorServices #2137](https://github.com/PowerShell/PowerShellEditorServices/pull/2137) - Fixed TextReader disposal. (Thanks @dkattan!) +- 🐛#️⃣ 🙏 [PowerShellEditorServices #2135](https://github.com/PowerShell/PowerShellEditorServices/pull/2135) - Fix PowerShell 7.2 E2E unit test for last change. +- ✨ 🛫 [PowerShellEditorServices #1855](https://github.com/PowerShell/PowerShellEditorServices/pull/2129) - Add sane defaults to `Start-EditorServices`. +- ✨#️⃣ 🙏 [PowerShellEditorServices #2122](https://github.com/PowerShell/PowerShellEditorServices/pull/2122) - Add `UseNullPSHostUI` config so apps hosting PSES can disable it. (Thanks @dkattan!) +- 🐛 🧠 [PowerShellEditorServices #2115](https://github.com/PowerShell/PowerShellEditorServices/pull/2115) - Added null check to `GetCompletionsAsync`. (Thanks @dkattan!) + ## v2024.3.0-preview ### Thursday, January 25, 2024 diff --git a/package.json b/package.json index d5224b3145..44f6738493 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "powershell", "displayName": "PowerShell", - "version": "2024.3.0", + "version": "2024.3.1", "preview": false, "publisher": "ms-vscode", "description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!", diff --git a/vscode-powershell.build.ps1 b/vscode-powershell.build.ps1 index ad75b91bbf..5aef944ff8 100644 --- a/vscode-powershell.build.ps1 +++ b/vscode-powershell.build.ps1 @@ -27,7 +27,7 @@ task RestoreNodeModules -If { !(Test-Path ./node_modules) } { # When in a CI build use the --loglevel=error parameter so that # package install warnings don't cause PowerShell to throw up if ($env:CI -or $env:TF_BUILD) { - Invoke-BuildExec { & npm ci --loglevel=error --ignore-scripts } + Invoke-BuildExec { & npm ci --loglevel=error } } else { Invoke-BuildExec { & npm install } }