@forge/manifest 8.9.0-next.1-experimental-011b3b2 → 8.9.0-next.1-experimental-e92a337

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,14 +1,15 @@
1
1
  # @forge/manifest
2
2
 
3
- ## 8.9.0-next.1-experimental-011b3b2
3
+ ## 8.9.0-next.1-experimental-e92a337
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - 94e48b9: Remove agent mode support per product decision
7
+ - e92a337: Remove agent mode support per product decision
8
8
 
9
9
  ### Patch Changes
10
10
 
11
- - 64daaa5: validate schema for app.contexts so developers can define a required context in the manifest
11
+ - e92a337: use the new manifest format in `forge create`
12
+ - e92a337: validate schema for app.contexts so developers can define a required context in the manifest
12
13
 
13
14
  ## 8.9.0-next.1
14
15
 
@@ -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-experimental-011b3b2",
3
+ "version": "8.9.0-next.1-experimental-e92a337",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {