We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e94f70 commit 5079abdCopy full SHA for 5079abd
2 files changed
extensions/ql-vscode/CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## [UNRELEASED]
4
5
+- Fix version constraint for flagging CLI support of non-destructive updates [#744](https://github.com/github/vscode-codeql/pull/744)
6
+
7
## 1.4.1 - 29 January 2021
8
9
- Reword the telemetry modal dialog box. [#738](https://github.com/github/vscode-codeql/pull/738)
extensions/ql-vscode/src/upgrades.ts
@@ -25,7 +25,7 @@ const MAX_UPGRADE_MESSAGE_LINES = 10;
25
* resolving upgrades. We check for a version of codeql that has all three features.
26
*/
27
export async function hasNondestructiveUpgradeCapabilities(qs: qsClient.QueryServerClient): Promise<boolean> {
28
- return semver.gte(await qs.cliServer.getVersion(), '2.4.1');
+ return semver.gte(await qs.cliServer.getVersion(), '2.4.2');
29
}
30
31
0 commit comments