@platformatic/service 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
@@ -398,6 +398,7 @@ export interface PlatformaticServiceConfig {
398
398
  };
399
399
  startTimeout?: number;
400
400
  restartOnError?: boolean | number;
401
+ exitOnUnhandledErrors?: boolean;
401
402
  gracefulShutdown?: {
402
403
  runtime: number | string;
403
404
  application: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/service",
3
- "version": "3.0.0-alpha.8",
3
+ "version": "3.0.0-rc.2",
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.0.0-alpha.8",
71
- "@platformatic/scalar-theme": "3.0.0-alpha.8",
72
- "@platformatic/foundation": "3.0.0-alpha.8",
73
- "@platformatic/generators": "3.0.0-alpha.8",
74
- "@platformatic/telemetry": "3.0.0-alpha.8",
75
- "@platformatic/metrics": "3.0.0-alpha.8"
70
+ "@platformatic/basic": "3.0.0-rc.2",
71
+ "@platformatic/generators": "3.0.0-rc.2",
72
+ "@platformatic/metrics": "3.0.0-rc.2",
73
+ "@platformatic/scalar-theme": "3.0.0-rc.2",
74
+ "@platformatic/foundation": "3.0.0-rc.2",
75
+ "@platformatic/telemetry": "3.0.0-rc.2"
76
76
  },
77
77
  "engines": {
78
78
  "node": ">=22.18.0"
package/schema.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/service/3.0.0-alpha.8.json",
3
- "version": "3.0.0-alpha.8",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/service/3.0.0-rc.2.json",
3
+ "version": "3.0.0-rc.2",
4
4
  "title": "Platformatic Service Config",
5
5
  "type": "object",
6
6
  "properties": {
@@ -1549,6 +1549,10 @@
1549
1549
  }
1550
1550
  ]
1551
1551
  },
1552
+ "exitOnUnhandledErrors": {
1553
+ "default": true,
1554
+ "type": "boolean"
1555
+ },
1552
1556
  "gracefulShutdown": {
1553
1557
  "type": "object",
1554
1558
  "properties": {