@platformatic/foundation 3.30.0 → 3.32.0-alpha.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/lib/schema.js +2 -1
  2. package/package.json +1 -1
package/lib/schema.js CHANGED
@@ -607,7 +607,8 @@ export const health = {
607
607
  maxHeapUsed: overridableValue({ type: 'number', minimum: 0, maximum: 1 }, 0.99),
608
608
  maxHeapTotal: overridableValue({ type: 'number', minimum: 0 }, 4 * Math.pow(1024, 3)), // 4GB
609
609
  maxYoungGeneration: overridableValue({ type: 'number', minimum: 0 }, 128 * Math.pow(1024, 2)), // 128MB,
610
- codeRangeSize: overridableValue({ type: 'number', minimum: 0 }, 268435456)
610
+ codeRangeSize: overridableValue({ type: 'number', minimum: 0 }, 268435456),
611
+ noHeapCheck: overridableValue({ type: 'boolean' }, false)
611
612
  },
612
613
  additionalProperties: false
613
614
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/foundation",
3
- "version": "3.30.0",
3
+ "version": "3.32.0-alpha.0",
4
4
  "description": "Platformatic Foundation",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",