@platformatic/db 3.0.0-alpha.8 → 3.0.0-rc.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.
Files changed (3) hide show
  1. package/config.d.ts +1 -0
  2. package/package.json +13 -13
  3. package/schema.json +5 -1
package/config.d.ts CHANGED
@@ -568,6 +568,7 @@ export interface PlatformaticDatabaseConfig {
568
568
  };
569
569
  startTimeout?: number;
570
570
  restartOnError?: boolean | number;
571
+ exitOnUnhandledErrors?: boolean;
571
572
  gracefulShutdown?: {
572
573
  runtime: number | string;
573
574
  application: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/db",
3
- "version": "3.0.0-alpha.8",
3
+ "version": "3.0.0-rc.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -66,18 +66,18 @@
66
66
  "rfdc": "^1.3.1",
67
67
  "rimraf": "^4.4.1",
68
68
  "semgrator": "^0.3.0",
69
- "@platformatic/basic": "3.0.0-alpha.8",
70
- "@platformatic/db-core": "3.0.0-alpha.8",
71
- "@platformatic/generators": "3.0.0-alpha.8",
72
- "@platformatic/db-authorization": "3.0.0-alpha.8",
73
- "@platformatic/service": "3.0.0-alpha.8",
74
- "@platformatic/sql-events": "3.0.0-alpha.8",
75
- "@platformatic/sql-graphql": "3.0.0-alpha.8",
76
- "@platformatic/foundation": "3.0.0-alpha.8",
77
- "@platformatic/sql-json-schema-mapper": "3.0.0-alpha.8",
78
- "@platformatic/sql-mapper": "3.0.0-alpha.8",
79
- "@platformatic/sql-openapi": "3.0.0-alpha.8",
80
- "@platformatic/telemetry": "3.0.0-alpha.8"
69
+ "@platformatic/basic": "3.0.0-rc.1",
70
+ "@platformatic/db-core": "3.0.0-rc.1",
71
+ "@platformatic/db-authorization": "3.0.0-rc.1",
72
+ "@platformatic/foundation": "3.0.0-rc.1",
73
+ "@platformatic/generators": "3.0.0-rc.1",
74
+ "@platformatic/service": "3.0.0-rc.1",
75
+ "@platformatic/sql-events": "3.0.0-rc.1",
76
+ "@platformatic/sql-json-schema-mapper": "3.0.0-rc.1",
77
+ "@platformatic/sql-graphql": "3.0.0-rc.1",
78
+ "@platformatic/sql-openapi": "3.0.0-rc.1",
79
+ "@platformatic/telemetry": "3.0.0-rc.1",
80
+ "@platformatic/sql-mapper": "3.0.0-rc.1"
81
81
  },
82
82
  "engines": {
83
83
  "node": ">=22.18.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/db/3.0.0-alpha.8.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/db/3.0.0-rc.1.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Database Config",
5
5
  "type": "object",
@@ -1860,6 +1860,10 @@
1860
1860
  }
1861
1861
  ]
1862
1862
  },
1863
+ "exitOnUnhandledErrors": {
1864
+ "default": true,
1865
+ "type": "boolean"
1866
+ },
1863
1867
  "gracefulShutdown": {
1864
1868
  "type": "object",
1865
1869
  "properties": {