@forge/manifest 10.3.0-next.3 → 10.4.0-next.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,5 +1,23 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 10.4.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2a0dadd: Remove Node18 runtime
8
+
9
+ ## 10.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 0db59f9: Add dashboards:backgroundScript module
14
+
15
+ ### Patch Changes
16
+
17
+ - 8ba142a: Bump runtime to nodejs22.x
18
+ - 86dbde7: Update manifest definitions
19
+ - a614f0b: Update manifest definitions
20
+
3
21
  ## 10.3.0-next.3
4
22
 
5
23
  ### Minor Changes
@@ -25,7 +25,6 @@
25
25
  "title": "name",
26
26
  "type": "string",
27
27
  "enum": [
28
- "nodejs18.x",
29
28
  "nodejs20.x",
30
29
  "nodejs22.x"
31
30
  ]
@@ -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 = 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
19
+ export type Name = 'nodejs20.x' | 'nodejs22.x';
20
20
  /**
21
21
  * Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.
22
22
  */
@@ -25,7 +25,6 @@
25
25
  "title": "name",
26
26
  "type": "string",
27
27
  "enum": [
28
- "nodejs18.x",
29
28
  "nodejs20.x",
30
29
  "nodejs22.x"
31
30
  ]
@@ -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 = 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
19
+ export type Name = 'nodejs20.x' | 'nodejs22.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": "10.3.0-next.3",
3
+ "version": "10.4.0-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {