npm package diff
Package: @forge/manifest
Versions: 8.9.0-next.2 - 8.9.0-next.3
Modified: package/out/schema/basic-manifest-schema.json
Index: package/out/schema/basic-manifest-schema.json
===================================================================
--- package/out/schema/basic-manifest-schema.json
+++ package/out/schema/basic-manifest-schema.json
@@ -60,9 +60,9 @@
"jira",
"compass"
],
"title": "requiredProduct",
- "description": "The required product for cross-product functionality. If not set, app is not a cross-product app."
+ "description": "This property is deprecated."
},
"contexts": {
"type": "object",
"title": "contexts",
Modified: package/out/schema/manifest-schema.json
Large diffs are not rendered by default.
Modified: package/package.json
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
{
"name": "@forge/manifest",
- "version": "8.9.0-next.2",
+ "version": "8.9.0-next.3",
"description": "Definitions and validations of the Forge manifest",
"main": "out/index.js",
"scripts": {
"build": "yarn run compile",
Modified: package/CHANGELOG.md
Index: package/CHANGELOG.md
===================================================================
--- package/CHANGELOG.md
+++ package/CHANGELOG.md
@@ -1,6 +1,13 @@
# @forge/manifest
+## 8.9.0-next.3
+
+### Patch Changes
+
+- 9d231e9: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
+- b503084: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
+
## 8.9.0-next.2
### Patch Changes
Modified: package/out/schema/basic-manifest.d.ts
Index: package/out/schema/basic-manifest.d.ts
===================================================================
--- package/out/schema/basic-manifest.d.ts
+++ package/out/schema/basic-manifest.d.ts
@@ -25,9 +25,9 @@
* Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.
*/
export type Architecture = 'x86_64' | 'arm64';
/**
- * The required product for cross-product functionality. If not set, app is not a cross-product app.
+ * This property is deprecated.
*/
export type RequiredProduct = 'confluence' | 'jira' | 'compass';
/**
* The required context for cross-context functionality. If not set, app is not a cross-context app.
Modified: package/out/schema/manifest.d.ts
Large diffs are not rendered by default.