fix(deps): patch postcss XSS Dependabot alert (#42)#32
Merged
Conversation
Adds pnpm override `postcss@<8.5.10` -> `8.5.10`. postcss is purely transitive (no direct deps), so an override is the cleanest fix. The lockfile was on 8.5.9, which is vulnerable to XSS via unescaped </style> in CSS stringify output. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
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
Resolves Dependabot alert #42 —
postcss < 8.5.10, medium severity (XSS via unescaped</style>in CSS stringify output).postcsshas no direct dependents in this monorepo — it's pulled in transitively by tooling (vite, cssnano, autoprefixer, nuxt, etc.). I added a pnpm override (matching the existing pattern used forvite,@hono/node-server, etc. in package.json) to pin all transitive resolutions to8.5.10.Changes
package.json: added"postcss@<8.5.10": "8.5.10"topnpm.overrides.pnpm-lock.yaml: refreshed — everypostcss@*reference now resolves to8.5.10.@tomehq/corefixed group.Test plan
pnpm install— cleangrep postcss@ pnpm-lock.yamlreturns onlypostcss@8.5.10pnpm exec vitest run packages/api packages/core packages/components— 1463/1463 passpnpm build— all publishable packages build clean (cli/core/theme/components/editor/create-tome)🤖 Generated with Claude Code