@platformatic/foundation 3.14.0 → 3.15.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.
Files changed (2) hide show
  1. package/lib/schema.js +8 -0
  2. package/package.json +1 -1
package/lib/schema.js CHANGED
@@ -744,6 +744,10 @@ export const applications = {
744
744
  useHttp: {
745
745
  type: 'boolean'
746
746
  },
747
+ reuseTcpPorts: {
748
+ type: 'boolean',
749
+ default: true
750
+ },
747
751
  workers: {
748
752
  anyOf: [
749
753
  {
@@ -916,6 +920,10 @@ export const runtimeProperties = {
916
920
  },
917
921
  logger,
918
922
  server,
923
+ reuseTcpPorts: {
924
+ type: 'boolean',
925
+ default: true
926
+ },
919
927
  startTimeout: {
920
928
  default: 30000,
921
929
  type: 'number',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/foundation",
3
- "version": "3.14.0",
3
+ "version": "3.15.0",
4
4
  "description": "Platformatic Foundation",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",