@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": "The required product for cross-product functionality. If not set, app is not a cross-product app."
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
- * The required product for cross-product functionality. If not set, app is not a cross-product app.
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": "The required product for cross-product functionality. If not set, app is not a cross-product app."
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
- * The required product for cross-product functionality. If not set, app is not a cross-product app.
29
+ * This property is deprecated.
30
30
  */
31
31
  export type RequiredProduct = 'confluence' | 'jira' | 'compass';
32
32
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.9.0-next.1",
3
+ "version": "8.9.0-next.1-experimental-b67a1d0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {