You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/ql-vscode/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,12 @@
2
2
3
3
## [UNRELEASED]
4
4
5
+
## 1.8.2 - 12 April 2023
6
+
7
+
- Fix bug where users could end up with the managed CodeQL CLI getting uninstalled during upgrades and not reinstalled. [#2294](https://github.com/github/vscode-codeql/pull/2294)
5
8
- Fix bug that was causing code flows to not get updated when switching between results. [#2288](https://github.com/github/vscode-codeql/pull/2288)
6
9
- Restart the CodeQL language server whenever the _CodeQL: Restart Query Server_ command is invoked. This avoids bugs where the CLI version changes to support new language features, but the language server is not updated. [#2238](https://github.com/github/vscode-codeql/pull/2238)
10
+
- Avoid requiring a manual restart of the query server when the [external CLI config file](https://docs.github.com/en/code-security/codeql-cli/using-the-codeql-cli/specifying-command-options-in-a-codeql-configuration-file#using-a-codeql-configuration-file) changes. [#2289](https://github.com/github/vscode-codeql/pull/2289)
@@ -675,6 +677,7 @@ async function activateWithInstalledDistribution(
675
677
extLogger,
676
678
);
677
679
ctx.subscriptions.push(cliServer);
680
+
watchExternalConfigFile(app,ctx);
678
681
679
682
conststatusBar=newCodeQlStatusBarHandler(
680
683
cliServer,
@@ -1023,6 +1026,34 @@ async function activateWithInstalledDistribution(
1023
1026
};
1024
1027
}
1025
1028
1029
+
/**
1030
+
* Handle changes to the external config file. This is used to restart the query server
1031
+
* when the user changes options.
1032
+
* See https://docs.github.com/en/code-security/codeql-cli/using-the-codeql-cli/specifying-command-options-in-a-codeql-configuration-file#using-a-codeql-configuration-file
0 commit comments