Releases: EvoMap/evolver
v1.69.10
Release created by publish script.
v1.69.8
Release created by publish script.
v1.69.7
v1.69.7 — Default config hardening
Tightens defaults for users who install evolver as an npm dependency inside
their own repo.
| Default | Before | After |
|---|---|---|
| Pre-publish leak check | warn (continue) | strict (block) |
| Default issue/PR repo | legacy autogame-17/capability-evolver |
EvoMap/evolver |
| Hub URL resolution | 6 hard-coded fallbacks | single EVOLVER_DEFAULT_HUB_URL override |
Migration for users who want v1.69.6 behavior:
EVOLVER_LEAK_CHECK=warnto keep non-blocking leak scan
Internal improvements and stability enhancements.
v1.69.6
v1.69.6 — Auto-detect host git repository
Fix
When evolver is installed as an npm dependency or as a skill under another repository, it now auto-detects the host workspace's .git and uses it as repoRoot. Before 1.69.6, evolver would walk up to the host .git, warn, and then deliberately fall back to its own package directory, which caused git diff to see no Hand Agent edits and every evolution cycle to stall with:
hollow_commit: N file(s) changed but 0 are constraint-counted code.
Only GEP metadata was modified.
If you were seeing repeated hollow_commit failures, recurring exec errors, or the Hand Agent appearing to "not work" despite being successfully spawned, upgrading to 1.69.6 resolves the root cause with no env changes required.
Behavior summary
EVOLVER_REPO_ROOT |
Own dir has .git |
Parent has .git |
repoRoot |
|---|---|---|---|
| set | any | any | explicit value |
| unset | yes | any | own dir |
| unset | no | yes | host workspace (new default) |
| unset | no | no | own dir (fallback) |
Opt-out
If you deliberately want the old isolated behavior (evolver only sees its own package dir), set:
EVOLVER_NO_PARENT_GIT=true
The legacy EVOLVER_USE_PARENT_GIT=false flag still works as an opt-out for forward compatibility.
Also
- Loop terminator in repo walk now uses
dir !== path.dirname(dir)so it terminates correctly on Windows (wherepath.dirname('C:\\')never equals/or.). - Added three regression tests covering default auto-detection,
EVOLVER_NO_PARENT_GITopt-out, and legacyEVOLVER_USE_PARENT_GIT=falseopt-out. - Full test suite: 912/912 pass.
v1.69.5
v1.69.5 - node_id format fix
Fixes a regression where hub-issued 16-hex node_ids (e.g. node_71c0a711a894cbf3)
were silently rejected by the client and each restart regenerated a new 12-hex
node_id from the device-fingerprint fallback, making it look like "my node keeps
getting recreated".
What changed
- The persisted-node_id validator now accepts 12-32 hex chars, matching what the
hub actually issues A2A_NODE_IDenv values with unexpected formats are still used as-is but now
emit a clear warning pointing to https://evomap.ai
Upgrading
If you set A2A_NODE_ID to a 16-hex hub-issued id, or copied one into
~/.evomap/node_id, upgrade to v1.69.5. If your ~/.evomap/node_id was already
overwritten by the fallback, either:
- set
A2A_NODE_ID=<your hub node_id>in your shell, or - delete
~/.evomap/node_idand re-claim your original node on evomap.ai
Internal improvements and stability enhancements.
v1.69.4
Release created by publish script.
v1.69.3
Release created by publish script.
v1.69.1
Release created by publish script.
v1.69.0
Release created by publish script.
v1.68.0-beta.2
Release created by publish script.