From 724db3e57e108b909a1ed409339f0eecfbe31445 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Mon, 29 Sep 2025 22:07:40 -0700 Subject: [PATCH 1/2] Remove ThreadJob module and update PSReadLine to 2.4.4-beta4 --- src/Modules/PSGalleryModules.csproj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Modules/PSGalleryModules.csproj b/src/Modules/PSGalleryModules.csproj index e4fce43b396..327c293e72c 100644 --- a/src/Modules/PSGalleryModules.csproj +++ b/src/Modules/PSGalleryModules.csproj @@ -15,8 +15,7 @@ - - + From 79b2a00a8231496ed4b15dbbf1872412f2775372 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Tue, 30 Sep 2025 09:46:11 -0700 Subject: [PATCH 2/2] Fix test --- test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 b/test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 index 975f4f82da3..732404a6b36 100644 --- a/test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 +++ b/test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 @@ -12,13 +12,13 @@ Describe "PSReadLine" -tags "CI" { Import-Module PSReadLine $module = Get-Module PSReadLine $module.Name | Should -BeExactly 'PSReadLine' - $module.Version | Should -Match '^2.3.\d$' + $module.Version | Should -Match '^2.4.\d$' } It "Should be installed to `$PSHOME" { $module = Get-Module (Join-Path -Path $PSHOME -ChildPath "Modules" -AdditionalChildPath "PSReadLine") -ListAvailable $module.Name | Should -BeExactly 'PSReadLine' - $module.Version | Should -Match '^2.3.\d$' + $module.Version | Should -Match '^2.4.\d$' $module.Path | Should -Be (Join-Path -Path $PSHOME -ChildPath "Modules/PSReadLine/PSReadLine.psd1") }