@forge/manifest 8.9.0-next.2 → 8.9.0-next.3

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,12 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 8.9.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 9d231e9: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
8
+ - b503084: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
9
+
3
10
  ## 8.9.0-next.2
4
11
 
5
12
  ### 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.2",
3
+ "version": "8.9.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {