Skip to content

Commit 9c72e81

Browse files
committed
Update changelog
1 parent 3a718ee commit 9c72e81

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

extensions/ql-vscode/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [UNRELEASED]
44

5+
- Include the full stack in error log messages to help with debugging. [#726](https://github.com/github/vscode-codeql/pull/726)
6+
57
## 1.3.8 - 17 December 2020
68

79
- Ensure databases are unlocked when removing them from the workspace. This will ensure that after a database is removed from VS Code, queries can be run on it from the command line without restarting the IDE. Requires CodeQL CLI 2.4.1 or later. [#681](https://github.com/github/vscode-codeql/pull/681)

extensions/ql-vscode/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export class CodeQLCliServer implements Disposable {
267267
const argsString = args.join(' ');
268268
this.logger.log(`${description} using CodeQL CLI: ${argsString}...`);
269269
try {
270-
await new Promise((resolve, reject) => {
270+
await new Promise<void>((resolve, reject) => {
271271
// Start listening to stdout
272272
process.stdout.addListener('data', (newData: Buffer) => {
273273
stdoutBuffers.push(newData);

0 commit comments

Comments
 (0)