goldenmatch 0.4.0 → 0.5.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 CHANGED
@@ -4,6 +4,40 @@ All notable changes to goldenmatch-js are documented in this file.
4
4
 
5
5
  Format follows [Keep a Changelog](https://keepachangelog.com/). Versioning follows [Semantic Versioning](https://semver.org/) (strict after v1.0.0).
6
6
 
7
+ ## [0.5.0] - 2026-05-10
8
+
9
+ Auto-config controller parity with Python `goldenmatch` v1.7 + v1.8.
10
+
11
+ ### Added
12
+
13
+ - `AutoConfigController` (async `.run()`) — iterative auto-config with
14
+ pathological-input gates, deterministic sampling, policy-driven refit loop,
15
+ and best-effort commit via `RunHistory.pickCommitted`.
16
+ - `ComplexityProfile` + sub-profiles (`DataProfile`, `DomainProfile`,
17
+ `MatchkeyProfile`, `BlockingProfile`, `ScoringProfile`, `ClusterProfile`,
18
+ `ProfileMeta`, `IndicatorsProfile`) with `HealthVerdict` rollup.
19
+ - `RunHistory` audit trail with `PolicyDecision` / `ErrorRecord` / `HistoryEntry`
20
+ and `pickCommitted(precisionCollapseFloor)` lexicographic commit selection.
21
+ - `HeuristicRefitPolicy` rule dispatcher + 7 base v1.7/v1.8 rules:
22
+ `ruleBlockingSingletonTrap`, `ruleBlockingTooCoarse`, `ruleBlockingKeySwap`,
23
+ `ruleLowReductionRatio`, `ruleLowTransitivity`, `ruleNoMatches`,
24
+ `ruleUnimodalScoring`.
25
+ - `StopReason` telemetry (8 variants matching Python).
26
+ - `autoConfigureRowsIterate(rows)` async iterative entry point.
27
+ - `AutoconfigOptions.iterate` field (default `false`; preserves pre-0.5.0
28
+ behavior).
29
+ - `getLastControllerRun()` debug accessor mirroring Python's
30
+ `_LAST_CONTROLLER_RUN` ContextVar.
31
+ - Parity test suite: 6 dataset fixtures generated from the Python sibling
32
+ via `packages/python/goldenmatch/scripts/emit_ts_parity_fixtures.py`.
33
+
34
+ ### Deferred to v0.6.0 (Wave 2)
35
+
36
+ - 5 complexity indicators + `IndicatorContext` memoization.
37
+ - Indicator-aware refit rules (`ruleCorruptionNormalize`,
38
+ `ruleCrossBlockingDisagreement`, `ruleSparseMatchExpand`).
39
+ - Indicator-aware extensions to `ruleBlockingKeySwap` and `ruleNoMatches`.
40
+
7
41
  ## [0.4.0] - 2026-05-05
8
42
 
9
43
  ### BREAKING