@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.
- package/CHANGELOG.md +3 -0
- package/package.json +1 -1
- 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
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(
|
|
704
|
+
console.log("Admin password configured.");
|
|
706
705
|
});
|
|
707
706
|
|
|
708
707
|
return server;
|