@platformatic/service 3.19.0 → 3.21.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.21.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.21.0",
71
+ "@platformatic/foundation": "3.21.0",
72
+ "@platformatic/metrics": "3.21.0",
73
+ "@platformatic/generators": "3.21.0",
74
+ "@platformatic/scalar-theme": "3.21.0",
75
+ "@platformatic/telemetry": "3.21.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.21.0.json",
3
+ "version": "3.21.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
@@ -1204,8 +1215,7 @@
1204
1215
  "type": "string"
1205
1216
  },
1206
1217
  "sourceMaps": {
1207
- "type": "boolean",
1208
- "default": false
1218
+ "type": "boolean"
1209
1219
  },
1210
1220
  "packageManager": {
1211
1221
  "type": "string",
@@ -1770,7 +1780,8 @@
1770
1780
  {
1771
1781
  "type": "string"
1772
1782
  }
1773
- ]
1783
+ ],
1784
+ "default": 4294967296
1774
1785
  },
1775
1786
  "maxYoungGeneration": {
1776
1787
  "anyOf": [
@@ -1781,7 +1792,20 @@
1781
1792
  {
1782
1793
  "type": "string"
1783
1794
  }
1784
- ]
1795
+ ],
1796
+ "default": 134217728
1797
+ },
1798
+ "codeRangeSize": {
1799
+ "anyOf": [
1800
+ {
1801
+ "type": "number",
1802
+ "minimum": 0
1803
+ },
1804
+ {
1805
+ "type": "string"
1806
+ }
1807
+ ],
1808
+ "default": 268435456
1785
1809
  }
1786
1810
  },
1787
1811
  "additionalProperties": false