Skip to content

Commit 2c0838e

Browse files
committed
Merge branch 'main' into starcke/local-query-lang-dto
2 parents b294e16 + add7a25 commit 2c0838e

32 files changed

+953
-761
lines changed

.github/workflows/cli-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262

6363
- uses: actions/setup-node@v3
6464
with:
65-
node-version: '16.17.1'
65+
node-version: '18.15.0'
6666
cache: 'npm'
6767
cache-dependency-path: extensions/ql-vscode/package-lock.json
6868

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/setup-node@v3
2424
with:
25-
node-version: '16.17.1'
25+
node-version: '18.15.0'
2626
cache: 'npm'
2727
cache-dependency-path: extensions/ql-vscode/package-lock.json
2828

@@ -64,7 +64,7 @@ jobs:
6464

6565
- uses: actions/setup-node@v3
6666
with:
67-
node-version: '16.17.1'
67+
node-version: '18.15.0'
6868
cache: 'npm'
6969
cache-dependency-path: extensions/ql-vscode/package-lock.json
7070

@@ -110,7 +110,7 @@ jobs:
110110

111111
- uses: actions/setup-node@v3
112112
with:
113-
node-version: '16.17.1'
113+
node-version: '18.15.0'
114114
cache: 'npm'
115115
cache-dependency-path: extensions/ql-vscode/package-lock.json
116116

@@ -149,7 +149,7 @@ jobs:
149149

150150
- uses: actions/setup-node@v3
151151
with:
152-
node-version: '16.17.1'
152+
node-version: '18.15.0'
153153
cache: 'npm'
154154
cache-dependency-path: extensions/ql-vscode/package-lock.json
155155

@@ -183,7 +183,7 @@ jobs:
183183

184184
- uses: actions/setup-node@v3
185185
with:
186-
node-version: '16.17.1'
186+
node-version: '18.15.0'
187187
cache: 'npm'
188188
cache-dependency-path: extensions/ql-vscode/package-lock.json
189189

@@ -251,7 +251,7 @@ jobs:
251251

252252
- uses: actions/setup-node@v3
253253
with:
254-
node-version: '16.17.1'
254+
node-version: '18.15.0'
255255
cache: 'npm'
256256
cache-dependency-path: extensions/ql-vscode/package-lock.json
257257

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/setup-node@v3
2424
with:
25-
node-version: '16.17.1'
25+
node-version: '18.15.0'
2626

2727
- name: Install dependencies
2828
run: |

docs/node-version.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ The following files will need to be updated:
2121
- `extensions/ql-vscode/.nvmrc` - this will enable nvm to automatically switch to the correct node version when you're in the project folder
2222
- `extensions/ql-vscode/package-lock.json` - the "engines.node: '[VERSION]'" setting
2323
- `extensions/ql-vscode/package.json` - the "engines.node: '[VERSION]'" setting
24+
- `extensions/ql-vscode/package.json` - the "@types/node: '[VERSION]'" dependency
2425

2526
## Node.js version used in tests
2627

docs/test-plan.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ Note that this test requires the feature flag: `codeQL.model.llmGeneration`
173173

174174
#### Test Case 4: Model as dependency
175175

176+
Note that this test requires the feature flag: `codeQL.model.flowGeneration`
177+
176178
1. Click "Model as dependency"
177179
- Check that grouping are now per package (e.g. `com.alipay.sofa.rraft.option` or `com.google.protobuf`)
178180
2. Click "Generate".

extensions/ql-vscode/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.17.1
1+
v18.15.0

extensions/ql-vscode/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
## [UNRELEASED]
44

55
- It is now possible to show the language of query history items using the `%l` specifier in the `codeQL.queryHistory.format` setting. Note that this only works queries run after this upgrade, and older items will show `unknown` as a language. [#2892](https://github.com/github/vscode-codeql/pull/2892)
6+
- Increase the required version of VS Code to 1.82.0. [#2877](https://github.com/github/vscode-codeql/pull/2877)
7+
- Fix a bug where the query server was restarted twice after configuration changes. [#2884](https://github.com/github/vscode-codeql/pull/2884).
8+
9+
## 1.9.1 - 29 September 2023
10+
11+
- Add warning when using a VS Code version older than 1.82.0. [#2854](https://github.com/github/vscode-codeql/pull/2854)
12+
- Fix a bug when parsing large evaluation log summaries. [#2858](https://github.com/github/vscode-codeql/pull/2858)
13+
- Right-align and format numbers in raw result tables. [#2864](https://github.com/github/vscode-codeql/pull/2864)
14+
- Remove rate limit warning notifications when using Code Search to add repositories to a variant analysis list. [#2812](https://github.com/github/vscode-codeql/pull/2812)
615

716
## 1.9.0 - 19 September 2023
817

0 commit comments

Comments
 (0)