Skip to content

Commit

Permalink
fix(vercel): add support for Node 22 (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
laymonage authored Nov 28, 2024
1 parent 0d76496 commit 7d9835f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/odd-kiwis-clap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@astrojs/vercel': minor
---

Add support for Node 22 on Vercel serverless
6 changes: 4 additions & 2 deletions packages/vercel/src/serverless/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,14 @@ const ISR_PATH = `/_isr?${ASTRO_PATH_PARAM}=$0`;
const SUPPORTED_NODE_VERSIONS: Record<
string,
| { status: 'default' }
| { status: 'available' }
| { status: 'beta' }
| { status: 'retiring'; removal: Date | string; warnDate: Date }
| { status: 'deprecated'; removal: Date }
> = {
18: { status: 'retiring', removal: 'Early 2025', warnDate: new Date('October 1 2024') },
20: { status: 'default' },
20: { status: 'available' },
22: { status: 'default' },
};

function getAdapter({
Expand Down Expand Up @@ -572,7 +574,7 @@ function getRuntime(process: NodeJS.Process, logger: AstroIntegrationLogger): Ru
);
return 'nodejs18.x';
}
if (support.status === 'default') {
if (support.status === 'default' || support.status === 'available') {
return `nodejs${major}.x`;
}
if (support.status === 'retiring') {
Expand Down

0 comments on commit 7d9835f

Please sign in to comment.