Skip to content

Commit 08d7b78

Browse files
Merge pull request #4935 from PowerShell/release
Release `v2024.3.1-preview`
2 parents 9012584 + dd0315e commit 08d7b78

File tree

5 files changed

+22
-8
lines changed

5 files changed

+22
-8
lines changed

.github/workflows/ci-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Build, test and package
6666
shell: pwsh
67-
run: Invoke-Build
67+
run: Invoke-Build -Configuration Release
6868
env:
6969
NPM_PASSWORD: ${{ secrets.AZURE_NPM_PASSWORD_BASE64}}
7070

.vsts-ci/azure-pipelines-ci.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
name: CI-$(Build.SourceBranchName)-$(Date:yyyyMMdd)$(Rev:.rr)
22

3+
# NOTE: This was superceded by the GitHub Actions workflow.
34
pr: none
4-
5-
trigger:
6-
branches:
7-
include:
8-
- release
5+
trigger: none
96

107
variables:
118
# Don't download unneeded packages

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# PowerShell Extension Release History
22

3+
## v2024.3.1-preview
4+
### Tuesday, March 5, 2024
5+
6+
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
7+
8+
- ✨ 🙏 [vscode-powershell #4932](https://github.com/PowerShell/vscode-powershell/pull/4934) - Don't make the Command Explorer visible by default.
9+
- ✨ 💭 [vscode-powershell #4933](https://github.com/PowerShell/vscode-powershell/pull/4933) - Fix how we pass the log directory to Editor Services.
10+
11+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices) v3.18.0
12+
13+
- ✨ 👷 [PowerShellEditorServices #2138](https://github.com/PowerShell/PowerShellEditorServices/pull/2138) - Fixed sln file. (Thanks @dkattan!)
14+
- #️⃣ 🙏 [PowerShellEditorServices #2137](https://github.com/PowerShell/PowerShellEditorServices/pull/2137) - Fixed TextReader disposal. (Thanks @dkattan!)
15+
- 🐛#️⃣ 🙏 [PowerShellEditorServices #2135](https://github.com/PowerShell/PowerShellEditorServices/pull/2135) - Fix PowerShell 7.2 E2E unit test for last change.
16+
- ✨ 🛫 [PowerShellEditorServices #1855](https://github.com/PowerShell/PowerShellEditorServices/pull/2129) - Add sane defaults to `Start-EditorServices`.
17+
- ✨#️⃣ 🙏 [PowerShellEditorServices #2122](https://github.com/PowerShell/PowerShellEditorServices/pull/2122) - Add `UseNullPSHostUI` config so apps hosting PSES can disable it. (Thanks @dkattan!)
18+
- 🐛 🧠 [PowerShellEditorServices #2115](https://github.com/PowerShell/PowerShellEditorServices/pull/2115) - Added null check to `GetCompletionsAsync`. (Thanks @dkattan!)
19+
320
## v2024.3.0-preview
421
### Thursday, January 25, 2024
522

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "powershell",
33
"displayName": "PowerShell",
4-
"version": "2024.3.0",
4+
"version": "2024.3.1",
55
"preview": false,
66
"publisher": "ms-vscode",
77
"description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!",

vscode-powershell.build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ task RestoreNodeModules -If { !(Test-Path ./node_modules) } {
2727
# When in a CI build use the --loglevel=error parameter so that
2828
# package install warnings don't cause PowerShell to throw up
2929
if ($env:CI -or $env:TF_BUILD) {
30-
Invoke-BuildExec { & npm ci --loglevel=error --ignore-scripts }
30+
Invoke-BuildExec { & npm ci --loglevel=error }
3131
} else {
3232
Invoke-BuildExec { & npm install }
3333
}

0 commit comments

Comments
 (0)