@hienlh/ppm 0.12.3 → 0.12.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 +11 -0
- package/bun.lock +2062 -0
- package/bunfig.toml +2 -0
- package/dist/web/assets/{audio-preview-BgNGrjI5.js → audio-preview-BMmzgbUs.js} +1 -1
- package/dist/web/assets/{chat-tab-CwGUUa-K.js → chat-tab-NteLsEST.js} +3 -3
- package/dist/web/assets/{code-editor-DC-FL0Aa.js → code-editor-Da9GXN5w.js} +2 -2
- package/dist/web/assets/{conflict-editor-Bjm8Q-BR.js → conflict-editor-CBietP8L.js} +1 -1
- package/dist/web/assets/{database-viewer-hfNX4jtm.js → database-viewer-CZgooyFp.js} +1 -1
- package/dist/web/assets/{diff-viewer-ysa9Nusv.js → diff-viewer-BVYjlTcF.js} +1 -1
- package/dist/web/assets/{extension-webview-divCWh-k.js → extension-webview-DyZOGDb1.js} +1 -1
- package/dist/web/assets/{image-preview-BC9GGQrQ.js → image-preview-k8_kzoHe.js} +1 -1
- package/dist/web/assets/{index-DUhdCwsI.js → index-CXR1vYHY.js} +2 -2
- package/dist/web/assets/{markdown-renderer-CwELDbSv.js → markdown-renderer-CJOPseDk.js} +1 -1
- package/dist/web/assets/{pdf-preview-BjA25aBK.js → pdf-preview-GCIIaZVw.js} +1 -1
- package/dist/web/assets/{port-forwarding-tab-W-okYelP.js → port-forwarding-tab-DzLa02_D.js} +1 -1
- package/dist/web/assets/{postgres-viewer-DEpNd-02.js → postgres-viewer-JCT24Yqh.js} +1 -1
- package/dist/web/assets/{settings-tab-DTc4Xc6d.js → settings-tab-bYmVV0Ww.js} +1 -1
- package/dist/web/assets/{sqlite-viewer-CoHfjguP.js → sqlite-viewer-nA_Biwex.js} +1 -1
- package/dist/web/assets/{terminal-tab-NFRaKWT1.js → terminal-tab-DvKxdDv4.js} +1 -1
- package/dist/web/assets/{video-preview-CzXY4vKX.js → video-preview-CAGgINCA.js} +1 -1
- package/dist/web/index.html +1 -1
- package/dist/web/sw.js +1 -1
- package/package.json +1 -1
- package/src/cli/commands/db-cmd.ts +5 -0
- package/src/index.ts +0 -0
- package/src/providers/claude-agent-sdk.ts +5 -0
- package/src/web/hooks/use-chat.ts +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.12.5] - 2026-04-20
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **CLI db commands hang**: Close postgres connection pool after CLI operations (`db test`, `db tables`, `db schema`, `db data`, `db query`) — cached pool's 5min idle timer was keeping the process alive
|
|
7
|
+
|
|
8
|
+
## [0.12.4] - 2026-04-20
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Auth retry content leak**: Reset streaming state (`lastPartialText`, `assistantContent`) on retry — prevents stale error text from suppressing retry response
|
|
12
|
+
- **Error text not cleared on retry**: Frontend now clears previous streaming events on `account_retry`, removing "Failed to authenticate" text before showing retry response
|
|
13
|
+
|
|
3
14
|
## [0.12.3] - 2026-04-20
|
|
4
15
|
|
|
5
16
|
### Added
|