@platformatic/db 3.23.0 → 3.24.0-alpha0

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 +0 -4
  2. package/package.json +12 -12
  3. package/schema.json +1 -5
package/config.d.ts CHANGED
@@ -551,10 +551,6 @@ export interface PlatformaticDatabaseConfig {
551
551
  server?: {
552
552
  hostname?: string;
553
553
  port?: number | string;
554
- /**
555
- * The maximum length of the queue of pending connections
556
- */
557
- backlog?: number;
558
554
  http2?: boolean;
559
555
  https?: {
560
556
  allowHTTP1?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/db",
3
- "version": "3.23.0",
3
+ "version": "3.24.0-alpha0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -66,17 +66,17 @@
66
66
  "rfdc": "^1.3.1",
67
67
  "rimraf": "^4.4.1",
68
68
  "semgrator": "^0.3.0",
69
- "@platformatic/basic": "3.23.0",
70
- "@platformatic/db-authorization": "3.23.0",
71
- "@platformatic/db-core": "3.23.0",
72
- "@platformatic/foundation": "3.23.0",
73
- "@platformatic/service": "3.23.0",
74
- "@platformatic/sql-events": "3.23.0",
75
- "@platformatic/sql-graphql": "3.23.0",
76
- "@platformatic/sql-mapper": "3.23.0",
77
- "@platformatic/sql-json-schema-mapper": "3.23.0",
78
- "@platformatic/sql-openapi": "3.23.0",
79
- "@platformatic/telemetry": "3.23.0"
69
+ "@platformatic/basic": "3.24.0-alpha0",
70
+ "@platformatic/db-core": "3.24.0-alpha0",
71
+ "@platformatic/db-authorization": "3.24.0-alpha0",
72
+ "@platformatic/foundation": "3.24.0-alpha0",
73
+ "@platformatic/service": "3.24.0-alpha0",
74
+ "@platformatic/sql-events": "3.24.0-alpha0",
75
+ "@platformatic/sql-json-schema-mapper": "3.24.0-alpha0",
76
+ "@platformatic/sql-graphql": "3.24.0-alpha0",
77
+ "@platformatic/sql-mapper": "3.24.0-alpha0",
78
+ "@platformatic/sql-openapi": "3.24.0-alpha0",
79
+ "@platformatic/telemetry": "3.24.0-alpha0"
80
80
  },
81
81
  "engines": {
82
82
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/db/3.23.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/db/3.24.0-alpha0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Database Config",
5
5
  "type": "object",
@@ -1846,10 +1846,6 @@
1846
1846
  }
1847
1847
  ]
1848
1848
  },
1849
- "backlog": {
1850
- "type": "integer",
1851
- "description": "The maximum length of the queue of pending connections"
1852
- },
1853
1849
  "http2": {
1854
1850
  "type": "boolean"
1855
1851
  },