We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a399041 commit 24b3e15Copy full SHA for 24b3e15
1 file changed
extensions/ql-vscode/src/upgrades.ts
@@ -22,13 +22,13 @@ const MAX_UPGRADE_MESSAGE_LINES = 10;
22
* Check that we support non-destructive upgrades.
23
*
24
* This requires 3 features. The ability to compile an upgrade sequence; The ability to
25
- * run a non-desturcitve upgrades as a query; the ability to specify a target when
+ * run a non-destructive upgrades as a query; the ability to specify a target when
26
* resolving upgrades.
27
*/
28
export async function hasNondestructiveUpgradeCapabilities(qs: qsClient.QueryServerClient): Promise<boolean> {
29
// TODO change to actual version when known
30
// Note it is probably something 2.4.something
31
- return semver.gte(await qs.cliServer.getVersion(), '2.3.2');
+ return semver.gte(await qs.cliServer.getVersion(), '2.4.1');
32
}
33
34
0 commit comments