@code-insights/cli 3.0.2 → 3.1.0
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 +12 -0
- package/dashboard-dist/dist/assets/index-BuJps5yp.js +548 -0
- package/dashboard-dist/dist/index.html +1 -1
- package/dist/commands/sync.d.ts.map +1 -1
- package/dist/commands/sync.js +20 -4
- package/dist/commands/sync.js.map +1 -1
- package/dist/db/schema.d.ts +1 -0
- package/dist/db/schema.d.ts.map +1 -1
- package/dist/db/schema.js +1 -0
- package/dist/db/schema.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/providers/codex.js +31 -0
- package/dist/providers/codex.js.map +1 -1
- package/dist/providers/copilot-cli.js +14 -2
- package/dist/providers/copilot-cli.js.map +1 -1
- package/dist/providers/cursor.js +44 -2
- package/dist/providers/cursor.js.map +1 -1
- package/dist/utils/telemetry.d.ts.map +1 -1
- package/dist/utils/telemetry.js +28 -3
- package/dist/utils/telemetry.js.map +1 -1
- package/package.json +3 -1
- package/server-dist/dist/index.d.ts +9 -1
- package/server-dist/dist/index.d.ts.map +1 -1
- package/server-dist/dist/index.js +15 -5
- package/server-dist/dist/index.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@code-insights/cli` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [3.0.3] - 2026-02-28
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **`--version` now reads from package.json** — Previously hardcoded as `3.0.0`, causing `code-insights --version` to always report `3.0.0` regardless of installed version.
|
|
10
|
+
|
|
11
|
+
## [3.0.2] - 2026-02-28
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **Added missing server runtime dependencies** — `hono` and `@hono/node-server` added to CLI package.json so `code-insights dashboard` works for npm-installed users.
|
|
16
|
+
|
|
5
17
|
## [3.0.0] - 2026-02-28
|
|
6
18
|
|
|
7
19
|
See [MIGRATION.md](../MIGRATION.md) for the full upgrade guide from v2.
|