Skip to content

Commit

Permalink
Merge pull request #2828 from github/v1.9.0
Browse files Browse the repository at this point in the history
Release v1.9.0
  • Loading branch information
robertbrignull authored Sep 19, 2023
2 parents d3df14f + 26450e9 commit 297260a
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cli-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.17.1'
node-version: '18.15.0'
cache: 'npm'
cache-dependency-path: extensions/ql-vscode/package-lock.json

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.17.1'
node-version: '18.15.0'
cache: 'npm'
cache-dependency-path: extensions/ql-vscode/package-lock.json

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.17.1'
node-version: '18.15.0'
cache: 'npm'
cache-dependency-path: extensions/ql-vscode/package-lock.json

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.17.1'
node-version: '18.15.0'
cache: 'npm'
cache-dependency-path: extensions/ql-vscode/package-lock.json

Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.17.1'
node-version: '18.15.0'
cache: 'npm'
cache-dependency-path: extensions/ql-vscode/package-lock.json

Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.17.1'
node-version: '18.15.0'
cache: 'npm'
cache-dependency-path: extensions/ql-vscode/package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.17.1'
node-version: '18.15.0'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion extensions/ql-vscode/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.17.1
v18.15.0
2 changes: 1 addition & 1 deletion extensions/ql-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CodeQL for Visual Studio Code: Changelog

## [UNRELEASED]
## 1.9.0 - 19 September 2023

- 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)

Expand Down
6 changes: 3 additions & 3 deletions extensions/ql-vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions extensions/ql-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "CodeQL for Visual Studio Code",
"author": "GitHub",
"private": true,
"version": "1.8.13",
"version": "1.9.0",
"publisher": "GitHub",
"license": "MIT",
"icon": "media/VS-marketplace-CodeQL-icon.png",
Expand All @@ -14,7 +14,7 @@
},
"engines": {
"vscode": "^1.67.0",
"node": "^16.17.1",
"node": "^18.15.0",
"npm": ">=7.20.6"
},
"categories": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const controllerRepoId = variantAnalysisJson_response.body.controller_repo.id;
const variantAnalysisId = variantAnalysisJson_response.body.id;
const repoTaskId = variantAnalysisRepoJson_response.body.repository.id;

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

Expand All @@ -35,7 +35,7 @@ describe("submitVariantAnalysis", () => {
});
});

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

Expand All @@ -50,7 +50,7 @@ describe("getVariantAnalysis", () => {
});
});

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

Expand All @@ -66,7 +66,7 @@ describe("getVariantAnalysisRepo", () => {
});
});

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

Expand Down

0 comments on commit 297260a

Please sign in to comment.