@platformatic/gateway 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.
package/config.d.ts CHANGED
@@ -456,10 +456,6 @@ export interface PlatformaticGatewayConfig {
456
456
  server?: {
457
457
  hostname?: string;
458
458
  port?: number | string;
459
- /**
460
- * The maximum length of the queue of pending connections
461
- */
462
- backlog?: number;
463
459
  http2?: boolean;
464
460
  https?: {
465
461
  allowHTTP1?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/gateway",
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",
@@ -25,7 +25,7 @@
25
25
  "neostandard": "^0.12.0",
26
26
  "openapi-schema-validator": "^12.1.3",
27
27
  "pino-test": "^1.0.1",
28
- "prom-client": "^15.1.2",
28
+ "@platformatic/prom-client": "^1.0.0",
29
29
  "self-cert": "^2.0.0",
30
30
  "single-user-cache": "^1.0.1",
31
31
  "split2": "^4.2.0",
@@ -33,7 +33,7 @@
33
33
  "typescript": "^5.5.4",
34
34
  "why-is-node-running": "2",
35
35
  "ws": "^8.16.0",
36
- "@platformatic/db": "3.23.0"
36
+ "@platformatic/db": "3.24.0-alpha0"
37
37
  },
38
38
  "dependencies": {
39
39
  "@fastify/error": "^4.0.0",
@@ -64,11 +64,11 @@
64
64
  "rfdc": "^1.3.1",
65
65
  "semgrator": "^0.3.0",
66
66
  "undici": "^7.0.0",
67
- "@platformatic/foundation": "^3.23.0",
68
- "@platformatic/scalar-theme": "3.23.0",
69
- "@platformatic/telemetry": "3.23.0",
70
- "@platformatic/service": "3.23.0",
71
- "@platformatic/basic": "3.23.0"
67
+ "@platformatic/basic": "3.24.0-alpha0",
68
+ "@platformatic/scalar-theme": "3.24.0-alpha0",
69
+ "@platformatic/foundation": "^3.24.0-alpha0",
70
+ "@platformatic/service": "3.24.0-alpha0",
71
+ "@platformatic/telemetry": "3.24.0-alpha0"
72
72
  },
73
73
  "engines": {
74
74
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.23.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.24.0-alpha0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Gateway Config",
5
5
  "type": "object",
@@ -1797,10 +1797,6 @@
1797
1797
  }
1798
1798
  ]
1799
1799
  },
1800
- "backlog": {
1801
- "type": "integer",
1802
- "description": "The maximum length of the queue of pending connections"
1803
- },
1804
1800
  "http2": {
1805
1801
  "type": "boolean"
1806
1802
  },