@jefuriiij/synthra 0.2.1 → 0.3.1

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
@@ -7,6 +7,48 @@ For older versions, see [GitHub Releases](https://github.com/jefuriiij/synthra/r
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.3.1] — 2026-06-09
11
+
12
+ ### Changed
13
+
14
+ - **Dashboard layout.** The Total-spend (cost) hero now sits beside the Savings
15
+ card in a responsive two-column row at the top of the center column (collapsing
16
+ to one column on narrow viewports), and the new "Hot files" list is height-capped
17
+ with its own scrollbar so a long list never crowds the Moat card beneath it.
18
+
19
+ ---
20
+
21
+ ## [0.3.0] — 2026-06-09
22
+
23
+ ### Added
24
+
25
+ - **Incremental scanner.** `syn .` now re-parses only the files whose content
26
+ changed since the last scan, reusing cached parses (symbols, imports, calls)
27
+ for everything else via a content-hash parse cache. Rescans of a large repo
28
+ after editing a handful of files are dramatically faster; the resulting graph
29
+ is byte-identical to a full scan. `syn . --full` forces a clean rebuild. This
30
+ makes the long-standing "updated incrementally" claim actually true.
31
+ - **Call-graph edges.** Function and method call sites are now captured during
32
+ parsing and resolved (name-based, precision-first: same-file wins, else the
33
+ unique repo-wide symbol; ambiguous/external calls are skipped) into
34
+ symbol→symbol `calls` edges. `blast_radius` therefore surfaces **callers**,
35
+ not just importers and tests — so the impact of changing a function includes
36
+ the code that calls it. Captured across 14 languages (TypeScript, Python, Go,
37
+ Rust, Java, C, C++, C#, plus best-effort Kotlin/PHP/Ruby and Svelte/Vue
38
+ passthrough); this makes the "call relationships" claim honest.
39
+ - **Dashboard "Hot files" card.** The dashboard now surfaces the usage-learning
40
+ layer directly: the active project's hottest files by recent, decayed access.
41
+ - **Dashboard favicon.** The dashboard tab now carries the Synthra S mark.
42
+
43
+ ### Internal
44
+
45
+ - The scanner is now under test — directory walker, parser dispatch, a
46
+ per-language symbol/call smoke suite, and the context packer — alongside the
47
+ call-resolution and incremental-equivalence tests. CI runs on Node 24 actions
48
+ with the test matrix on Node 22 (ubuntu + windows).
49
+
50
+ ---
51
+
10
52
  ## [0.2.1] — 2026-06-06
11
53
 
12
54
  ### Changed