@forge/manifest 11.3.0-next.2-experimental-9065145 → 11.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
-
## 11.3.0
|
|
3
|
+
## 11.3.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
- 7c2186c: Update manifest definitions
|
|
12
12
|
- 0c3a0df: Update manifest definitions
|
|
13
|
+
- bb5cb57: Add support for Node 24
|
|
14
|
+
|
|
15
|
+
## 11.3.0-next.3
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- bb5cb57: Add support for Node 24
|
|
13
20
|
|
|
14
21
|
## 11.3.0-next.2
|
|
15
22
|
|
|
@@ -16,7 +16,7 @@ export type Id = string;
|
|
|
16
16
|
/**
|
|
17
17
|
* Name of the runtime to use for app execution.
|
|
18
18
|
*/
|
|
19
|
-
export type Name = 'nodejs20.x' | 'nodejs22.x';
|
|
19
|
+
export type Name = 'nodejs20.x' | 'nodejs22.x' | 'nodejs24.x';
|
|
20
20
|
/**
|
|
21
21
|
* Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.
|
|
22
22
|
*/
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export type Id = string;
|
|
|
16
16
|
/**
|
|
17
17
|
* Name of the runtime to use for app execution.
|
|
18
18
|
*/
|
|
19
|
-
export type Name = 'nodejs20.x' | 'nodejs22.x';
|
|
19
|
+
export type Name = 'nodejs20.x' | 'nodejs22.x' | 'nodejs24.x';
|
|
20
20
|
/**
|
|
21
21
|
* Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.
|
|
22
22
|
*/
|