@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
|
|
@@ -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 = '
|
|
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/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 = '
|
|
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
|
*/
|