@platformatic/foundation 3.60.0 → 3.61.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 (2) hide show
  1. package/lib/schema.js +5 -0
  2. package/package.json +1 -1
package/lib/schema.js CHANGED
@@ -362,6 +362,11 @@ export const server = {
362
362
  port: {
363
363
  anyOf: [{ type: 'integer' }, { type: 'string' }]
364
364
  },
365
+ portAssignment: {
366
+ type: 'string',
367
+ enum: ['shared', 'perWorkerIncrement'],
368
+ description: 'Configures how entrypoint server worker ports are assigned. When set to shared, all workers listen on the same port. When set to perWorkerIncrement, each worker will use its own port, starting from port (worker 0).'
369
+ },
365
370
  backlog: {
366
371
  type: 'integer',
367
372
  description: 'The maximum length of the queue of pending connections'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/foundation",
3
- "version": "3.60.0",
3
+ "version": "3.61.1",
4
4
  "description": "Platformatic Foundation",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",