@platformatic/next 3.0.0-alpha.8 → 3.0.0-rc.2

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
@@ -202,6 +202,7 @@ export interface PlatformaticNextJsConfig {
202
202
  };
203
203
  startTimeout?: number;
204
204
  restartOnError?: boolean | number;
205
+ exitOnUnhandledErrors?: boolean;
205
206
  gracefulShutdown?: {
206
207
  runtime: number | string;
207
208
  application: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/next",
3
- "version": "3.0.0-alpha.8",
3
+ "version": "3.0.0-rc.2",
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.0.0-alpha.8",
27
- "@platformatic/foundation": "3.0.0-alpha.8"
26
+ "@platformatic/basic": "3.0.0-rc.2",
27
+ "@platformatic/foundation": "3.0.0-rc.2"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@fastify/reply-from": "^12.0.0",
@@ -40,8 +40,8 @@
40
40
  "next": "^15.0.0",
41
41
  "typescript": "^5.5.4",
42
42
  "ws": "^8.18.0",
43
- "@platformatic/gateway": "3.0.0-alpha.8",
44
- "@platformatic/service": "3.0.0-alpha.8"
43
+ "@platformatic/gateway": "3.0.0-rc.2",
44
+ "@platformatic/service": "3.0.0-rc.2"
45
45
  },
46
46
  "engines": {
47
47
  "node": ">=22.18.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/next/3.0.0-alpha.8.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/next/3.0.0-rc.2.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Next.js Config",
5
5
  "type": "object",
@@ -921,6 +921,10 @@
921
921
  }
922
922
  ]
923
923
  },
924
+ "exitOnUnhandledErrors": {
925
+ "default": true,
926
+ "type": "boolean"
927
+ },
924
928
  "gracefulShutdown": {
925
929
  "type": "object",
926
930
  "properties": {