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