Skip to content

Commit 7d8bf9a

Browse files
Add changelog entry and add missing dependencies
1 parent 2a6383b commit 7d8bf9a

4 files changed

Lines changed: 78 additions & 2 deletions

File tree

extensions/ql-vscode/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## [UNRELEASED]
44

55
- Fix the _CodeQL: Open Referenced File_ command for Windows systems. [#979](https://github.com/github/vscode-codeql/pull/979)
6+
- Fix a bug that causes VSCode to crash when handling large SARIF files (>4GB) [#1004](https://github.com/github/vscode-codeql/pull/1004)
67
- Fix a bug that shows 'Set current database' when hovering over the currently selected database in the databases view. [#976](https://github.com/github/vscode-codeql/pull/976)
78
- Fix a bug with importing large databases. Databases over 4GB can now be imported directly from LGTM or from a zip file. This functionality is only available when using CodeQL CLI version 2.6.0 or later. [#971](https://github.com/github/vscode-codeql/pull/971)
89
- Replace certain control codes (`U+0000` - `U+001F`) with their corresponding control labels (`U+2400` - `U+241F`) in the results view. [#963](https://github.com/github/vscode-codeql/pull/963)

extensions/ql-vscode/package-lock.json

Lines changed: 72 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/ql-vscode/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,8 @@
969969
"react": "^16.8.6",
970970
"react-dom": "^16.8.6",
971971
"semver": "~7.3.2",
972+
"stream-chain": "^2.2.4",
973+
"stream-json": "^1.7.3",
972974
"tmp": "^0.1.0",
973975
"tmp-promise": "~3.0.2",
974976
"tree-kill": "~1.2.2",
@@ -1003,6 +1005,8 @@
10031005
"@types/semver": "~7.2.0",
10041006
"@types/sinon": "~7.5.2",
10051007
"@types/sinon-chai": "~3.2.3",
1008+
"@types/stream-chain": "^2.0.1",
1009+
"@types/stream-json": "^1.7.1",
10061010
"@types/through2": "^2.0.36",
10071011
"@types/tmp": "^0.1.0",
10081012
"@types/unzipper": "~0.10.1",

extensions/ql-vscode/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,7 @@ export class CliVersionConstraint {
11851185

11861186
/**
11871187
* CLI version where database registration was introduced
1188-
*/
1188+
*/
11891189
public static CLI_VERSION_WITH_DB_REGISTRATION = new SemVer('2.4.1');
11901190

11911191
/**

0 commit comments

Comments
 (0)