This repository was archived by the owner on Jul 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): bump the npm-web-nonbreaking group across 1 directory with 12 updates #271
Open
dependabot
wants to merge
1
commit into
main
Choose a base branch
from
dependabot/npm_and_yarn/web/npm-web-nonbreaking-3938134758
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,33 +18,33 @@ | |
| "@react-three/drei": "^10.0.0", | ||
| "@react-three/fiber": "^9.6.1", | ||
| "@react-three/rapier": "^2.1.0", | ||
| "framer-motion": "^12.40.0", | ||
| "fumadocs-core": "^16.9.3", | ||
| "framer-motion": "^12.42.2", | ||
| "fumadocs-core": "^16.10.7", | ||
| "fumadocs-mdx": "^14.3.2", | ||
| "fumadocs-ui": "^16.9.3", | ||
| "next": "^16.2.7", | ||
| "fumadocs-ui": "^16.10.7", | ||
|
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. Suggestion: Heads-up: fumadocs-ui 16.10.x changes the default TOC and translations API Non-blocking heads-up, verified against the changelog embedded in the PR description. fumadocs-ui moves 16.9.3 → 16.10.7, which crosses two behavioral changes:
This stays within a semver minor, so no action is strictly required, but if the docs site customizes the TOC variant or provides custom translation strings, it's worth a quick visual check after the bump. fumadocs-core is bumped in lockstep (16.9.3 → 16.10.7), which is the correct pairing. |
||
| "next": "^16.2.10", | ||
| "react": "^19.2.7", | ||
| "react-dom": "^19.2.7", | ||
| "three": "^0.182.0", | ||
| "zustand": "^5.0.14" | ||
| }, | ||
| "devDependencies": { | ||
| "@eslint/js": "^9.39.4", | ||
| "@next/eslint-plugin-next": "16.2.7", | ||
| "@tailwindcss/postcss": "^4.3.0", | ||
| "@types/node": "^22.19.20", | ||
| "@next/eslint-plugin-next": "16.2.10", | ||
| "@tailwindcss/postcss": "^4.3.2", | ||
| "@types/node": "^22.20.0", | ||
| "@types/react": "^19.2.17", | ||
| "@types/react-dom": "^19.1.0", | ||
| "@types/three": "^0.182.0", | ||
| "eslint": "^9.39.4", | ||
| "eslint-config-next": "^16.2.7", | ||
| "eslint-config-next": "^16.2.10", | ||
| "eslint-plugin-react": "7.37.5", | ||
| "eslint-plugin-react-hooks": "7.1.1", | ||
| "globals": "17.6.0", | ||
| "postcss": "^8.5.15", | ||
| "tailwindcss": "^4.3.0", | ||
| "globals": "17.7.0", | ||
| "postcss": "^8.5.16", | ||
| "tailwindcss": "^4.3.2", | ||
| "typescript": "^5.9.0", | ||
| "typescript-eslint": "^8.60.1", | ||
| "typescript-eslint": "^8.62.1", | ||
| "vite": "6.4.3" | ||
| } | ||
| } | ||
Oops, something went wrong.
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.
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.
Critical: Lockfile not updated — pnpm --frozen-lockfile will fail CI
web/package.json bumps 12 specifiers, but the PR does not include the matching lockfile update. This repo is a pnpm workspace (pnpm-workspace.yaml includes
web; packageManager pnpm@10.12.4) with a single root pnpm-lock.yaml and no lockfile under /web. I verified pnpm-lock.yaml at the PR head ref — itsweb:importer still records the OLD specifiers/versions, e.g.:listChangedFiles confirms only web/package.json changed, so the lockfile genuinely was not regenerated.
Impact: both CI jobs in .github/workflows/ci.yml (desktop-checks and frontend-checks) run
pnpm install --frozen-lockfile, which refuses to install on a manifest/lockfile specifier mismatch (ERR_PNPM_OUTDATED_LOCKFILE). CI fails at the install step, so this cannot merge as-is; force-merging would break frozen installs for all consumers.Likely cause: .github/dependabot.yml registers /web as its own
package-ecosystem: npmdirectory; in a pnpm workspace the shared root lockfile then is not updated alongside the manifest.Suggested fix:
pnpm install --lockfile-only(orpnpm install --no-frozen-lockfile), then commit pnpm-lock.yaml./directory entry) so future update PRs include the lockfile.