@platformatic/next 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 +2 -0
- package/package.json +5 -5
- package/schema.json +39 -3
package/config.d.ts
CHANGED
|
@@ -231,6 +231,7 @@ export interface PlatformaticNextJsConfig {
|
|
|
231
231
|
maxHeapUsed?: number | string;
|
|
232
232
|
maxHeapTotal?: number | string;
|
|
233
233
|
maxYoungGeneration?: number | string;
|
|
234
|
+
codeRangeSize?: number | string;
|
|
234
235
|
};
|
|
235
236
|
undici?: {
|
|
236
237
|
agentOptions?: {
|
|
@@ -337,6 +338,7 @@ export interface PlatformaticNextJsConfig {
|
|
|
337
338
|
body?: string;
|
|
338
339
|
};
|
|
339
340
|
};
|
|
341
|
+
healthChecksTimeouts?: number | string;
|
|
340
342
|
plugins?: string[];
|
|
341
343
|
timeout?: number | string;
|
|
342
344
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/next",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.0",
|
|
4
4
|
"description": "Platformatic Next.js Capability",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"iovalkey": "^0.3.0",
|
|
24
24
|
"msgpackr": "^1.11.2",
|
|
25
25
|
"semver": "^7.6.3",
|
|
26
|
-
"@platformatic/basic": "3.
|
|
27
|
-
"@platformatic/foundation": "3.
|
|
26
|
+
"@platformatic/basic": "3.20.0",
|
|
27
|
+
"@platformatic/foundation": "3.20.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@fastify/reply-from": "^12.0.0",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"next": "^16.0.0",
|
|
41
41
|
"typescript": "^5.5.4",
|
|
42
42
|
"ws": "^8.18.0",
|
|
43
|
-
"@platformatic/service": "3.
|
|
44
|
-
"@platformatic/gateway": "3.
|
|
43
|
+
"@platformatic/service": "3.20.0",
|
|
44
|
+
"@platformatic/gateway": "3.20.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/next/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/next/3.20.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Next.js Config",
|
|
5
5
|
"type": "object",
|
|
@@ -549,6 +549,17 @@
|
|
|
549
549
|
"type": "string"
|
|
550
550
|
}
|
|
551
551
|
]
|
|
552
|
+
},
|
|
553
|
+
"codeRangeSize": {
|
|
554
|
+
"anyOf": [
|
|
555
|
+
{
|
|
556
|
+
"type": "number",
|
|
557
|
+
"minimum": 0
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"type": "string"
|
|
561
|
+
}
|
|
562
|
+
]
|
|
552
563
|
}
|
|
553
564
|
},
|
|
554
565
|
"additionalProperties": false
|
|
@@ -1142,7 +1153,8 @@
|
|
|
1142
1153
|
{
|
|
1143
1154
|
"type": "string"
|
|
1144
1155
|
}
|
|
1145
|
-
]
|
|
1156
|
+
],
|
|
1157
|
+
"default": 4294967296
|
|
1146
1158
|
},
|
|
1147
1159
|
"maxYoungGeneration": {
|
|
1148
1160
|
"anyOf": [
|
|
@@ -1153,7 +1165,20 @@
|
|
|
1153
1165
|
{
|
|
1154
1166
|
"type": "string"
|
|
1155
1167
|
}
|
|
1156
|
-
]
|
|
1168
|
+
],
|
|
1169
|
+
"default": 134217728
|
|
1170
|
+
},
|
|
1171
|
+
"codeRangeSize": {
|
|
1172
|
+
"anyOf": [
|
|
1173
|
+
{
|
|
1174
|
+
"type": "number",
|
|
1175
|
+
"minimum": 0
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"type": "string"
|
|
1179
|
+
}
|
|
1180
|
+
],
|
|
1181
|
+
"default": 268435456
|
|
1157
1182
|
}
|
|
1158
1183
|
},
|
|
1159
1184
|
"additionalProperties": false
|
|
@@ -1469,6 +1494,17 @@
|
|
|
1469
1494
|
}
|
|
1470
1495
|
]
|
|
1471
1496
|
},
|
|
1497
|
+
"healthChecksTimeouts": {
|
|
1498
|
+
"anyOf": [
|
|
1499
|
+
{
|
|
1500
|
+
"type": "integer"
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
"type": "string"
|
|
1504
|
+
}
|
|
1505
|
+
],
|
|
1506
|
+
"default": 5000
|
|
1507
|
+
},
|
|
1472
1508
|
"plugins": {
|
|
1473
1509
|
"type": "array",
|
|
1474
1510
|
"items": {
|