@forge/manifest 11.3.0-next.2-experimental-a8bc05b → 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.2-experimental-a8bc05b
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
- - 7c2186c: Update manifest definitions
12
- - 0c3a0df: Update manifest definitions
7
+ - bb5cb57: Add support for Node 24
13
8
 
14
9
  ## 11.3.0-next.2
15
10
 
@@ -26,7 +26,8 @@
26
26
  "type": "string",
27
27
  "enum": [
28
28
  "nodejs20.x",
29
- "nodejs22.x"
29
+ "nodejs22.x",
30
+ "nodejs24.x"
30
31
  ]
31
32
  },
32
33
  "architecture": {
@@ -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
  */
@@ -26,7 +26,8 @@
26
26
  "type": "string",
27
27
  "enum": [
28
28
  "nodejs20.x",
29
- "nodejs22.x"
29
+ "nodejs22.x",
30
+ "nodejs24.x"
30
31
  ]
31
32
  },
32
33
  "architecture": {
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "11.3.0-next.2-experimental-a8bc05b",
3
+ "version": "11.3.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {