@forge/manifest 11.3.0-next.2-experimental-9065145 → 11.3.0-next.3
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,15 +1,10 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
-
## 11.3.0-next.
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- c7544d8: Add new properties to Forge custom field to enable migration from Connect issue fields
|
|
3
|
+
## 11.3.0-next.3
|
|
8
4
|
|
|
9
5
|
### Patch Changes
|
|
10
6
|
|
|
11
|
-
-
|
|
12
|
-
- 0c3a0df: Update manifest definitions
|
|
7
|
+
- bb5cb57: Add support for Node 24
|
|
13
8
|
|
|
14
9
|
## 11.3.0-next.2
|
|
15
10
|
|
|
@@ -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
|
*/
|