Skip to content

chore(deps): bump next from 16.2.9 to 16.2.11 - #1293

Merged
krishagel merged 2 commits into
devfrom
dependabot/npm_and_yarn/next-16.2.11
Jul 27, 2026
Merged

chore(deps): bump next from 16.2.9 to 16.2.11#1293
krishagel merged 2 commits into
devfrom
dependabot/npm_and_yarn/next-16.2.11

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 23, 2026

Copy link
Copy Markdown
Contributor

Bumps next from 16.2.9 to 16.2.11.

Release notes

Sourced from next's releases.

v16.2.11

This release contains security fixes for the following advisories:

High:

Moderate:

v16.2.10

Contains no changes except publishing @next/swc-wasm-web which was accidentally not published since 16.2.4.

Commits
  • 9beca08 v16.2.11
  • 3c48c7a [16.x] Fix Turbopack middleware matcher with i18n single locale
  • ac1eff3 [16.x] Improve performance of checking valid MPA form submissions
  • 9a4651e [16.x] Enforce serverActions.bodySizeLimit for Server Actions in Edge runtime
  • b512063 [16.x] Set correct origin for internal redirects in custom server
  • d303326 [16.x] Ensure exotic rewrite param values are properly encoded
  • 73b9487 [16.x] fix(fetch-cache): key fetch(Request, init) by the effective request
  • bf9d17f [16.x] fix(incremental-cache): byte-exact fetch cache key for binary bodies
  • fe28768 [16.x] fix(next/image): improve performance of detectContentType()
  • d8afb8d [16.x] Performance improvements when decoding React Server function payloads
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 23, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: cfafb691a9

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread package.json
"mermaid": "^11.12.1",
"nanoid": "^5.1.6",
"next": "16.2.9",
"next": "16.2.11",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Update the Bun lockfile with the Next.js bump

This changes package.json to require next 16.2.11, but bun.lock still pins the root manifest and the next package/SWC optional deps to 16.2.9. I checked Bun's local help for --frozen-lockfile (Disallow changes to lockfile), and the repo's CI/Docker paths install with bun install --frozen-lockfile (.github/workflows/ci.yml and Dockerfile), so those fresh installs need a lockfile update and will fail rather than applying this security bump.

Useful? React with 👍 / 👎.

@krishagel krishagel added the pr-fix-stuck pr-fix routine gave up — human attention needed label Jul 23, 2026 — with Claude

Copy link
Copy Markdown
Member

🤖 pr-fix routine: blocked, not by missing feedback

I diagnosed the failing checks (Test, Lint, and Type Check, Unified Content PostgreSQL Lifecycle, Validate CDK Infrastructure, claude-review) — they all fail at the same step:

error: lockfile had changes, but lockfile is frozen
note: try re-running without --frozen-lockfile and commit the updated lockfile

Root cause: this PR bumps next from 16.2.916.2.11 in package.json, but bun.lock still pins next (and its @next/swc-* optional deps) to 16.2.9. CI installs with bun install --frozen-lockfile, so it fails until bun.lock is regenerated. Codex's automated review already flagged this exact issue in an inline comment on package.json:190.

Why I can't fix it myself: the fix requires running bun install to re-resolve next@16.2.11 and update the lockfile's hashes. This routine's execution environment has no network egress to registry.npmjs.org — direct requests and requests through the configured proxy both return 403 Host not in allowlist. I can't safely hand-edit bun.lock (wrong sha512 hashes would silently corrupt installs), so I have no way to regenerate it here.

This is likely the same root cause behind the other dependency-bump PRs in this repo already carrying pr-fix-stuck (#1214, #1275, #1258, #1256, #1211, #1212, #1213, #1215, #1209, #1216, #1217, #1218, #1076) — they're probably all blocked on the same "no npm registry access" limitation, not on missing information.

To unblock: run bun install locally (with real npm registry access) on this branch, commit the updated bun.lock, and push. Or comment ·@·d·ependabot r·ecreate to have Dependabot regenerate the lockfile itself. Once CI is green, remove pr-fix-stuck if you'd like the routine to re-verify.

If you'd like, it may also be worth checking whether this routine's network egress allowlist can be extended to include registry.npmjs.org — that would let it auto-fix this whole class of dependency-bump PRs going forward.


Generated by Claude Code

dependabot Bot and others added 2 commits July 27, 2026 11:31
Bumps [next](https://github.com/vercel/next.js) from 16.2.9 to 16.2.11.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v16.2.9...v16.2.11)

---
updated-dependencies:
- dependency-name: next
  dependency-version: 16.2.11
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Dependabot bumped package.json without regenerating the bun lockfile
(bun.lock is not natively supported by dependabot), so CI fails at
bun install --frozen-lockfile. Regenerated with bun 1.2.23 to match
the bun-version pinned in CI.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@krishagel
krishagel force-pushed the dependabot/npm_and_yarn/next-16.2.11 branch from d5bf01e to 247b28b Compare July 27, 2026 19:01
@krishagel
krishagel merged commit de2da02 into dev Jul 27, 2026
8 checks passed
@krishagel krishagel added pr-fix-done pr-fix routine processed and PR is clean and removed pr-fix-stuck pr-fix routine gave up — human attention needed labels Jul 27, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/next-16.2.11 branch July 27, 2026 19:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code pr-fix-done pr-fix routine processed and PR is clean

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant