agenr 0.9.61 → 0.9.62

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 CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.62] - 2026-03-03
4
+
5
+ ### Fixed
6
+
7
+ - Restored deleted integration and scoring coverage in `tests/db/recall.test.ts` after the Phase 4 field-removal rewrite.
8
+ - Updated restored recall tests to the `recall_events` model: removed legacy `StoredEntry` recall fields, replaced metadata assertions with `recall_events` checks, and removed `useRecallEvents` and `recallStrength` legacy-path tests.
9
+ - Restored `warmStartThreshold` and `syntheticFloor` coverage in `tests/db/recall-score-metrics.test.ts` and removed legacy compatibility assertions tied to deleted scoring paths.
10
+
11
+ ### Changed
12
+
13
+ - **BREAKING**: Recall scoring now exclusively uses `recall_events` table; legacy entry-level `recall_count`, `last_recalled_at`, and `recall_intervals` fields are no longer read or written
14
+ - `computeSpacingFactor` simplified to use only `maxGapDays` from RecallMetrics
15
+ - `scoreEntry` / `scoreEntryWithBreakdown` now require `metricsMap` parameter (no longer optional)
16
+ - Retirement, health, consolidation, maintenance, and `forgettingScore` queries derive recall activity from `recall_events` table
17
+ - Removed legacy `recallStrength` function (replaced by `recallStrengthFromMetrics`)
18
+
19
+ ### Removed
20
+
21
+ - `scoring.useRecallEvents` feature flag - recall_events is now the sole scoring path
22
+ - `recall_count`, `last_recalled_at`, `recall_intervals` from `StoredEntry` type
23
+ - Dual-write of entry-level recall columns in `updateRecallMetadata`
24
+ - Legacy interval-parsing and imputation in `computeSpacingFactor`
25
+ - In-memory recall_count mutation in CLI recall and MCP server handlers
26
+
3
27
  ## [0.9.61] - 2026-03-03
4
28
 
5
29
  ### Added