@inetafrica/open-claudia 1.19.4 → 1.19.5

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 (3) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/package.json +1 -1
  3. package/web.js +1 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.19.5
4
+ - Stop printing the Web UI admin password in startup logs.
5
+
3
6
  ## v1.19.4
4
7
  - Legacy/static env-only deployments with no persisted `auth.json` owner now treat configured `TELEGRAM_CHAT_ID` chats as owners for shared auth commands. This fixes authorized test chats being blocked from `/codex_login` when no `isOwner` metadata exists yet.
5
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inetafrica/open-claudia",
3
- "version": "1.19.4",
3
+ "version": "1.19.5",
4
4
  "description": "Your always-on AI coding assistant — Claude Code, Cursor Agent, and OpenAI Codex via Telegram",
5
5
  "main": "bot.js",
6
6
  "bin": {
package/web.js CHANGED
@@ -700,9 +700,8 @@ function startWebServer() {
700
700
  });
701
701
 
702
702
  server.listen(PORT, () => {
703
- const pw = getPassword();
704
703
  console.log(`Web UI running on http://localhost:${PORT}`);
705
- console.log(`Admin password: ${pw}`);
704
+ console.log("Admin password configured.");
706
705
  });
707
706
 
708
707
  return server;