From 1a18b080b33bc46751a1cc7644cc8ac1a23052e8 Mon Sep 17 00:00:00 2001 From: nohwnd Date: Sun, 28 Jun 2026 16:26:27 +0200 Subject: [PATCH 1/3] Pin Pester to 6.0.0-rc1 for v6 release-candidate pilot Change RequiredModules.psd1 from the floating Pester latest pin to the 6.0.0-rc1 prerelease pin. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- RequiredModules.psd1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/RequiredModules.psd1 b/RequiredModules.psd1 index a352f062..2657c252 100644 --- a/RequiredModules.psd1 +++ b/RequiredModules.psd1 @@ -9,7 +9,10 @@ InvokeBuild = 'latest' PSScriptAnalyzer = 'latest' - Pester = 'latest' + Pester = @{ + Version = '6.0.0-rc1' + Parameters = @{ AllowPrerelease = $true } + } Plaster = 'latest' ModuleBuilder = 'latest' ChangelogManagement = 'latest' From dd275c9225337959084132eab3266a37e1e8aeb4 Mon Sep 17 00:00:00 2001 From: nohwnd Date: Wed, 1 Jul 2026 09:33:27 +0200 Subject: [PATCH 2/3] Bump Pester to 6.0.0-rc4 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- RequiredModules.psd1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RequiredModules.psd1 b/RequiredModules.psd1 index 2657c252..9277fc50 100644 --- a/RequiredModules.psd1 +++ b/RequiredModules.psd1 @@ -10,7 +10,7 @@ InvokeBuild = 'latest' PSScriptAnalyzer = 'latest' Pester = @{ - Version = '6.0.0-rc1' + Version = '6.0.0-rc4' Parameters = @{ AllowPrerelease = $true } } Plaster = 'latest' From d825c5bdaf4277764ae27071109406577d224366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Tue, 7 Jul 2026 10:35:13 +0200 Subject: [PATCH 3/3] Update Pester pin to the released 6.0.0 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- RequiredModules.psd1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/RequiredModules.psd1 b/RequiredModules.psd1 index 9277fc50..d0d17ac1 100644 --- a/RequiredModules.psd1 +++ b/RequiredModules.psd1 @@ -10,8 +10,7 @@ InvokeBuild = 'latest' PSScriptAnalyzer = 'latest' Pester = @{ - Version = '6.0.0-rc4' - Parameters = @{ AllowPrerelease = $true } + Version = '6.0.0' } Plaster = 'latest' ModuleBuilder = 'latest'