From a6498a04cc525a66b0dbff00f8f679e2320bade7 Mon Sep 17 00:00:00 2001 From: Leonardo Ortiz Date: Fri, 14 Nov 2025 10:54:49 -0300 Subject: [PATCH 1/2] increase supported range for Next.js to version 16.0 --- src/frameworks/next/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frameworks/next/index.ts b/src/frameworks/next/index.ts index b381fbba157..f93e3afadf7 100644 --- a/src/frameworks/next/index.ts +++ b/src/frameworks/next/index.ts @@ -87,7 +87,7 @@ import { parseStrict } from "../../functions/env"; const DEFAULT_BUILD_SCRIPT = ["next build"]; const PUBLIC_DIR = "public"; -export const supportedRange = "12 - 15.0"; +export const supportedRange = "12 - 16.0"; export const name = "Next.js"; export const support = SupportLevel.Preview; From 8d0b627568676dd0a5ebf99362835eb0c0c79f7c Mon Sep 17 00:00:00 2001 From: Leonardo Ortiz Date: Fri, 14 Nov 2025 11:04:28 -0300 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29bb2d..cfb9074650c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1 @@ +- Increase supported range for Next.js to version 16.0 (#9463)