agentic-qe 3.8.9 → 3.8.10

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.
@@ -932,7 +932,7 @@
932
932
  },
933
933
  "metadata": {
934
934
  "generatedBy": "Agentic QE Fleet",
935
- "fleetVersion": "3.8.9",
935
+ "fleetVersion": "3.8.10",
936
936
  "manifestVersion": "1.3.0",
937
937
  "lastUpdated": "2026-02-04T00:00:00.000Z",
938
938
  "contributors": [
package/CHANGELOG.md CHANGED
@@ -5,6 +5,17 @@ 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.10] - 2026-03-26
9
+
10
+ ### Fixed
11
+
12
+ - **Coverage data pipeline** — Coverage data now flows correctly from test execution through to quality scores. Previously, `quality_assess` reported fabricated coverage (up to 95%) because it read from keys that nothing wrote to. All 5 orphaned key conventions have been unified into a consistent `coverage:latest`, `coverage:previous`, and `coverage:file:{path}` ecosystem.
13
+ - **Test runner coverage collection** — `test_execute_parallel` now passes `--coverage` flags to vitest and jest, and reads `coverage-summary.json` from disk when runners write coverage to files rather than stdout.
14
+ - **Per-file coverage storage** — Coverage data is now stored via the key-value API (not just the vector store), so quality-analyzer, defect-predictor, and defect-investigation can all read per-file coverage.
15
+ - **Coverage trend detection** — `coverage:previous` is now correctly rotated before each new snapshot, enabling quality-gate trend detection that was previously always reporting "stable".
16
+ - **Quality score fairness** — Projects without coverage tooling no longer receive a false 25-point quality score penalty. Missing coverage reports as unavailable (-1) rather than 0%.
17
+ - **Coverage tracker accuracy** — The coverage-tracker worker now reads real data from `coverage:latest` instead of returning hardcoded fake values.
18
+
8
19
  ## [3.8.9] - 2026-03-25
9
20
 
10
21
  ### Added