Skip to content

chore: bump next from 16.2.1 to 16.2.6#373

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/next-16.2.6
Open

chore: bump next from 16.2.1 to 16.2.6#373
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/next-16.2.6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 12, 2026

Copy link
Copy Markdown
Contributor

Bumps next from 16.2.1 to 16.2.6.

Release notes

Sourced from next's releases.

v16.2.6

This release contains security fixes for the following advisories:

High:

Moderate:

Low:

v16.2.5

This release contains security fixes for the following advisories:

High:

Moderate:

Low:

v16.2.4

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • chore: Bump reqwest to 0.13.2 (Fixes Google Fonts with Turbopack for Windows on ARM64) (#92713)

... (truncated)

Commits
  • ee6e79b v16.2.6
  • afa053d Turbopack: Match proxy matchers with webpack implementation (#93594)
  • 97a154e Turbopack: Fix middleware matcher suffix (#93590)
  • 83899bc [backport] Disable build caches for production/staging/force-preview deploys ...
  • 7b222b9 [backport][test] Pin package manager to patch versions (#93595)
  • a8dc24f [backport] Turbopack: more strict vergen setup (#93587)
  • 766148f v16.2.5
  • 0dd9483 fix: add explicit checks for RSC header (#83) (#98)
  • d166096 fix proxy matching for segment prefetch URLs (#89) (#96)
  • 9d50c0b Strip next-resume header from incoming requests (#92)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for next since your current version.


Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will 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.

Summary by cubic

Upgrade next from 16.2.1 to 16.2.6 to apply upstream security fixes (middleware bypass, DoS, XSS) and patch updates. No app code changes.

  • Dependencies
    • Updated next in example/nextjs/package.json.
    • Refreshed pnpm-lock.yaml (new @next/env, @next/swc-*, and minor transitive bumps like postcss and caniuse-lite).

Written for commit 5aa8a7f. Summary will update on new commits.

Bumps [next](https://github.com/vercel/next.js) from 16.2.1 to 16.2.6.
- [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.2.1...v16.2.6)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 12, 2026
@sonarqubecloud

Copy link
Copy Markdown

@github-actions

Copy link
Copy Markdown
Contributor

Deploy preview for team-scope-test ready!

Project:team-scope-test
Status: ✅  Deploy successful!
Preview URL:https://team-scope-test-q51zjp7p1-dietfriends.vercel.app
Latest Commit:5aa8a7f

Deployed with vercel-action

@github-actions

github-actions Bot commented May 12, 2026

Copy link
Copy Markdown
Contributor

Deploy preview for zeit-now-deployment-action-example-angular ready!

Project:zeit-now-deployment-action-example-angular
Status: ✅  Deploy successful!
Preview URL:https://zeit-now-deployment-action-example-angular-pqmr10w7e.vercel.app
Latest Commit:5aa8a7f
Alias:https://staging.angular.vercel-action.amond.dev
Alias:https://pr-373.angular.vercel-action.amond.dev

Deployed with vercel-action

@cubic-dev-ai cubic-dev-ai 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.

No issues found across 2 files

Architecture diagram
sequenceDiagram
    participant Client as Browser / HTTP Client
    participant Middleware as Next.js Middleware
    participant AppRouter as App Router (Server)
    participant PagesRouter as Pages Router (Server)
    participant RSC as React Server Components
    participant Cache as HTTP / RSC Cache
    participant ImageAPI as Image Optimization API
    participant WS as WebSocket Server

    Note over Client,WS: Critical security boundaries affected by this bump

    Client->>Middleware: HTTP Request
    Middleware->>Middleware: CHANGED: Evaluate matcher rules (GHSA-267c, GHSA-26hh, GHSA-492v, GHSA-36qx)
    alt Bypass attempt via segment-prefetch route
        Middleware->>Middleare: NEW: Reject prefetch bypass (GHSA-267c / GHSA-26hh)
    else Bypass attempt via dynamic route param injection
        Middleware->>Middleare: NEW: Validate dynamic params (GHSA-492v)
    else i18n-based proxy bypass (Pages Router)
        Middleware->>Middleare: NEW: Enforce i18n locale scope (GHSA-36qx)
    else Legitimate request
        Middleware->>AppRouter: Forward to App Router
    end

    AppRouter->>RSC: Render Server Component
    RSC->>RSC: CHANGED: Validate RSC content-type header (GHSA-wfc6, GHSA-8h8q)
    RSC->>Cache: CHANGED: Cache-busting key collision fix (GHSA-vfv6)
    RSC->>Cache: CHANGED: Guard against cache poisoning via redirects (GHSA-3g8h)
    RSC-->>AppRouter: RSC payload
    AppRouter-->>Client: Response with CSP nonce
    Note over AppRouter,Client: CHANGED: Proper CSP nonce handling (GHSA-ffhc)

    alt beforeInteractive scripts with untrusted input
        AppRouter->>AppRouter: NEW: Sanitize script sources (GHSA-gx5p)
    end

    Client->>ImageAPI: Image optimization request
    ImageAPI->>ImageAPI: CHANGED: Rate-limit / throttle (GHSA-h64f)

    Client->>WS: WebSocket upgrade request
    WS->>WS: CHANGED: Validate origin / prevent SSRF (GHSA-c4j6)

    Client->>AppRouter: Connection flood attempt
    AppRouter->>AppRouter: CHANGED: Connection pool limits (GHSA-mg66)

    Note over Client,WS: All fixes are backported without API changes
Loading

Requires human review: This is a production dependency update for Next.js containing multiple security fixes, and even though it is a patch bump, applying security patches automatically carries risk of breaking changes or regressions that warrant human review.

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants