@hienlh/ppm 0.8.80 → 0.8.81
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 +5 -0
- package/package.json +1 -1
- package/src/server/index.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.8.81] - 2026-04-01
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Usage polling**: Re-wire `startUsagePolling()` into server startup — accidentally removed during supervisor refactor, causing prod to never auto-fetch usage limits (only manual refresh worked)
|
|
7
|
+
|
|
3
8
|
## [0.8.80] - 2026-04-01
|
|
4
9
|
|
|
5
10
|
### Added
|
package/package.json
CHANGED
package/src/server/index.ts
CHANGED
|
@@ -437,5 +437,8 @@ if (process.argv.includes("__serve__")) {
|
|
|
437
437
|
// Start background account token refresh in daemon child
|
|
438
438
|
import("../services/account.service.ts").then(({ accountService }) => accountService.startAutoRefresh()).catch(() => {});
|
|
439
439
|
|
|
440
|
+
// Start background usage limit polling (every 5 min)
|
|
441
|
+
import("../services/claude-usage.service.ts").then(({ startUsagePolling }) => startUsagePolling()).catch(() => {});
|
|
442
|
+
|
|
440
443
|
console.log(`Server child ready on port ${port}`);
|
|
441
444
|
}
|