@platformatic/service 2.75.0-alpha.0 → 2.75.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
@@ -423,6 +423,7 @@ export interface PlatformaticService {
423
423
  };
424
424
  startTimeout?: number;
425
425
  restartOnError?: boolean | number;
426
+ exitOnUnhandledErrors?: boolean;
426
427
  gracefulShutdown?: {
427
428
  runtime: number | string;
428
429
  service: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/service",
3
- "version": "2.75.0-alpha.0",
3
+ "version": "2.75.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -75,14 +75,14 @@
75
75
  "rfdc": "^1.3.1",
76
76
  "semgrator": "^0.3.0",
77
77
  "undici": "^7.0.0",
78
- "@platformatic/client": "2.75.0-alpha.0",
79
- "@platformatic/config": "2.75.0-alpha.0",
80
- "@platformatic/generators": "2.75.0-alpha.0",
81
- "@platformatic/scalar-theme": "2.75.0-alpha.0",
82
- "@platformatic/metrics": "2.75.0-alpha.0",
83
- "@platformatic/utils": "2.75.0-alpha.0",
84
- "@platformatic/ts-compiler": "2.75.0-alpha.0",
85
- "@platformatic/telemetry": "2.75.0-alpha.0"
78
+ "@platformatic/client": "2.75.0",
79
+ "@platformatic/config": "2.75.0",
80
+ "@platformatic/generators": "2.75.0",
81
+ "@platformatic/metrics": "2.75.0",
82
+ "@platformatic/scalar-theme": "2.75.0",
83
+ "@platformatic/ts-compiler": "2.75.0",
84
+ "@platformatic/utils": "2.75.0",
85
+ "@platformatic/telemetry": "2.75.0"
86
86
  },
87
87
  "scripts": {
88
88
  "test": "pnpm run lint && borp -T --concurrency=1 --timeout=1200000 && tsd",
package/schema.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/service/2.75.0-alpha.0.json",
3
- "version": "2.75.0-alpha.0",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/service/2.75.0.json",
3
+ "version": "2.75.0",
4
4
  "title": "Platformatic Service",
5
5
  "type": "object",
6
6
  "properties": {
@@ -1458,6 +1458,10 @@
1458
1458
  }
1459
1459
  ]
1460
1460
  },
1461
+ "exitOnUnhandledErrors": {
1462
+ "default": true,
1463
+ "type": "boolean"
1464
+ },
1461
1465
  "gracefulShutdown": {
1462
1466
  "type": "object",
1463
1467
  "properties": {