Skip to content

Commit 297260a

Browse files
Merge pull request #2828 from github/v1.9.0
Release v1.9.0
2 parents d3df14f + 26450e9 commit 297260a

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
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: 5 additions & 5 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

@@ -113,7 +113,7 @@ jobs:
113113

114114
- uses: actions/setup-node@v3
115115
with:
116-
node-version: '16.17.1'
116+
node-version: '18.15.0'
117117
cache: 'npm'
118118
cache-dependency-path: extensions/ql-vscode/package-lock.json
119119

@@ -147,7 +147,7 @@ jobs:
147147

148148
- uses: actions/setup-node@v3
149149
with:
150-
node-version: '16.17.1'
150+
node-version: '18.15.0'
151151
cache: 'npm'
152152
cache-dependency-path: extensions/ql-vscode/package-lock.json
153153

@@ -215,7 +215,7 @@ jobs:
215215

216216
- uses: actions/setup-node@v3
217217
with:
218-
node-version: '16.17.1'
218+
node-version: '18.15.0'
219219
cache: 'npm'
220220
cache-dependency-path: extensions/ql-vscode/package-lock.json
221221

.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: |

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CodeQL for Visual Studio Code: Changelog
22

3-
## [UNRELEASED]
3+
## 1.9.0 - 19 September 2023
44

55
- Release the [CodeQL model editor](https://codeql.github.com/docs/codeql/codeql-for-visual-studio-code/using-the-codeql-model-editor) to create CodeQL model packs for Java frameworks. Open the editor using the "CodeQL: Open CodeQL Model Editor (Beta)" command. [#2823](https://github.com/github/vscode-codeql/pull/2823)
66

extensions/ql-vscode/package-lock.json

Lines changed: 3 additions & 3 deletions
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "CodeQL for Visual Studio Code",
55
"author": "GitHub",
66
"private": true,
7-
"version": "1.8.13",
7+
"version": "1.9.0",
88
"publisher": "GitHub",
99
"license": "MIT",
1010
"icon": "media/VS-marketplace-CodeQL-icon.png",
@@ -14,7 +14,7 @@
1414
},
1515
"engines": {
1616
"vscode": "^1.67.0",
17-
"node": "^16.17.1",
17+
"node": "^18.15.0",
1818
"npm": ">=7.20.6"
1919
},
2020
"categories": [

extensions/ql-vscode/test/unit-tests/variant-analysis/gh-api/gh-api-client.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const controllerRepoId = variantAnalysisJson_response.body.controller_repo.id;
2121
const variantAnalysisId = variantAnalysisJson_response.body.id;
2222
const repoTaskId = variantAnalysisRepoJson_response.body.repository.id;
2323

24-
describe("submitVariantAnalysis", () => {
24+
describe.skip("submitVariantAnalysis", () => {
2525
it("returns the submitted variant analysis", async () => {
2626
await mockServer.loadScenario("mrva-problem-query-success");
2727

@@ -35,7 +35,7 @@ describe("submitVariantAnalysis", () => {
3535
});
3636
});
3737

38-
describe("getVariantAnalysis", () => {
38+
describe.skip("getVariantAnalysis", () => {
3939
it("returns the variant analysis", async () => {
4040
await mockServer.loadScenario("mrva-problem-query-success");
4141

@@ -50,7 +50,7 @@ describe("getVariantAnalysis", () => {
5050
});
5151
});
5252

53-
describe("getVariantAnalysisRepo", () => {
53+
describe.skip("getVariantAnalysisRepo", () => {
5454
it("returns the variant analysis repo task", async () => {
5555
await mockServer.loadScenario("mrva-problem-query-success");
5656

@@ -66,7 +66,7 @@ describe("getVariantAnalysisRepo", () => {
6666
});
6767
});
6868

69-
describe("getRepositoryFromNwo", () => {
69+
describe.skip("getRepositoryFromNwo", () => {
7070
it("returns the repository", async () => {
7171
await mockServer.loadScenario("mrva-problem-query-success");
7272

0 commit comments

Comments
 (0)