@forge/manifest 13.1.1-next.2 → 13.1.1-next.2-experimental-bf8e292

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 +17 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.1.1-next.2-experimental-bf8e292
4
+
5
+ ### Patch Changes
6
+
7
+ - 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.
8
+
9
+ Example usage:
10
+
11
+ ```yaml
12
+ permissions:
13
+ sandbox:
14
+ - allow-storage-access-by-user-activation
15
+ ```
16
+
17
+ - 7195f29: Update manifest definitions
18
+ - 3252a62: Update manifest definitions
19
+
3
20
  ## 13.1.1-next.2
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.1.1-next.2",
3
+ "version": "13.1.1-next.2-experimental-bf8e292",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {