@forge/manifest 8.9.0-next.1 → 8.9.0-next.1-experimental-b67a1d0
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,16 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 8.9.0-next.1-experimental-b67a1d0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b6773cc: Remove agent mode support per product decision
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 20de0f7: use the new manifest format in `forge create`
|
|
12
|
+
- b6773cc: validate schema for app.contexts so developers can define a required context in the manifest
|
|
13
|
+
|
|
3
14
|
## 8.9.0-next.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"compass"
|
|
62
62
|
],
|
|
63
63
|
"title": "requiredProduct",
|
|
64
|
-
"description": "
|
|
64
|
+
"description": "This property is deprecated."
|
|
65
65
|
},
|
|
66
66
|
"contexts": {
|
|
67
67
|
"type": "object",
|
|
@@ -26,7 +26,7 @@ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
|
|
|
26
26
|
*/
|
|
27
27
|
export type Architecture = 'x86_64' | 'arm64';
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* This property is deprecated.
|
|
30
30
|
*/
|
|
31
31
|
export type RequiredProduct = 'confluence' | 'jira' | 'compass';
|
|
32
32
|
/**
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"compass"
|
|
62
62
|
],
|
|
63
63
|
"title": "requiredProduct",
|
|
64
|
-
"description": "
|
|
64
|
+
"description": "This property is deprecated."
|
|
65
65
|
},
|
|
66
66
|
"contexts": {
|
|
67
67
|
"type": "object",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
|
|
|
26
26
|
*/
|
|
27
27
|
export type Architecture = 'x86_64' | 'arm64';
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* This property is deprecated.
|
|
30
30
|
*/
|
|
31
31
|
export type RequiredProduct = 'confluence' | 'jira' | 'compass';
|
|
32
32
|
/**
|