@forge/manifest 12.8.0-next.5 → 12.8.0-next.7

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,17 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 12.8.0-next.7
4
+
5
+ ### Patch Changes
6
+
7
+ - f7c39e1: Setup limit to max number of resource entries allowed
8
+
9
+ ## 12.8.0-next.6
10
+
11
+ ### Minor Changes
12
+
13
+ - e7b0684: support scaling containers to zero
14
+
3
15
  ## 12.8.0-next.5
4
16
 
5
17
  ### Patch Changes
@@ -32302,6 +32302,8 @@
32302
32302
  },
32303
32303
  "entry": {
32304
32304
  "type": "object",
32305
+ "minProperties": 1,
32306
+ "maxProperties": 50,
32305
32307
  "propertyNames": {
32306
32308
  "pattern": "^[a-zA-Z0-9_-]+$",
32307
32309
  "maxLength": 23
@@ -33002,7 +33004,7 @@
33002
33004
  "min": {
33003
33005
  "type": "number",
33004
33006
  "description": "The minimum number of instances to run",
33005
- "minimum": 1
33007
+ "minimum": 0
33006
33008
  },
33007
33009
  "max": {
33008
33010
  "type": "number",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "12.8.0-next.5",
3
+ "version": "12.8.0-next.7",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {