Compare commits

..

2 Commits

Author SHA1 Message Date
Mauricio Siu
0e136ffb8f Merge pull request #632 from Dokploy/canary
v10.7.0
2024-10-30 23:10:48 -06:00
Mauricio Siu
95e53169b1 chore(version): bump version 2024-10-30 23:07:05 -06:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -43,7 +43,7 @@ export const generatePassword = (quantity = 16): string => {
Math.floor(Math.random() * characters.length),
);
}
return password;
return password.toLowerCase();
};
export const generateBase64 = (bytes = 32): string => {