@amodalai/amodal 0.3.1 → 0.3.2
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amodalai/amodal",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Amodal CLI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -30,11 +30,12 @@
|
|
|
30
30
|
"semver": "^7.6.0",
|
|
31
31
|
"yargs": "^17.7.2",
|
|
32
32
|
"zod": "^4.3.6",
|
|
33
|
-
"@amodalai/types": "0.3.
|
|
34
|
-
"@amodalai/core": "0.3.
|
|
35
|
-
"@amodalai/db": "0.3.
|
|
36
|
-
"@amodalai/runtime": "0.3.
|
|
37
|
-
"@amodalai/
|
|
33
|
+
"@amodalai/types": "0.3.2",
|
|
34
|
+
"@amodalai/core": "0.3.2",
|
|
35
|
+
"@amodalai/db": "0.3.2",
|
|
36
|
+
"@amodalai/runtime": "0.3.2",
|
|
37
|
+
"@amodalai/studio": "0.3.2",
|
|
38
|
+
"@amodalai/runtime-app": "0.3.2"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
40
41
|
"@types/node": "^20.11.24",
|
package/src/commands/dev.ts
CHANGED
|
@@ -491,7 +491,14 @@ Or add it to your agent's .env file:
|
|
|
491
491
|
if (adminAgentUrl) {
|
|
492
492
|
process.stderr.write(` Admin Agent: ${adminAgentUrl}\n`);
|
|
493
493
|
}
|
|
494
|
-
|
|
494
|
+
// Redact credentials from the connection string before printing.
|
|
495
|
+
// Show host + db name so the operator knows which database is in use,
|
|
496
|
+
// but never print the password portion.
|
|
497
|
+
const redactedUrl = databaseUrl.replace(
|
|
498
|
+
/\/\/([^:]+):([^@]+)@/,
|
|
499
|
+
'//$1:***@',
|
|
500
|
+
);
|
|
501
|
+
process.stderr.write(` Database: ${redactedUrl}\n`);
|
|
495
502
|
process.stderr.write('\n');
|
|
496
503
|
|
|
497
504
|
// Preflight connection check (non-blocking)
|