Update NodeJS dependencies for security patches#245
Merged
data-douser merged 3 commits intomainfrom Apr 13, 2026
Merged
Conversation
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Snapshot WarningsEnsure that dependencies are being submitted on PR branches and consider enabling retry-on-snapshot-warnings. See the documentation for more information and troubleshooting advice. OpenSSF ScorecardScorecard details
Scanned Files
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates NodeJS development dependencies across the monorepo to pick up patch-level security and tooling fixes, and refreshes the generated server bundle artifact accordingly.
Changes:
- Bumped
eslint,prettier, andtypescript-eslintversions in root and workspacepackage.jsonfiles. - Updated testing-related devDependencies (
vitest,@vitest/coverage-v8) and type packages (notably@types/node,@types/vscode). - Regenerated/updated the tracked server bundle output under
server/dist/.
Show a summary per file
| File | Description |
|---|---|
package.json |
Updates root dev tooling versions (eslint/prettier/typescript-eslint). |
package-lock.json |
Locks updated dependency graph reflecting the version bumps. |
server/package.json |
Updates server workspace dev tooling/testing/type versions. |
server/dist/codeql-development-mcp-server.js |
Updated tracked build artifact consistent with dependency updates. |
extensions/vscode/package.json |
Updates VS Code extension workspace dev tooling/testing/type versions. |
client/package.json |
Updates client workspace dev tooling versions (eslint/prettier). |
Copilot's findings
- Files reviewed: 4/7 changed files
- Comments generated: 1
Keep "@types/vscode" at minimum version "^1.110.0" until follow-up "next" release. Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Nathan Randall <70299490+data-douser@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates NodeJS/tooling dependencies across the repo’s workspaces to pick up security patches and routine maintenance releases, along with regenerated lockfile and bundled server artifacts.
Changes:
- Bump lint/format toolchain versions (ESLint, Prettier, typescript-eslint) across the monorepo.
- Update testing/tooling deps (Vitest + coverage, Node/VS Code type packages) and regenerate
package-lock.json. - Regenerate the checked-in server bundle in
server/dist/after dependency changes.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updates root dev-tooling versions used across workspaces. |
| package-lock.json | Regenerated lockfile reflecting updated direct + transitive dependencies. |
| server/package.json | Updates server workspace tooling/test dependencies (ESLint/Prettier/Vitest/@types/node). |
| server/dist/codeql-development-mcp-server.js | Updated bundled server artifact consistent with dependency/tooling updates. |
| client/package.json | Aligns client workspace lint/format tooling versions with repo updates. |
| extensions/vscode/package.json | Aligns VS Code extension workspace tooling/test dependency versions with repo updates. |
Copilot's findings
- Files reviewed: 4/7 changed files
- Comments generated: 1
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.
Dependency updates:
Linting and formatting tools:
eslintto version^10.2.0andprettierto^3.8.2in all relevantpackage.jsonfiles. [1] [2] [3] [4]eslint-config-prettier,eslint-plugin-prettier, andtypescript-eslintto their latest compatible versions where used. [1] [2] [3]Type definitions and TypeScript:
@types/nodeand@types/vscodeto newer versions, improving type coverage and compatibility. [1] [2]typescript-eslintandtypescriptdependencies to the latest patch versions. [1] [2] [3]Testing tools:
@vitest/coverage-v8andvitestto newer versions for improved testing and coverage reporting. [1] [2]These updates are routine maintenance and should not introduce breaking changes, but it's always good to run tests after upgrading dependencies.