Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- **Dependency vulnerabilities**: Bumped transitive dependency pins to patched releases so `npm audit` reports 0 vulnerabilities: `hono` 4.12.34 (CORS ReDoS), `ip-address` 10.4.0 (SSRF and trust-boundary bypasses), `fast-uri` 3.1.5 (host confusion), `postcss` 8.5.26 (source-map disclosure), `undici` 8.9.0 via `@earendil-works/pi-coding-agent` 0.84.0 (CRLF injection, cache parsing, cookie and retry issues), `brace-expansion` 5.0.9 (DoS), and `@eslint/config-array` 0.23.5 (minimatch-based DoS path).

- **Cross-repo comparison latency**: Omit non-comparable CodeGraph CLI startup time from fair quality tables while retaining raw timing artifacts for diagnostics.
- **Cross-repo comparison eligibility**: Exclude documentation-only symbols from the CodeGraph exact-definition cohort, keeping the comparator aligned to source-intent definition retrieval.
- **Exact definition context**: Preserve exact definition lookup ordering when assembling `codebase_context` evidence, so diversification cannot displace the requested definition.
Expand Down
178 changes: 121 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"zod": "^4.4.3"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.82.0",
"@earendil-works/pi-coding-agent": "^0.84.0",
"@eslint/js": "^9.39.4",
"@napi-rs/cli": "^3.6.0",
"@types/node": "^25.5.2",
Expand All @@ -113,18 +113,20 @@
"vitest": "^4.1.2"
},
"overrides": {
"@eslint/config-array": "0.23.5",
"@hono/node-server": "2.0.10",
"brace-expansion": "5.0.8",
"brace-expansion": "5.0.9",
"express-rate-limit": "8.5.2",
"fast-uri": "3.1.4",
"hono": "4.12.27",
"ip-address": "10.2.0",
"postcss": "8.5.18",
"fast-uri": "3.1.5",
"hono": "4.12.34",
"ip-address": "10.4.0",
"postcss": "8.5.26",
"qs": "6.15.2",
"vite": "8.0.16",
"esbuild": "0.28.1",
"body-parser": "2.3.0",
"js-yaml": "4.3.0"
"js-yaml": "4.3.0",
"undici": "8.10.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
Expand Down
Loading