agentic-qe 3.8.8 → 3.8.9
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/.claude/skills/skills-manifest.json +1 -1
- package/CHANGELOG.md +16 -0
- package/dist/cli/bundle.js +711 -710
- package/dist/cli/commands/ruvector-commands.js +41 -1
- package/dist/domains/code-intelligence/services/knowledge-graph.js +3 -0
- package/dist/domains/coverage-analysis/services/coverage-parser.d.ts +72 -4
- package/dist/domains/coverage-analysis/services/coverage-parser.js +559 -6
- package/dist/governance/proof-envelope-integration.js +10 -4
- package/dist/integrations/coherence/engines/witness-adapter.d.ts +5 -5
- package/dist/integrations/coherence/engines/witness-adapter.js +10 -22
- package/dist/integrations/ruvector/coherence-gate.d.ts +14 -5
- package/dist/integrations/ruvector/coherence-gate.js +34 -6
- package/dist/learning/agent-routing.d.ts +7 -2
- package/dist/learning/agent-routing.js +17 -1
- package/dist/mcp/bundle.js +373 -372
- package/dist/mcp/tools/coverage-analysis/index.d.ts +12 -0
- package/dist/mcp/tools/coverage-analysis/index.js +27 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to the Agentic QE project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.8.9] - 2026-03-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Multi-language coverage parsers** — 6 new parsers for JaCoCo (Java/Kotlin), dotcover (C#/.NET), Tarpaulin (Rust), Go cover, Kover (Kotlin/JVM), and xcresult (Swift/iOS), extending coverage analysis beyond JavaScript/TypeScript.
|
|
13
|
+
- **Language-aware agent routing** — Agent routing now considers source language when selecting models and strategies, with MCP schema support for the `language` parameter.
|
|
14
|
+
- **RuVector P1 scale benchmarks** — Production-scale benchmarks for 10K/100K vector operations, concurrency stress tests, and HNSW memory usage display in `aqe ruvector status`.
|
|
15
|
+
- **Knowledge graph language extensions** — Added Swift and C# file extension mappings for broader polyglot code intelligence.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- **SHA-256 witness hashing** — Replaced insecure djb2 hash with SHA-256 in the witness adapter for cryptographic integrity of coherence proofs.
|
|
20
|
+
- **Coherence gate witness persistence** — Witnesses are now persisted to the proof envelope, ensuring audit trail continuity across sessions.
|
|
21
|
+
- **Hardcoded signing key removed** — Eliminated a hardcoded key from the coherence gate; signing keys are now derived from configuration.
|
|
22
|
+
- **Benchmark output formatting** — Fixed RuVector benchmark result display to correctly report metrics.
|
|
23
|
+
|
|
8
24
|
## [3.8.8] - 2026-03-24
|
|
9
25
|
|
|
10
26
|
### Added
|