Upgrade CodeQL to v2.24.3 and upgrade NodeJS dependencies to latest#114
Merged
data-douser merged 3 commits intomainfrom Mar 9, 2026
Merged
Upgrade CodeQL to v2.24.3 and upgrade NodeJS dependencies to latest#114data-douser merged 3 commits intomainfrom
v2.24.3 and upgrade NodeJS dependencies to latest#114data-douser merged 3 commits intomainfrom
Conversation
Contributor
Dependency ReviewThe following issues were found:
License Issuespackage-lock.json
OpenSSF ScorecardScorecard details
Scanned Files
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository to CodeQL CLI v2.24.3 and refreshes Node.js dependency versions/lockfiles so CI, the server bundle, and packaged CodeQL packs stay in sync with the new CLI.
Changes:
- Bumped CodeQL version references across the repo (including
.codeql-version, package versions, and CodeQL pack versions) from2.24.2→2.24.3. - Regenerated CodeQL pack lock files (notably for JavaScript examples) and added a new script to upgrade pack dependencies via
codeql pack upgrade. - Updated Node.js devDependencies (e.g.,
eslint,@types/node) and refreshedpackage-lock.json, with correspondingserver/dist/**rebuild output and updated SARIF fixture.
Reviewed changes
Copilot reviewed 30 out of 33 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
server/src/codeql-development-mcp-server.ts |
Bumps server-reported version constant to 2.24.3. |
server/scripts/upgrade-packs.sh |
Adds a dedicated script to regenerate pack lockfiles using codeql pack upgrade. |
server/scripts/update-release-version.sh |
Tweaks CLI version validation logging and invocation. |
server/ql/**/tools/{src,test}/codeql-pack.yml |
Bumps tool pack versions to 2.24.3 across languages. |
server/ql/javascript/examples/{src,test}/codeql-pack.lock.yml |
Updates JS examples pack dependency locks to newer compatible versions. |
server/package.json |
Bumps package version and devDependency versions. |
server/dist/codeql-development-mcp-server.js |
Updates committed build artifact to reflect dependency/version changes. |
package.json |
Bumps repo version and eslint devDependency. |
package-lock.json |
Refreshes workspace versions and dependency graph after upgrades. |
extensions/vscode/package.json |
Bumps extension version and devDependency versions. |
client/package.json |
Bumps client version and eslint devDependency. |
client/integration-tests/**/results.sarif |
Updates SARIF fixture to reflect CodeQL 2.24.3. |
.github/workflows/update-codeql.yml |
Switches automation from “install packs” to “upgrade packs” for lockfile regeneration. |
.codeql-version |
Updates pinned CodeQL CLI version to v2.24.3. |
e233643 to
8c98156
Compare
34 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary of Changes
This pull request upgrades the CodeQL CLI and related dependencies from version 2.24.2 to 2.24.3 throughout the project. It also updates several devDependencies (such as
eslintand@types/node), refreshes CodeQL pack lock files with newer versions, and adjusts the CI workflow to use an updated script for managing CodeQL pack dependencies.Outline of Changes
Dependency and Version Upgrades:
Upgraded CodeQL CLI and all related package versions from 2.24.2 to 2.24.3 in
.codeql-version, allpackage.jsonfiles, and allcodeql-pack.ymlfiles across the repository. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16]Updated QL pack lock files to the latest dependency versions for JavaScript examples and tests, ensuring all CodeQL packs are up to date.
Upgraded devDependencies for
eslint(from 10.0.2 to 10.0.3) and@types/node(from 25.3.3 to 25.3.5) in all relevantpackage.jsonfiles. [1] [2] [3] [4]Workflow and Automation Improvements:
upgrade-packs.shinstead ofinstall-packs.sh) for upgrading CodeQL pack dependencies, and clarified workflow step descriptions to reflect the upgrade process. [1] [2]Test Artifacts: