Upgrade NodeJS dependencies for v2.25.5 release prep#285
Merged
Conversation
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF ScorecardScorecard details
Scanned Files
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR prepares the v2.25.5 release by updating Node.js development tooling dependencies (TypeScript linting, ESLint, and test tooling) across the repo workspaces, and regenerating the bundled server output to reflect the updated dependency graph.
Changes:
- Bump
eslintandtypescript-eslintversions across the root, server, and VS Code extension workspaces. - Bump
@types/node,vitest, and@vitest/coverage-v8where used (server + extension), plus a patch update tomochain the extension. - Refresh
package-lock.jsonand rebuildserver/dist/**to align with the upgraded dependencies.
Show a summary per file
| File | Description |
|---|---|
package.json |
Updates root dev tooling versions (eslint, typescript-eslint) used for repo-wide linting/type tooling. |
package-lock.json |
Locks the upgraded toolchain versions and corresponding transitive updates across workspaces. |
server/package.json |
Updates server workspace dev tooling (@types/node, eslint, typescript-eslint, vitest + coverage). |
server/dist/codeql-development-mcp-server.js |
Regenerated server bundle so published dist/ matches updated dependency versions. |
extensions/vscode/package.json |
Updates VS Code extension workspace dev tooling (@types/node, eslint, typescript-eslint, vitest + coverage, mocha). |
Copilot's findings
- Files reviewed: 3/6 changed files
- Comments generated: 0
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.
This pull request updates several NodeJS development dependencies across the project to their latest patch or minor versions. These updates focus on tools related to TypeScript, linting, and testing, ensuring better compatibility and access to recent bug fixes and features.
Dependency updates:
TypeScript and Node.js types:
@types/nodefrom^25.6.0to^25.9.1in bothserver/package.jsonandextensions/vscode/package.jsonfor improved type definitions. [1] [2]typescript-eslintfrom^8.58.2to^8.60.0in all relevantpackage.jsonfiles for enhanced TypeScript linting support. [1] [2] [3]Linting and formatting tools:
eslintfrom^10.2.1to^10.4.0in all relevantpackage.jsonfiles for improved linting capabilities. [1] [2] [3]Testing tools:
@vitest/coverage-v8from^4.1.4to^4.1.7andvitestfrom^4.1.4to^4.1.7in bothserver/package.jsonandextensions/vscode/package.jsonfor better test coverage and reliability. [1] [2]mochafrom^11.7.5to^11.7.6inextensions/vscode/package.jsonfor the latest bug fixes.