-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Bump the npm_and_yarn group across 4 directories with 4 updates #1125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Bumps the npm_and_yarn group with 1 update in the / directory: [next](https://github.com/vercel/next.js). Bumps the npm_and_yarn group with 1 update in the /basics/typescript-final directory: [next](https://github.com/vercel/next.js). Bumps the npm_and_yarn group with 1 update in the /dashboard/final-example directory: [next-auth](https://github.com/nextauthjs/next-auth). Bumps the npm_and_yarn group with 2 updates in the /dashboard/starter-example directory: [next](https://github.com/vercel/next.js) and [next-auth](https://github.com/nextauthjs/next-auth). Updates `next` from 14.2.23 to 14.2.32 - [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.23...v14.2.32) Updates `@babel/helpers` from 7.26.7 to 7.28.4 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.28.4/packages/babel-helpers) Updates `brace-expansion` from 1.1.11 to 1.1.12 - [Release notes](https://github.com/juliangruber/brace-expansion/releases) - [Commits](juliangruber/brace-expansion@1.1.11...v1.1.12) Updates `next` from 14.2.23 to 14.2.32 - [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.23...v14.2.32) Updates `next-auth` from 5.0.0-beta.25 to 5.0.0-beta.30 - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/commits/[email protected]) Updates `next` from 15.3.2 to 16.0.1 - [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.23...v14.2.32) Updates `brace-expansion` from 1.1.11 to 1.1.12 - [Release notes](https://github.com/juliangruber/brace-expansion/releases) - [Commits](juliangruber/brace-expansion@1.1.11...v1.1.12) Updates `next-auth` from 5.0.0-beta.25 to 5.0.0-beta.30 - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/commits/[email protected]) --- updated-dependencies: - dependency-name: next dependency-version: 14.2.32 dependency-type: direct:production dependency-group: npm_and_yarn - dependency-name: "@babel/helpers" dependency-version: 7.28.4 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: brace-expansion dependency-version: 1.1.12 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: next dependency-version: 14.2.32 dependency-type: direct:production dependency-group: npm_and_yarn - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production dependency-group: npm_and_yarn - dependency-name: next dependency-version: 16.0.1 dependency-type: direct:production dependency-group: npm_and_yarn - dependency-name: brace-expansion dependency-version: 1.1.12 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <[email protected]>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔧 Build Fix:
The engines.node specification uses >=18 which causes Vercel to automatically select Node.js 24.x runtime, but Vercel only supports Node.js versions 20.x and 22.x, causing deployment to fail.
View Details
📝 Patch Details
diff --git a/basics/api-routes-starter/package.json b/basics/api-routes-starter/package.json
index aae3a0e..693358b 100644
--- a/basics/api-routes-starter/package.json
+++ b/basics/api-routes-starter/package.json
@@ -15,6 +15,6 @@
"remark-html": "^15.0.1"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/assets-metadata-css-starter/package.json b/basics/assets-metadata-css-starter/package.json
index 159e234..0a0d489 100644
--- a/basics/assets-metadata-css-starter/package.json
+++ b/basics/assets-metadata-css-starter/package.json
@@ -11,6 +11,6 @@
"react-dom": "latest"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/basics-final/package.json b/basics/basics-final/package.json
index 40845bb..6d78433 100644
--- a/basics/basics-final/package.json
+++ b/basics/basics-final/package.json
@@ -15,6 +15,6 @@
"remark-html": "^15.0.1"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/data-fetching-starter/package.json b/basics/data-fetching-starter/package.json
index b6896d6..59ab9c2 100644
--- a/basics/data-fetching-starter/package.json
+++ b/basics/data-fetching-starter/package.json
@@ -11,6 +11,6 @@
"react-dom": "latest"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/demo/package.json b/basics/demo/package.json
index 40845bb..6d78433 100644
--- a/basics/demo/package.json
+++ b/basics/demo/package.json
@@ -15,6 +15,6 @@
"remark-html": "^15.0.1"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/dynamic-routes-starter/package.json b/basics/dynamic-routes-starter/package.json
index c298caf..b994c2c 100644
--- a/basics/dynamic-routes-starter/package.json
+++ b/basics/dynamic-routes-starter/package.json
@@ -12,6 +12,6 @@
"react-dom": "latest"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/dynamic-routes-step-1/package.json b/basics/dynamic-routes-step-1/package.json
index c298caf..b994c2c 100644
--- a/basics/dynamic-routes-step-1/package.json
+++ b/basics/dynamic-routes-step-1/package.json
@@ -12,6 +12,6 @@
"react-dom": "latest"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/learn-starter/package.json b/basics/learn-starter/package.json
index b6896d6..59ab9c2 100644
--- a/basics/learn-starter/package.json
+++ b/basics/learn-starter/package.json
@@ -11,6 +11,6 @@
"react-dom": "latest"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/navigate-between-pages-starter/package.json b/basics/navigate-between-pages-starter/package.json
index b6896d6..59ab9c2 100644
--- a/basics/navigate-between-pages-starter/package.json
+++ b/basics/navigate-between-pages-starter/package.json
@@ -11,6 +11,6 @@
"react-dom": "latest"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/basics/typescript-final/package.json b/basics/typescript-final/package.json
index 7910951..7ccaab0 100644
--- a/basics/typescript-final/package.json
+++ b/basics/typescript-final/package.json
@@ -20,6 +20,6 @@
"typescript": "^4.8.4"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/package.json b/package.json
index 0369a27..32e503e 100644
--- a/package.json
+++ b/package.json
@@ -21,6 +21,6 @@
},
"packageManager": "[email protected]",
"engines": {
- "node": ">=18.17.0"
+ "node": ">=18.17.0 <23"
}
}
diff --git a/seo/demo/package.json b/seo/demo/package.json
index 7f56d60..c8d5e94 100644
--- a/seo/demo/package.json
+++ b/seo/demo/package.json
@@ -15,6 +15,6 @@
"react-syntax-highlighter": "^15.6.1"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
diff --git a/seo/package.json b/seo/package.json
index 7f56d60..c8d5e94 100644
--- a/seo/package.json
+++ b/seo/package.json
@@ -15,6 +15,6 @@
"react-syntax-highlighter": "^15.6.1"
},
"engines": {
- "node": ">=18"
+ "node": ">=18 <23"
}
}
Analysis
Vercel deployment fails due to invalid Node.js runtime selection
What fails: Vercel deployment fails when trying to deploy serverless functions with Node.js 24.x runtime
How to reproduce:
Deploy to Vercel with package.json containing:
"engines": {
"node": ">=18"
}Result:
[ERROR] Error: A Serverless Function has invalid runtime: "nodejs24.x". : https://vercel.link/function-runtimes
Root cause: Vercel automatically upgrades to Node.js 24.x based on the open-ended >=18 specification, but Vercel only supports Node.js 20.x and 22.x runtimes.
Bumps the npm_and_yarn group with 1 update in the / directory: next.
Bumps the npm_and_yarn group with 1 update in the /basics/typescript-final directory: next.
Bumps the npm_and_yarn group with 1 update in the /dashboard/final-example directory: next-auth.
Bumps the npm_and_yarn group with 2 updates in the /dashboard/starter-example directory: next and next-auth.
Updates
nextfrom 14.2.23 to 14.2.32Commits
89ee561v14.2.326a974ad[backport v14]: fix router handling when setting a location response header (...55f7662v14.2.315dd68a5[backport v14]: fix(next/image): improve and simplify detect-content-type (#8...bcc7c65[backport v14]: fix(next/image): fix image-optimizer.ts headers (#82114) (#82...243072bv14.2.30f523d4a[backport]: config.allowedDevOrigins (#80410)ca92115v14.2.29ec9ee87Only share incremental cache for edge in next start (#79389)e65628av14.2.28Updates
@babel/helpersfrom 7.26.7 to 7.28.4Release notes
Sourced from
@babel/helpers's releases.... (truncated)
Changelog
Sourced from
@babel/helpers's changelog.... (truncated)
Commits
35055e3v7.28.418d88b8Improve@babel/coretypings (#17471)ef155f5v7.28.3741cbd2chore: fix various typos across codebase (#17476)cac0ff4v7.28.2f743094fix:regeneratorDefinecompatibility with es5 strict mode (#17441)baa4cb8v7.27.6fdbf1b3fix:finallycauses unexpected return value (#17366)7d06930v7.27.45b9468dReduceregeneratorsize more (#17287)Updates
brace-expansionfrom 1.1.11 to 1.1.12Release notes
Sourced from brace-expansion's releases.
Commits
44f33b41.1.12c460dbdpkg: publish on tag 1.xccb8ac6fmtc3c73c8Fix potential ReDoS Vulnerability or Inefficient Regular Expression (#65)Updates
nextfrom 14.2.23 to 14.2.32Commits
89ee561v14.2.326a974ad[backport v14]: fix router handling when setting a location response header (...55f7662v14.2.315dd68a5[backport v14]: fix(next/image): improve and simplify detect-content-type (#8...bcc7c65[backport v14]: fix(next/image): fix image-optimizer.ts headers (#82114) (#82...243072bv14.2.30f523d4a[backport]: config.allowedDevOrigins (#80410)ca92115v14.2.29ec9ee87Only share incremental cache for edge in next start (#79389)e65628av14.2.28Updates
next-authfrom 5.0.0-beta.25 to 5.0.0-beta.30Release notes
Sourced from next-auth's releases.
Commits
Maintainer changes
This version was pushed to npm by himself_65, a new releaser for next-auth since your current version.
Updates
nextfrom 15.3.2 to 16.0.1Commits
89ee561v14.2.326a974ad[backport v14]: fix router handling when setting a location response header (...55f7662v14.2.315dd68a5[backport v14]: fix(next/image): improve and simplify detect-content-type (#8...bcc7c65[backport v14]: fix(next/image): fix image-optimizer.ts headers (#82114) (#82...243072bv14.2.30f523d4a[backport]: config.allowedDevOrigins (#80410)ca92115v14.2.29ec9ee87Only share incremental cache for edge in next start (#79389)e65628av14.2.28Updates
brace-expansionfrom 1.1.11 to 1.1.12Release notes
Sourced from brace-expansion's releases.
Commits
44f33b41.1.12c460dbdpkg: publish on tag 1.xccb8ac6fmtc3c73c8Fix potential ReDoS Vulnerability or Inefficient Regular Expression (#65)Updates
next-authfrom 5.0.0-beta.25 to 5.0.0-beta.30Release notes
Sourced from next-auth's releases.
Commits
Maintainer changes
This version was pushed to npm by himself_65, a new releaser for next-auth since your current version.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.