@platformatic/composer 3.18.0 → 3.20.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.
package/config.d.ts CHANGED
@@ -292,6 +292,7 @@ export interface PlatformaticComposerConfig {
292
292
  maxHeapUsed?: number | string;
293
293
  maxHeapTotal?: number | string;
294
294
  maxYoungGeneration?: number | string;
295
+ codeRangeSize?: number | string;
295
296
  };
296
297
  undici?: {
297
298
  agentOptions?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/composer",
3
- "version": "3.18.0",
3
+ "version": "3.20.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -23,8 +23,8 @@
23
23
  "json-schema-to-typescript": "^15.0.0"
24
24
  },
25
25
  "dependencies": {
26
- "@platformatic/foundation": "3.18.0",
27
- "@platformatic/gateway": "3.18.0"
26
+ "@platformatic/foundation": "3.20.0",
27
+ "@platformatic/gateway": "3.20.0"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/composer/3.18.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/composer/3.20.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Composer Config",
5
5
  "type": "object",
@@ -851,6 +851,17 @@
851
851
  "type": "string"
852
852
  }
853
853
  ]
854
+ },
855
+ "codeRangeSize": {
856
+ "anyOf": [
857
+ {
858
+ "type": "number",
859
+ "minimum": 0
860
+ },
861
+ {
862
+ "type": "string"
863
+ }
864
+ ]
854
865
  }
855
866
  },
856
867
  "additionalProperties": false
@@ -1444,7 +1455,8 @@
1444
1455
  {
1445
1456
  "type": "string"
1446
1457
  }
1447
- ]
1458
+ ],
1459
+ "default": 4294967296
1448
1460
  },
1449
1461
  "maxYoungGeneration": {
1450
1462
  "anyOf": [
@@ -1455,7 +1467,20 @@
1455
1467
  {
1456
1468
  "type": "string"
1457
1469
  }
1458
- ]
1470
+ ],
1471
+ "default": 134217728
1472
+ },
1473
+ "codeRangeSize": {
1474
+ "anyOf": [
1475
+ {
1476
+ "type": "number",
1477
+ "minimum": 0
1478
+ },
1479
+ {
1480
+ "type": "string"
1481
+ }
1482
+ ],
1483
+ "default": 268435456
1459
1484
  }
1460
1485
  },
1461
1486
  "additionalProperties": false
@@ -1771,6 +1796,17 @@
1771
1796
  }
1772
1797
  ]
1773
1798
  },
1799
+ "healthChecksTimeouts": {
1800
+ "anyOf": [
1801
+ {
1802
+ "type": "integer"
1803
+ },
1804
+ {
1805
+ "type": "string"
1806
+ }
1807
+ ],
1808
+ "default": 5000
1809
+ },
1774
1810
  "plugins": {
1775
1811
  "type": "array",
1776
1812
  "items": {