From 7dc75a199aaa139b04e2b758b061e6d6db8867cf Mon Sep 17 00:00:00 2001 From: Liam Peters Date: Fri, 20 Mar 2026 14:43:37 +0000 Subject: [PATCH 1/2] Add *.lock.yml to prettierignore --- .prettierignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.prettierignore b/.prettierignore index 6a4a3c8297..4900a9bf72 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,3 +2,4 @@ dist/ modules/ out/ .config/ +*.lock.yml From bc63ab10cfccb5531db701dc6a5fd093c5c2c960 Mon Sep 17 00:00:00 2001 From: Liam Peters Date: Fri, 20 Mar 2026 15:18:17 +0000 Subject: [PATCH 2/2] Update stable version string in test to 7.6 --- test/features/UpdatePowerShell.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/features/UpdatePowerShell.test.ts b/test/features/UpdatePowerShell.test.ts index ef5049b43e..187331701e 100644 --- a/test/features/UpdatePowerShell.test.ts +++ b/test/features/UpdatePowerShell.test.ts @@ -130,7 +130,7 @@ describe("UpdatePowerShell feature", function () { // NOTE: This will need to be updated each new major stable. // TODO: Upstream bug causes LTS releases to update the stable info. // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing - assert(tag?.startsWith("v7.5") || tag?.startsWith("v7.4")); + assert(tag?.startsWith("v7.6") || tag?.startsWith("v7.4")); }); }); });