Upgrade NodeJS dependencies to latest#156
Merged
data-douser merged 1 commit intomainfrom Mar 23, 2026
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
Routine maintenance PR updating core dev-tooling dependencies (ESLint and TypeScript ESLint) across the monorepo workspaces to keep linting/build tooling current and aligned.
Changes:
- Bumped
eslintto^10.1.0in root, client, server, and VS Code extension workspaces. - Bumped
typescript-eslintto^8.57.1in root, server, and VS Code extension workspaces. - Bumped
@types/adm-zipto^0.5.8in the server workspace and refreshedpackage-lock.jsonaccordingly.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
package.json |
Updates root dev tooling versions (eslint, typescript-eslint). |
client/package.json |
Aligns client workspace ESLint version with repo-wide tooling. |
server/package.json |
Updates server dev tooling (eslint, typescript-eslint) and @types/adm-zip. |
extensions/vscode/package.json |
Aligns VS Code extension workspace dev tooling versions. |
package-lock.json |
Lockfile refresh to capture the updated versions and transitive dependency changes. |
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 development dependencies across multiple workspace
package.jsonfiles to keep the project up to date with the latest versions. The main focus is on upgrading ESLint and TypeScript-related packages to their newest releases, which helps ensure compatibility, improved linting, and bug fixes.Dependency updates:
eslintfrom^10.0.3to^10.1.0inpackage.json,client/package.json,server/package.json, andextensions/vscode/package.json. [1] [2] [3] [4]typescript-eslintfrom^8.57.0to^8.57.1inpackage.json,server/package.json, andextensions/vscode/package.json. [1] [2] [3]@types/adm-zipfrom^0.5.7to^0.5.8inserver/package.json.These updates are routine maintenance to ensure the project uses the latest stable versions of its key development tools.
This PR supersedes any pending PRs created by Dependabot.