@platformatic/gateway 3.35.1 → 3.37.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
@@ -589,6 +589,10 @@ export interface PlatformaticGatewayConfig {
589
589
  logs?: {
590
590
  maxSize?: number;
591
591
  };
592
+ /**
593
+ * Custom path for the control socket. If not specified, uses the default platform-specific location.
594
+ */
595
+ socket?: string;
592
596
  };
593
597
  metrics?:
594
598
  | boolean
@@ -793,6 +797,7 @@ export interface PlatformaticGatewayConfig {
793
797
  [k: string]: unknown;
794
798
  };
795
799
  applicationTimeout?: number | string;
800
+ startupConcurrency?: number | string;
796
801
  messagingTimeout?: number | string;
797
802
  env?: {
798
803
  [k: string]: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/gateway",
3
- "version": "3.35.1",
3
+ "version": "3.37.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -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.35.1"
36
+ "@platformatic/db": "3.37.0"
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.35.1",
68
- "@platformatic/basic": "3.35.1",
69
- "@platformatic/scalar-theme": "3.35.1",
70
- "@platformatic/service": "3.35.1",
71
- "@platformatic/telemetry": "3.35.1"
67
+ "@platformatic/foundation": "^3.37.0",
68
+ "@platformatic/basic": "3.37.0",
69
+ "@platformatic/service": "3.37.0",
70
+ "@platformatic/scalar-theme": "3.37.0",
71
+ "@platformatic/telemetry": "3.37.0"
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.35.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.37.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Gateway Config",
5
5
  "type": "object",
@@ -2322,6 +2322,10 @@
2322
2322
  }
2323
2323
  },
2324
2324
  "additionalProperties": false
2325
+ },
2326
+ "socket": {
2327
+ "type": "string",
2328
+ "description": "Custom path for the control socket. If not specified, uses the default platform-specific location."
2325
2329
  }
2326
2330
  },
2327
2331
  "additionalProperties": false
@@ -2804,6 +2808,17 @@
2804
2808
  ],
2805
2809
  "default": 300000
2806
2810
  },
2811
+ "startupConcurrency": {
2812
+ "anyOf": [
2813
+ {
2814
+ "type": "number",
2815
+ "minimum": 1
2816
+ },
2817
+ {
2818
+ "type": "string"
2819
+ }
2820
+ ]
2821
+ },
2807
2822
  "messagingTimeout": {
2808
2823
  "anyOf": [
2809
2824
  {