Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default function getBaseConfigFactory() {
},
gateway: {
docker: {
image: 'dashpay/envoy:1.30.2-impr.1',
image: 'dashpay/envoy:1.35.11-impr.1',
},
maxConnections: 1000,
maxHeapSizeInBytes: 125000000, // 1 Gb
Expand Down
18 changes: 18 additions & 0 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -1398,6 +1398,24 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)

return configFile;
},
'3.0.2': (configFile) => {
// Patch the Platform Gateway (Envoy) image for CVE-2026-47774 /
// GHSA-22m2-hvr2-xqc8: an unauthenticated HTTP/2 downstream
// memory-exhaustion DoS. Only configs still on the EOL,
// dashmate-shipped 1.30.x Envoy image are bumped to the patched base
// default (Envoy 1.35.11); a deliberately customised image (private
// fork, vendor-patched build, `:latest`, etc.) is left untouched.
const patchedImage = base.get('platform.gateway.docker.image');
Object.entries(configFile.configs)
.forEach(([, options]) => {
const docker = options.platform?.gateway?.docker;
if (docker && /^dashpay\/envoy:1\.30\./.test(docker.image)) {
docker.image = patchedImage;
}
});

return configFile;
},
};
Comment thread
shumkov marked this conversation as resolved.
}

Expand Down
2 changes: 1 addition & 1 deletion packages/dashmate/docs/config/gateway.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The `platform.gateway` section configures the Dash Platform Gateway, which serve

| Option | Description | Default | Example |
|--------|-------------|---------|---------|
| `platform.gateway.docker.image` | Docker image for Gateway | `dashpay/envoy:1.30.2-impr.1` | `dashpay/envoy:latest` |
| `platform.gateway.docker.image` | Docker image for Gateway | `dashpay/envoy:1.35.11-impr.1` | `dashpay/envoy:latest` |

## Listeners

Expand Down
2 changes: 1 addition & 1 deletion packages/dashmate/docs/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ $ dashmate update --format=json --config local_1 | jq
"name": "gateway",
"title": "Gateway",
"updated": "up to date",
"image": "dashpay/envoy:1.30.2-impr.1"
"image": "dashpay/envoy:1.35.11-impr.1"
}
]
```
Expand Down
Loading