chore(deps): bump next from 16.1.1 to 16.1.7 in /apps/web#54
Open
dependabot[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): bump next from 16.1.1 to 16.1.7 in /apps/web#54dependabot[bot] wants to merge 1 commit intomainfrom
dependabot[bot] wants to merge 1 commit intomainfrom
Conversation
Bumps [next](https://github.com/vercel/next.js) from 16.1.1 to 16.1.7. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.1.1...v16.1.7) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.7 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
| "minidenticons": "^4.2.1", | ||
| "motion": "^12.23.24", | ||
| "next": "16.1.1", | ||
| "next": "16.1.7", |
Contributor
There was a problem hiding this comment.
Lockfile not updated — security patches not yet effective
The package.json has been bumped to next@16.1.7, but the root-level bun.lock still pins the old version. Specifically, bun.lock contains:
- Line 79:
"next": "16.1.1"(workspace manifest entry) - Line 1974:
"next": ["next@16.1.1", ...] - All
@next/swc-*optional dependencies still at16.1.1
Because Bun installs the exact resolution locked in bun.lock rather than re-resolving from package.json, the five CVEs addressed in 16.1.5–16.1.7 (including CVE-2026-27978, CVE-2026-29057, and others) will not be patched in practice until the lockfile is regenerated.
To fix, run bun install after this package.json change and commit the updated bun.lock.
Prompt To Fix With AI
This is a comment left during a code review.
Path: apps/web/package.json
Line: 47
Comment:
**Lockfile not updated — security patches not yet effective**
The `package.json` has been bumped to `next@16.1.7`, but the root-level `bun.lock` still pins the old version. Specifically, `bun.lock` contains:
- Line 79: `"next": "16.1.1"` (workspace manifest entry)
- Line 1974: `"next": ["next@16.1.1", ...]`
- All `@next/swc-*` optional dependencies still at `16.1.1`
Because Bun installs the exact resolution locked in `bun.lock` rather than re-resolving from `package.json`, the five CVEs addressed in 16.1.5–16.1.7 (including `CVE-2026-27978`, `CVE-2026-29057`, and others) will **not** be patched in practice until the lockfile is regenerated.
To fix, run `bun install` after this `package.json` change and commit the updated `bun.lock`.
How can I resolve this? If you propose a fix, please make it concise.
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.
Bumps next from 16.1.1 to 16.1.7.
Release notes
Sourced from next's releases.
Commits
bdf3e35v16.1.7dc98c04[backport]: fix: patch http-proxy to prevent request smuggling in rewrites (#...9023c0a[backport] Disallow Server Action submissions from privacy-sensitive contexts...36a97b9Allow blocking cross-site dev-only websocket connections from privacy-sensiti...93c3993[backport]: feat(next/image): add lru disk cache and `images.maximumDiskCache...c68d62dBackport documentation fixes for 16.1.x (#90655)5214ac1[backport]: ensure maxPostponedStateSize is always respected (#90060) (#90471)c95e357Backport/docs fixes 16.1.x (#90125)cba6144[backport] Apply server actions transform tonode_modulesin route handlers...3db9063[backport] [Cache Components] Prevent streaming fetch calls from hanging in d...Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.
Greptile Summary
This PR is a Dependabot-generated security bump of
nextfrom16.1.1to16.1.7inapps/web/package.json, addressing multiple high-severity CVEs (including request smuggling viahttp-proxy, Server Action abuse from privacy-sensitive contexts, and cross-site dev WebSocket exposure).Key issue found:
bun.lockfile was not updated alongsidepackage.json. Allnext-related entries in the lockfile (next,@next/env, and all@next/swc-*platform binaries) still reference16.1.1. Because Bun uses the lockfile as the source of truth for installed versions, the security patches introduced in 16.1.5–16.1.7 will not be applied untilbun installis run and the updatedbun.lockis committed.Important Files Changed
nextfrom16.1.1to16.1.7to address multiple security CVEs, but the rootbun.lockwas not updated, so the actual installed version at build/deploy time remains16.1.1until the lockfile is regenerated.Prompt To Fix All With AI
Last reviewed commit: 5b19d9f