-
Notifications
You must be signed in to change notification settings - Fork 77
chore(deps-dev): bump postcss from 8.5.15 to 8.5.23 in the npm_and_yarn group across 1 directory #523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
chore(deps-dev): bump postcss from 8.5.15 to 8.5.23 in the npm_and_yarn group across 1 directory #523
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -128,7 +128,7 @@ | |
| "knip": "^6.11.0", | ||
| "openapi-typescript": "^7.8.0", | ||
| "pino-pretty": "^13.1.1", | ||
| "postcss": "8.5.15", | ||
| "postcss": "8.5.23", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 package.json now exact-pins postcss to 8.5.23, but bun.lock was not regenerated — it still records postcss@8.5.15 (workspace snapshot at line 101, resolved entry at line 1367). Since the lockfile no longer satisfies the exact package.json pin, Extended reasoning...The bugThis is a dependency-bump PR that only touches Where it shows up
Since Why nothing today catches this
Step-by-step proof
Impact and fixThe immediate PR does not break merge-gating CI (which uses plain |
||
| "server-cli-only": "^0.3.2", | ||
| "tailwindcss": "^4.0.15", | ||
| "typescript": "5.7.3", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing the direct
postcssdevDependency without updatingbun.lockleaves the workspace lock entry and package entry pinned to8.5.15, so the committed dependency graph still does not contain8.5.23. This breaks reproducible installs in contexts that use the lockfile strictly:.github/workflows/sync-infra-specs.ymlrunsbun install --frozen-lockfile, andbun install --helpdefines that flag as disallowing lockfile changes. Please regenerate and commitbun.lockalongside this manifest change.Useful? React with 👍 / 👎.