@forge/manifest
11.3.0-next.2-experimental-906514511.3.0-next.3
~
Modified (6 files)
Index: package/out/schema/basic-manifest-schema.json
===================================================================
--- package/out/schema/basic-manifest-schema.json
+++ package/out/schema/basic-manifest-schema.json
@@ -25,9 +25,10 @@
"title": "name",
"type": "string",
"enum": [
"nodejs20.x",
- "nodejs22.x"
+ "nodejs22.x",
+ "nodejs24.x"
]
},
"architecture": {
"description": "Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.", File too large for inline diff
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
{
"name": "@forge/manifest",
- "version": "11.3.0-next.2-experimental-9065145",
+ "version": "11.3.0-next.3",
"description": "Definitions and validations of the Forge manifest",
"main": "out/index.js",
"scripts": {
"build": "yarn run compile", File too large for inline diff
Index: package/out/schema/basic-manifest.d.ts
===================================================================
--- package/out/schema/basic-manifest.d.ts
+++ package/out/schema/basic-manifest.d.ts
@@ -15,9 +15,9 @@
export type Id = string;
/**
* Name of the runtime to use for app execution.
*/
-export type Name = 'nodejs20.x' | 'nodejs22.x';
+export type Name = 'nodejs20.x' | 'nodejs22.x' | 'nodejs24.x';
/**
* Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.
*/
export type Architecture = 'x86_64' | 'arm64'; File too large for inline diff