wattpm 3.61.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/package.json +6 -6
  2. package/schema.json +9 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattpm",
3
- "version": "3.61.0",
3
+ "version": "3.61.1",
4
4
  "description": "The Node.js Application Server",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -30,10 +30,10 @@
30
30
  "pino-pretty": "^13.0.0",
31
31
  "split2": "^4.2.0",
32
32
  "table": "^6.8.2",
33
- "@platformatic/control": "3.61.0",
34
- "@platformatic/foundation": "3.61.0",
35
- "@platformatic/globals": "3.61.0",
36
- "@platformatic/runtime": "3.61.0"
33
+ "@platformatic/control": "3.61.1",
34
+ "@platformatic/foundation": "3.61.1",
35
+ "@platformatic/globals": "3.61.1",
36
+ "@platformatic/runtime": "3.61.1"
37
37
  },
38
38
  "devDependencies": {
39
39
  "cleaner-spec-reporter": "^0.5.0",
@@ -45,7 +45,7 @@
45
45
  "neostandard": "^0.12.0",
46
46
  "typescript": "^5.5.4",
47
47
  "undici": "^7.27.2",
48
- "@platformatic/node": "3.61.0"
48
+ "@platformatic/node": "3.61.1"
49
49
  },
50
50
  "engines": {
51
51
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/wattpm/3.61.0.json",
2
+ "$id": "https://schemas.platformatic.dev/wattpm/3.61.1.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Runtime Config",
5
5
  "type": "object",
@@ -1889,6 +1889,14 @@
1889
1889
  }
1890
1890
  ]
1891
1891
  },
1892
+ "portAssignment": {
1893
+ "type": "string",
1894
+ "enum": [
1895
+ "shared",
1896
+ "perWorkerIncrement"
1897
+ ],
1898
+ "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)."
1899
+ },
1892
1900
  "backlog": {
1893
1901
  "type": "integer",
1894
1902
  "description": "The maximum length of the queue of pending connections"