@forge/manifest 13.1.1-next.2 → 13.1.1-next.2-experimental-bd3d812
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 +17 -0
- 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-bd3d812
|
|
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
|