Skip to content

Commit 3bd61ae

Browse files
committed
Merge remote-tracking branch 'origin/main' into koesie10/upgrade-vsce
2 parents 1cb0b0b + 698b6ad commit 3bd61ae

File tree

4 files changed

+283
-63
lines changed

4 files changed

+283
-63
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
strategy:
186186
matrix:
187187
os: [ubuntu-latest, windows-latest]
188-
version: ['v2.7.6', 'v2.8.5', 'v2.9.4', 'v2.10.5', 'v2.11.4', 'nightly']
188+
version: ['v2.7.6', 'v2.8.5', 'v2.9.4', 'v2.10.5', 'v2.11.5', 'nightly']
189189
fail-fast: false
190190
env:
191191
CLI_VERSION: ${{ matrix.version }}

extensions/ql-vscode/src/vscode-tests/ensureCli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const _10MB = _1MB * 10;
3838

3939
// CLI version to test. Hard code the latest as default. And be sure
4040
// to update the env if it is not otherwise set.
41-
const CLI_VERSION = process.env.CLI_VERSION || "v2.11.4";
41+
const CLI_VERSION = process.env.CLI_VERSION || "v2.11.5";
4242
process.env.CLI_VERSION = CLI_VERSION;
4343

4444
// Base dir where CLIs will be downloaded into

extensions/ql-vscode/src/vscode-tests/factories/remote-queries/remote-query-history-item.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { nanoid } from "nanoid";
12
import { RemoteQueryHistoryItem } from "../../../remote-queries/remote-query-history-item";
23
import { QueryStatus } from "../../../query-status";
34

@@ -25,7 +26,7 @@ export function createMockRemoteQueryHistoryItem({
2526
resultCount,
2627
status,
2728
completed: false,
28-
queryId: "queryId",
29+
queryId: nanoid(),
2930
remoteQuery: {
3031
queryName: "query-name",
3132
queryFilePath: "query-file.ql",

0 commit comments

Comments
 (0)