Open
Conversation
Bumps [next](https://github.com/vercel/next.js) from 14.2.3 to 15.5.14. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v14.2.3...v15.5.14) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.14 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
✅ Deploy Preview for alloradocs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
1 issue found across 2 files
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="package.json">
<violation number="1" location="package.json:4">
P0: Upgrading to Next.js 15 without also upgrading `nextra` and `nextra-theme-docs` from v2 to at least v3 (or v4) will almost certainly break the build. Nextra 2.x was designed for Next.js 13/14; the Nextra project itself couples Next.js 15 support with Nextra 3+. Either hold `next` at v14, or upgrade `nextra`/`nextra-theme-docs` alongside this change.</violation>
</file>
Architecture diagram
sequenceDiagram
participant Client as Browser/Client
participant Next as Next.js Server
participant Cache as LRU Disk Cache
participant Proxy as Rewrites (http-proxy)
participant Upstream as Origin/Upstream
Note over Client, Upstream: Next.js 15.5.14 Runtime Flow Changes
rect rgb(240, 240, 240)
Note right of Next: Image Optimization Flow
Client->>Next: GET /_next/image?url=...
Next->>Cache: NEW: Check LRU Disk Cache
alt Cache Miss
Next->>Next: Optimize Image
Next->>Cache: NEW: Store image (respects images.maximumDiskCacheSize)
else Cache Hit
Cache-->>Next: Return cached file
end
Next-->>Client: 200 OK (Optimized Image)
end
rect rgb(230, 240, 255)
Note right of Next: Secure Rewrite Flow (CVE-2026-29057)
Client->>Next: Request matching a 'rewrite'
Next->>Proxy: Forward request logic
Proxy->>Proxy: CHANGED: Prevent request smuggling (patched http-proxy)
Proxy->>Upstream: Forwarded Request
Upstream-->>Proxy: Response
Proxy-->>Next: Response
Next-->>Client: Final Response
end
rect rgb(240, 255, 240)
Note right of Next: Pages Router Data Flow
Client->>Next: GET /_next/data/ (JSON for Client Navigation)
Next->>Next: Execute getServerSideProps/getStaticProps
Next->>Next: CHANGED: Calculate Content-Length & ETag
Next-->>Client: 200 OK (JSON with restored headers)
end
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| "dependencies": { | ||
| "katex": "^0.16.11", | ||
| "next": "^14.2.3", | ||
| "next": "^15.5.14", |
There was a problem hiding this comment.
P0: Upgrading to Next.js 15 without also upgrading nextra and nextra-theme-docs from v2 to at least v3 (or v4) will almost certainly break the build. Nextra 2.x was designed for Next.js 13/14; the Nextra project itself couples Next.js 15 support with Nextra 3+. Either hold next at v14, or upgrade nextra/nextra-theme-docs alongside this change.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At package.json, line 4:
<comment>Upgrading to Next.js 15 without also upgrading `nextra` and `nextra-theme-docs` from v2 to at least v3 (or v4) will almost certainly break the build. Nextra 2.x was designed for Next.js 13/14; the Nextra project itself couples Next.js 15 support with Nextra 3+. Either hold `next` at v14, or upgrade `nextra`/`nextra-theme-docs` alongside this change.</comment>
<file context>
@@ -1,7 +1,7 @@
"dependencies": {
"katex": "^0.16.11",
- "next": "^14.2.3",
+ "next": "^15.5.14",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
</file context>
Suggested change
| "next": "^15.5.14", | |
| "next": "^14.2.3", |
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 14.2.3 to 15.5.14.
Release notes
Sourced from next's releases.
Commits
d7b012dv15.5.142b05251[backport] feat(next/image): add lru disk cache and `images.maximumDiskCacheS...f88cee9Backport: Fix(pages-router): restore Content-Length and ETag for /_next/data/...cfd5f53v15.5.1315f2891[backport]: fix: patch http-proxy to prevent request smuggling in rewrites (#...d23f41cv15.5.128e75765fix unlock in publish-native6cef992[backport] normalize CRLF line endings in jscodeshift tests on Windows (#8800...7a94645Apply needs for publishReleasebbfd4e3v15.5.11Dependabot 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.
Summary by cubic
Upgrade
nextfrom 14.2.3 to 15.5.14 to pick up security fixes and improved image caching. No app code changes included.Bug Fixes
next/imagewithimages.maximumDiskCacheSize./_next/data/JSON.Dependencies
nextto15.5.14.styled-jsx@5.1.6, SWC binaries@next/swc-*15.5.14,@swc/helpers@0.5.15.sharp@^0.34via Next for image optimization.Written for commit b48b26b. Summary will update on new commits.