Merge pull request #4380 from Dokploy/4379-deployments-does-not-load-in-v0293

fix(wss): add colon to directory validation regex to fix deployment logs loading
This commit is contained in:
Mauricio Siu
2026-05-11 13:34:55 -06:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "dokploy",
"version": "v0.29.3",
"version": "v0.29.4",
"private": true,
"license": "Apache-2.0",
"type": "module",

View File

@@ -40,7 +40,7 @@ export const readValidDirectory = (
directory: string,
serverId?: string | null,
) => {
if (!/^[\w/. -]{1,500}$/.test(directory)) {
if (!/^[\w/. :-]{1,500}$/.test(directory)) {
return false;
}