Skip to content

Commit 7126891

Browse files
committed
Update the end-of-support message for PowerShell <7.4
As 7.2 LTS (and 7.3) have reached such.
1 parent a8b28e0 commit 7126891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/session.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ export class SessionManager implements Middleware {
569569
void this.setSessionFailedGetPowerShell(`PowerShell v${version} is not supported, please update!`);
570570
} else if (satisfies(version, ">=5.1.0 <6.0.0")) {
571571
void this.setSessionFailedGetPowerShell("It looks like you're trying to use Windows PowerShell, which is supported on a best-effort basis. Can you try PowerShell 7?");
572-
} else if (satisfies(version, ">=6.0.0 <7.2.0")) {
572+
} else if (satisfies(version, ">=6.0.0 <7.4.0")) {
573573
void this.setSessionFailedGetPowerShell(`PowerShell v${version} has reached end-of-support, please update!`);
574574
} else {
575575
shouldUpdate = false;

0 commit comments

Comments
 (0)