Skip to content

Commit c7d6425

Browse files
authored
fix for Next.js CVE-2026-23869 (#1184)
1 parent e814a63 commit c7d6425

10 files changed

Lines changed: 161 additions & 403 deletions

File tree

.changeset/fair-nails-retire.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"@opennextjs/cloudflare": patch
3+
---
4+
5+
fix for Next.js CVE-2026-23869
6+
7+
See the [CVE-2026-23869 summary](https://vercel.com/changelog/summary-of-cve-2026-23869) for details.
8+
9+
This CVE is fixed by bumping the minium Next.js release version to 15.5.15/16.2.3

examples/bugs/gh-119/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"cf-typegen": "wrangler types --env-interface CloudflareEnv"
1515
},
1616
"dependencies": {
17-
"next": "15.5.10",
17+
"next": "15.5.15",
1818
"react-dom": "^18.3.1",
1919
"react": "^18.3.1"
2020
},

examples/bugs/gh-219/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"nanoid": "^5.0.9",
2929
"next-auth": "^4.24.11",
3030
"next-themes": "^0.4.4",
31-
"next": "15.5.10",
31+
"next": "15.5.15",
3232
"qrcode.react": "^4.2.0",
3333
"react-dom": "^19.0.4",
3434
"react-hook-form": "^7.54.2",

examples/bugs/gh-223/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dependencies": {
1717
"@aws-sdk/client-s3": "^3.971.0",
1818
"@aws-sdk/s3-request-presigner": "^3.971.0",
19-
"next": "15.5.10",
19+
"next": "15.5.15",
2020
"react": "^19.0.4",
2121
"react-dom": "^19.0.4"
2222
},

examples/playground15/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"cf-typegen": "wrangler types --env-interface CloudflareEnv"
1717
},
1818
"dependencies": {
19-
"next": "^15.5.10",
19+
"next": "^15.5.15",
2020
"react": "^19.0.4",
2121
"react-dom": "^19.0.4"
2222
},

examples/playground16/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"cf-typegen": "wrangler types --env-interface CloudflareEnv"
1818
},
1919
"dependencies": {
20-
"next": "16.1.5",
20+
"next": "16.2.3",
2121
"react-dom": "19.2.4",
2222
"react": "19.2.4"
2323
},

examples/ssg-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"dependencies": {
1616
"react": "^19.0.4",
1717
"react-dom": "^19.0.4",
18-
"next": "15.5.10"
18+
"next": "15.5.15"
1919
},
2020
"devDependencies": {
2121
"@opennextjs/cloudflare": "workspace:*",

packages/cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@
8787
},
8888
"peerDependencies": {
8989
"wrangler": "catalog:",
90-
"next": "~15.0.8 || ~15.1.12 || ~15.2.9 || ~15.3.9 || ~15.4.11 || ~15.5.10 || ~16.0.11 || ^16.1.5"
90+
"next": ">=15.5.15 || >=16.2.3"
9191
}
9292
}

0 commit comments

Comments
 (0)