@platformatic/nest 3.21.0 → 3.23.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
@@ -60,6 +60,10 @@ export interface PlatformaticNestJSConfig {
60
60
  server?: {
61
61
  hostname?: string;
62
62
  port?: number | string;
63
+ /**
64
+ * The maximum length of the queue of pending connections
65
+ */
66
+ backlog?: number;
63
67
  http2?: boolean;
64
68
  https?: {
65
69
  allowHTTP1?: boolean;
@@ -185,6 +189,10 @@ export interface PlatformaticNestJSConfig {
185
189
  server?: {
186
190
  hostname?: string;
187
191
  port?: number | string;
192
+ /**
193
+ * The maximum length of the queue of pending connections
194
+ */
195
+ backlog?: number;
188
196
  http2?: boolean;
189
197
  https?: {
190
198
  allowHTTP1?: boolean;
package/lib/capability.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  BaseCapability,
3
3
  cleanBasePath,
4
+ createServerListener,
4
5
  ensureTrailingSlash,
5
6
  errors,
6
7
  getServerUrl,
@@ -226,6 +227,10 @@ export class NestCapability extends BaseCapability {
226
227
  const serverOptions = this.serverConfig
227
228
  const listenOptions = { host: serverOptions?.hostname || '127.0.0.1', port: serverOptions?.port || 0 }
228
229
 
230
+ if (typeof serverOptions?.backlog === 'number') {
231
+ createServerListener(false, false, { backlog: serverOptions.backlog })
232
+ }
233
+
229
234
  await this.#app.listen(listenOptions)
230
235
  this.url = getServerUrl(this.#isFastify ? this.#server.server : this.#server)
231
236
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/nest",
3
- "version": "3.21.0",
3
+ "version": "3.23.0",
4
4
  "description": "Platformatic Nest.js Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -18,9 +18,9 @@
18
18
  "get-port": "^7.1.0",
19
19
  "light-my-request": "^6.0.0",
20
20
  "pino-http": "^10.2.0",
21
- "@platformatic/basic": "3.21.0",
22
- "@platformatic/generators": "3.21.0",
23
- "@platformatic/foundation": "3.21.0"
21
+ "@platformatic/basic": "3.23.0",
22
+ "@platformatic/foundation": "3.23.0",
23
+ "@platformatic/generators": "3.23.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@nestjs/cli": "^11.0.7",
@@ -33,8 +33,8 @@
33
33
  "neostandard": "^0.12.0",
34
34
  "tsx": "^4.19.0",
35
35
  "typescript": "^5.5.4",
36
- "@platformatic/gateway": "3.21.0",
37
- "@platformatic/service": "3.21.0"
36
+ "@platformatic/service": "3.23.0",
37
+ "@platformatic/gateway": "3.23.0"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/nest/3.21.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/nest/3.23.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic NestJS Config",
5
5
  "type": "object",
@@ -178,6 +178,10 @@
178
178
  }
179
179
  ]
180
180
  },
181
+ "backlog": {
182
+ "type": "integer",
183
+ "description": "The maximum length of the queue of pending connections"
184
+ },
181
185
  "http2": {
182
186
  "type": "boolean"
183
187
  },
@@ -907,6 +911,10 @@
907
911
  }
908
912
  ]
909
913
  },
914
+ "backlog": {
915
+ "type": "integer",
916
+ "description": "The maximum length of the queue of pending connections"
917
+ },
910
918
  "http2": {
911
919
  "type": "boolean"
912
920
  },