You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Three review rounds turned up these:
- Concurrent-restart race in extension.ts where startClient read the
module-level `client` after awaiting startup; a parallel stopClient
could clear it before the post-start wiring ran. Captures the client
in a local and checks identity after the await.
- whatsNew lexicographic prerelease compare misranked rc.10 < rc.2
(so a user on rc.2 would miss the rc.10 upgrade toast). Replaced
with semver §11.4 per-identifier compare (numeric segments compare
numerically, longer set wins on tie).
- providers.ts `**` glob emitted `.*` and crossed segment boundaries —
`**/Dockerfile` would match `myDockerfile`. `**/` now translates to
`(?:.*/)?`.
- scanOnSave propagated scan rejections as unhandled promise rejections
(onDidSaveTextDocument is fire-and-forget). Added optional `onError`
hook wired to clientLog.
- scanWorkspace command rejection now goes through a `runScanCommand`
wrapper that logs and shows a Pipeline-Check-branded toast instead
of VS Code's generic "Command failed".
Housekeeping:
- log.setLogChannel signature widened to accept `undefined` (drops the
`as unknown as OutputChannel` test cast).
- manifest.test.ts welcome-link regex now captures dotted command IDs.
- workspaceScan and navigate test names/coverage updated to match what
they actually test, with new sibling tests for the propagation paths
(findScannableFiles rejection, two-finding strict-advance).
- Test stub reset consistency in codeLens / findingsView (full
resetStubState in beforeEach).
- codeql.yml cleanup — drops template scaffolding, keeps the same
three languages and the pinned action SHAs.
- Two void-prefix consistency fixes on showInformationMessage in
extension.ts.
Unit tests: 245 → 254 (+9). Typecheck and lint clean.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
# required to fetch internal or private CodeQL packs
37
23
packages: read
38
-
39
-
# only required for workflows in private repositories
40
24
actions: read
41
25
contents: read
42
-
43
26
strategy:
44
27
fail-fast: false
45
28
matrix:
46
-
include:
47
-
- language: actions
48
-
build-mode: none
49
-
- language: javascript-typescript
50
-
build-mode: none
51
-
- language: python
52
-
build-mode: none
53
-
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
54
-
# Use `c-cpp` to analyze code written in C, C++ or both
55
-
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
56
-
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
57
-
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
58
-
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
59
-
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
60
-
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
# If you wish to specify custom queries, you can do so here or in a config file.
80
-
# By default, queries listed here will override any specified in a config file.
81
-
# Prefix the list here with "+" to use these queries and those in the config file.
82
-
83
-
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
84
-
# queries: security-extended,security-and-quality
85
-
86
-
# If the analyze step fails for one of the languages you are analyzing with
87
-
# "We were unable to automatically build your code", modify the matrix above
88
-
# to set the build mode to "manual" for that language. Then modify this step
89
-
# to build your code.
90
-
# ℹ️ Command-line programs to run using the OS shell.
91
-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
92
-
- name: Run manual build steps
93
-
if: matrix.build-mode == 'manual'
94
-
shell: bash
95
-
run: |
96
-
echo 'If you are using a "manual" build mode for one or more of the' \
97
-
'languages you are analyzing, replace this with the commands to build' \
0 commit comments