@platformatic/service 3.19.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
@@ -427,6 +427,7 @@ export interface PlatformaticServiceConfig {
427
427
  maxHeapUsed?: number | string;
428
428
  maxHeapTotal?: number | string;
429
429
  maxYoungGeneration?: number | string;
430
+ codeRangeSize?: number | string;
430
431
  };
431
432
  undici?: {
432
433
  agentOptions?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/service",
3
- "version": "3.19.0",
3
+ "version": "3.20.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -67,12 +67,12 @@
67
67
  "rfdc": "^1.3.1",
68
68
  "semgrator": "^0.3.0",
69
69
  "undici": "^7.0.0",
70
- "@platformatic/basic": "3.19.0",
71
- "@platformatic/foundation": "3.19.0",
72
- "@platformatic/generators": "3.19.0",
73
- "@platformatic/scalar-theme": "3.19.0",
74
- "@platformatic/telemetry": "3.19.0",
75
- "@platformatic/metrics": "3.19.0"
70
+ "@platformatic/basic": "3.20.0",
71
+ "@platformatic/foundation": "3.20.0",
72
+ "@platformatic/generators": "3.20.0",
73
+ "@platformatic/metrics": "3.20.0",
74
+ "@platformatic/scalar-theme": "3.20.0",
75
+ "@platformatic/telemetry": "3.20.0"
76
76
  },
77
77
  "engines": {
78
78
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/service/3.19.0.json",
3
- "version": "3.19.0",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/service/3.20.0.json",
3
+ "version": "3.20.0",
4
4
  "title": "Platformatic Service Config",
5
5
  "type": "object",
6
6
  "properties": {
@@ -1177,6 +1177,17 @@
1177
1177
  "type": "string"
1178
1178
  }
1179
1179
  ]
1180
+ },
1181
+ "codeRangeSize": {
1182
+ "anyOf": [
1183
+ {
1184
+ "type": "number",
1185
+ "minimum": 0
1186
+ },
1187
+ {
1188
+ "type": "string"
1189
+ }
1190
+ ]
1180
1191
  }
1181
1192
  },
1182
1193
  "additionalProperties": false
@@ -1770,7 +1781,8 @@
1770
1781
  {
1771
1782
  "type": "string"
1772
1783
  }
1773
- ]
1784
+ ],
1785
+ "default": 4294967296
1774
1786
  },
1775
1787
  "maxYoungGeneration": {
1776
1788
  "anyOf": [
@@ -1781,7 +1793,20 @@
1781
1793
  {
1782
1794
  "type": "string"
1783
1795
  }
1784
- ]
1796
+ ],
1797
+ "default": 134217728
1798
+ },
1799
+ "codeRangeSize": {
1800
+ "anyOf": [
1801
+ {
1802
+ "type": "number",
1803
+ "minimum": 0
1804
+ },
1805
+ {
1806
+ "type": "string"
1807
+ }
1808
+ ],
1809
+ "default": 268435456
1785
1810
  }
1786
1811
  },
1787
1812
  "additionalProperties": false