@forge/manifest 9.3.0-next.6 → 9.3.0-next.6-experimental-9e772ae

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 9.3.0-next.6-experimental-9e772ae
4
+
5
+ ### Minor Changes
6
+
7
+ - d86ca2b: Migrate runtime deprecation check from @forge/manifest to @forge/cli
8
+ - a56ca61: bump up memory limit allocated for function
9
+ - 8bd52d6: Enable overrides for oauth profile retriever
10
+ - 43832a8: Allow scopes to be declared with offline user impersonation support
11
+ - 065b6a2: Add validation to prevent resources using the same key in the manifest definitions
12
+
13
+ ### Patch Changes
14
+
15
+ - 743bbdc: Unreferenced action module check now also accounts for automation:actionProvider
16
+ - a891abf: Update manifest definitions
17
+ - 439551a: Update manifest definitions
18
+
3
19
  ## 9.3.0-next.6
4
20
 
5
21
  ### Minor Changes
@@ -47,7 +47,7 @@
47
47
  ]
48
48
  },
49
49
  "memoryMB": {
50
- "description": "The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 512 MB in 1-MB increments. The default value is 512 MB.",
50
+ "description": "The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 1024 MB in 1-MB increments. The default value is 512 MB.",
51
51
  "title": "memoryMB",
52
52
  "type": "number"
53
53
  }
@@ -26,7 +26,7 @@ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
26
26
  */
27
27
  export type Architecture = 'x86_64' | 'arm64';
28
28
  /**
29
- * The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 512 MB in 1-MB increments. The default value is 512 MB.
29
+ * The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 1024 MB in 1-MB increments. The default value is 512 MB.
30
30
  */
31
31
  export type MemoryMB = number;
32
32
  /**
@@ -47,7 +47,7 @@
47
47
  ]
48
48
  },
49
49
  "memoryMB": {
50
- "description": "The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 512 MB in 1-MB increments. The default value is 512 MB.",
50
+ "description": "The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 1024 MB in 1-MB increments. The default value is 512 MB.",
51
51
  "title": "memoryMB",
52
52
  "type": "number"
53
53
  }
@@ -26,7 +26,7 @@ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
26
26
  */
27
27
  export type Architecture = 'x86_64' | 'arm64';
28
28
  /**
29
- * The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 512 MB in 1-MB increments. The default value is 512 MB.
29
+ * The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 1024 MB in 1-MB increments. The default value is 512 MB.
30
30
  */
31
31
  export type MemoryMB = number;
32
32
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "9.3.0-next.6",
3
+ "version": "9.3.0-next.6-experimental-9e772ae",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {