nativesoul 1.1.0 → 1.1.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 +18 -0
- package/dist/package.json +1 -1
- package/dist/packages/cli/src/index.js +102 -102
- package/dist/packages/mcp-server/src/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,24 @@ product after ADR-045; there is no Free/Pro split.
|
|
|
15
15
|
### Product
|
|
16
16
|
- _Nothing yet._
|
|
17
17
|
|
|
18
|
+
## [1.1.1] — 2026-07-07
|
|
19
|
+
|
|
20
|
+
Patch release (ADR-043 §1 — bugfix, no API change; free update within your
|
|
21
|
+
12-month window). `dependencies: {}` preserved; still local-first, no telemetry.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- **`nativesoul scan` on large repos** — the scan now reads root-level manifests,
|
|
25
|
+
lockfiles, README and git remotes in a root-first pass before the bounded
|
|
26
|
+
directory walk. Previously, a large monorepo could exhaust the traversal
|
|
27
|
+
budget in big early directories before reaching the root `package.json`, so
|
|
28
|
+
the scan reported "none detected" at the repo root. It now detects your stack
|
|
29
|
+
regardless of tree size. Same guardrails: read-only, denylist-before-read, no
|
|
30
|
+
secrets, no network.
|
|
31
|
+
- **Local dashboard layout** — `nativesoul dashboard viewer` no longer overflows:
|
|
32
|
+
panels flow in a balanced grid and cap their height with the record list
|
|
33
|
+
scrolling internally, and long rows truncate cleanly instead of spilling past
|
|
34
|
+
the card. Still self-contained, read-only, and local.
|
|
35
|
+
|
|
18
36
|
## [1.1.0] — 2026-07-07
|
|
19
37
|
|
|
20
38
|
Additive feature release (EPIC-026 — Onboarding v2 + dev-environment context).
|