@forge/manifest 13.2.0-next.4 → 13.2.0-next.4-experimental-28c9ab7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.2.0-next.4-experimental-28c9ab7
4
+
5
+ ### Minor Changes
6
+
7
+ - 8826ca3: add personal apps support for Forge app creation
8
+
9
+ ### Patch Changes
10
+
11
+ - 4c5ba1c: Add `permissions.sandbox` to the manifest schema. When `allow-storage-access-by-user-activation` is included in the `sandbox` array, the app iframe sandbox will include the corresponding token, enabling the app to request third-party storage access (e.g. cookies) via the Storage Access API when triggered by a user gesture.
12
+
13
+ Example usage:
14
+
15
+ ```yaml
16
+ permissions:
17
+ sandbox:
18
+ - allow-storage-access-by-user-activation
19
+ ```
20
+
21
+ - 5abe69e: add support for personal app installation contexts
22
+ - 7195f29: Update manifest definitions
23
+ - 3252a62: Update manifest definitions
24
+ - c67b720: Update manifest definitions
25
+
3
26
  ## 13.2.0-next.4
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.2.0-next.4",
3
+ "version": "13.2.0-next.4-experimental-28c9ab7",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {