@platformatic/next 2.75.0-alpha.0 → 2.75.0-alpha.1

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
@@ -199,6 +199,7 @@ export interface PlatformaticNextJsStackable {
199
199
  };
200
200
  startTimeout?: number;
201
201
  restartOnError?: boolean | number;
202
+ exitOnUnhandledErrors?: boolean;
202
203
  gracefulShutdown?: {
203
204
  runtime: number | string;
204
205
  service: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/next",
3
- "version": "2.75.0-alpha.0",
3
+ "version": "2.75.0-alpha.1",
4
4
  "description": "Platformatic Next.js Stackable",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -23,9 +23,9 @@
23
23
  "iovalkey": "^0.3.0",
24
24
  "msgpackr": "^1.11.2",
25
25
  "semver": "^7.6.3",
26
- "@platformatic/basic": "2.75.0-alpha.0",
27
- "@platformatic/config": "2.75.0-alpha.0",
28
- "@platformatic/utils": "2.75.0-alpha.0"
26
+ "@platformatic/basic": "2.75.0-alpha.1",
27
+ "@platformatic/config": "2.75.0-alpha.1",
28
+ "@platformatic/utils": "2.75.0-alpha.1"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@fastify/reply-from": "^12.0.0",
@@ -39,8 +39,8 @@
39
39
  "next": "^15.0.0",
40
40
  "typescript": "^5.5.4",
41
41
  "ws": "^8.18.0",
42
- "@platformatic/service": "2.75.0-alpha.0",
43
- "@platformatic/composer": "2.75.0-alpha.0"
42
+ "@platformatic/composer": "2.75.0-alpha.1",
43
+ "@platformatic/service": "2.75.0-alpha.1"
44
44
  },
45
45
  "scripts": {
46
46
  "test": "npm run lint && borp --concurrency=1 --no-timeout",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/next/2.75.0-alpha.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/next/2.75.0-alpha.1.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Next.js Stackable",
5
5
  "type": "object",
@@ -684,6 +684,10 @@
684
684
  }
685
685
  ]
686
686
  },
687
+ "exitOnUnhandledErrors": {
688
+ "default": true,
689
+ "type": "boolean"
690
+ },
687
691
  "gracefulShutdown": {
688
692
  "type": "object",
689
693
  "properties": {