@oh-my-pi/omp-stats 15.13.0 → 15.13.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/CHANGELOG.md +17 -11
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,30 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## [15.13.1] - 2026-06-15
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### Fixed
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
- Dropped `git` from the profanity list so normal repository mentions no longer count as profanity
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
- The session-sync worker re-enters the host CLI entry (`workerHostEntry()` + `__omp_stats_sync_worker` argv selector) when running inside omp — source, npm bundle, or compiled binary — and keeps loading its own `sync-worker.ts` module directly for standalone `omp-stats`, bun test, and SDK hosts
|
|
11
|
+
## [15.12.4] - 2026-06-13
|
|
13
12
|
|
|
14
13
|
### Fixed
|
|
15
14
|
|
|
16
|
-
- Dropped `git` from the profanity list so normal repository mentions no longer count as profanity
|
|
17
15
|
- Fixed the stats dashboard's SQLite init never setting `PRAGMA busy_timeout`, so a concurrent `omp` startup hitting WAL recovery could crash `initDb()` with `SQLITE_BUSY` instead of waiting through it. The busy handler is now installed before `PRAGMA journal_mode=WAL` ([#2421](https://github.com/can1357/oh-my-pi/issues/2421)).
|
|
18
|
-
- Fixed handling of legacy `embedded-client.generated.txt` placeholder content so it is treated as missing archive instead of being decoded into invalid bytes
|
|
19
|
-
- Fixed ENOENT handling while scanning dashboard source/build directories so missing `client/` or `dist/client` trees no longer crash startup
|
|
20
16
|
|
|
21
|
-
## [15.
|
|
17
|
+
## [15.11.0] - 2026-06-10
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
### Added
|
|
24
20
|
|
|
25
|
-
|
|
21
|
+
- Added support for prebuilt npm bundle mode via `PI_BUNDLED`, allowing the stats server to use an embedded dashboard bundle in packaged CLI distributions
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Fixed handling of legacy `embedded-client.generated.txt` placeholder content so it is treated as missing archive instead of being decoded into invalid bytes
|
|
26
|
+
- Fixed ENOENT handling while scanning dashboard source/build directories so missing `client/` or `dist/client` trees no longer crash startup
|
|
26
27
|
|
|
27
28
|
## [15.10.11] - 2026-06-10
|
|
28
29
|
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- Bundled-model lookups (`getBundledModel`, `GeneratedProvider`) now import from the new `@oh-my-pi/pi-catalog` package instead of the `@oh-my-pi/pi-ai` barrel, which no longer re-exports catalog values
|
|
33
|
+
- The session-sync worker re-enters the host CLI entry (`workerHostEntry()` + `__omp_stats_sync_worker` argv selector) when running inside omp — source, npm bundle, or compiled binary — and keeps loading its own `sync-worker.ts` module directly for standalone `omp-stats`, bun test, and SDK hosts
|
|
34
|
+
|
|
29
35
|
## [15.1.6] - 2026-05-19
|
|
30
36
|
|
|
31
37
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/omp-stats",
|
|
4
|
-
"version": "15.13.
|
|
4
|
+
"version": "15.13.2",
|
|
5
5
|
"description": "Local observability dashboard for pi AI usage statistics",
|
|
6
6
|
"homepage": "https://omp.sh",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"fmt": "biome format --write ."
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@oh-my-pi/pi-ai": "15.13.
|
|
41
|
-
"@oh-my-pi/pi-catalog": "15.13.
|
|
42
|
-
"@oh-my-pi/pi-utils": "15.13.
|
|
40
|
+
"@oh-my-pi/pi-ai": "15.13.2",
|
|
41
|
+
"@oh-my-pi/pi-catalog": "15.13.2",
|
|
42
|
+
"@oh-my-pi/pi-utils": "15.13.2",
|
|
43
43
|
"@tailwindcss/node": "^4.3.0",
|
|
44
44
|
"chart.js": "^4.5.1",
|
|
45
45
|
"date-fns": "^4.4.0",
|