@forge/manifest 13.2.0-next.6 → 13.2.0

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 +25 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2b30ef8: Add SKILL.md file validation
8
+ - 8826ca3: add personal apps support for Forge app creation
9
+
10
+ ### Patch Changes
11
+
12
+ - 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.
13
+
14
+ Example usage:
15
+
16
+ ```yaml
17
+ permissions:
18
+ sandbox:
19
+ - allow-storage-access-by-user-activation
20
+ ```
21
+
22
+ - 5abe69e: add support for personal app installation contexts
23
+ - 7195f29: Update manifest definitions
24
+ - 3252a62: Update manifest definitions
25
+ - 119be75: Update manifest definitions
26
+ - c67b720: Update manifest definitions
27
+
3
28
  ## 13.2.0-next.6
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.2.0-next.6",
3
+ "version": "13.2.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {