fix: resolve high severity dependabot vulnerabilities IN-1189#2004
Merged
Conversation
Signed-off-by: Gašper Grom <gasper.grom@gmail.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates transitive dependencies to remediate high-severity vulnerabilities and includes ancillary configuration changes.
Changes:
- Adds dependency security overrides and regenerates the lockfile.
- Adds Nitro tracing exclusions and ignores Playwright MCP artifacts.
- Reorders frontend development dependencies.
Reviewed changes
Copilot reviewed 3 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
pnpm-workspace.yaml |
Adds security overrides. |
pnpm-lock.yaml |
Resolves patched dependency versions. |
frontend/setup/nitro.ts |
Adds currently unwired trace exclusions. |
frontend/package.json |
Reorders dependencies. |
.gitignore |
Ignores Playwright MCP artifacts. |
Files not reviewed (1)
- pnpm-lock.yaml: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
setup/nitro.ts was never imported by nuxt.config.ts, so its traceOptions.ignore externals (meant to keep @resvg platform binaries out of the server bundle) had no effect. Merged the externals config into setup/caching.ts's nitro object, which is already spread into nuxt.config.ts, and removed the now-redundant setup/nitro.ts file. Signed-off-by: Gašper Grom <gasper.grom@gmail.com>
| const shortCache = 3600; // 1 hour in seconds | ||
|
|
||
| // Production runs on node:24-slim (Debian, glibc) — only the linux-x64-gnu native | ||
| // binary is ever loaded at runtime. Nitro's dependency tracer (nitropack >=2.13) |
| : {}), | ||
| }, | ||
| nitro: { | ||
| externals, |
joanagmaia
approved these changes
Jul 10, 2026
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
pnpm-workspace.yamloverrides:minimatch(9.x line → 9.0.7+, GHSA-23c5/3ppc/7r86),lodash(→ 4.18.1, corrected from Dependabot's own deprecated 4.18.0 target),storybook(8.4.7 instance → 8.6.17), andserialize-javascript(→ 7.0.7, CVE-2026-34043)nuxt,rollup,fast-xml-parser,vite) were investigated and found blocked by a pre-existing pnpm peer-resolution issue unrelated to this diff — deferred as needs-human, not included here.gitignore(+.playwright-mcp) andfrontend/setup/nitro.ts(Nitro trace-ignore config to fix Nuxt server bundle size)Changes
pnpm-workspace.yaml— added/updated 4overridesentries with GHSA references in commentspnpm-lock.yaml— regenerated to resolve the patched versionsfrontend/package.json— cosmetic dependency re-sort frompnpm install(no version changes).gitignore— ignore.playwright-mcpartifactsfrontend/setup/nitro.ts— new Nitro trace-ignore config (unrelated, pre-existing work)