@forge/manifest 7.2.3-next.1 → 7.2.3-next.2

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,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.2.3-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 6099d41: Update testing to support Node 20+
8
+
3
9
  ## 7.2.3-next.1
4
10
 
5
11
  ### Patch Changes
@@ -32,7 +32,8 @@
32
32
  "type": "string",
33
33
  "enum": [
34
34
  "sandbox",
35
- "nodejs18.x"
35
+ "nodejs18.x",
36
+ "nodejs20.x"
36
37
  ]
37
38
  }
38
39
  },
@@ -20,7 +20,7 @@ export type Snapshots = boolean;
20
20
  /**
21
21
  * Name of the runtime to use for app execution.
22
22
  */
23
- export type Name = 'sandbox' | 'nodejs18.x';
23
+ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x';
24
24
  /**
25
25
  * Whether to enable paid app licensing for production installations of this app. Default value of false.
26
26
  */
@@ -32,7 +32,8 @@
32
32
  "type": "string",
33
33
  "enum": [
34
34
  "sandbox",
35
- "nodejs18.x"
35
+ "nodejs18.x",
36
+ "nodejs20.x"
36
37
  ]
37
38
  }
38
39
  },
@@ -20,7 +20,7 @@ export type Snapshots = boolean;
20
20
  /**
21
21
  * Name of the runtime to use for app execution.
22
22
  */
23
- export type Name = 'sandbox' | 'nodejs18.x';
23
+ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x';
24
24
  /**
25
25
  * Whether to enable paid app licensing for production installations of this app. Default value of false.
26
26
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.2.3-next.1",
3
+ "version": "7.2.3-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {