prjct-cli 2.42.5 → 2.42.6
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 +22 -0
- package/dist/bin/prjct-core.mjs +299 -299
- package/dist/bin/prjct.mjs +1 -1
- package/dist/daemon/entry.mjs +192 -192
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
Follow-ups from the v2.42.x range review (the reported-not-fixed list).
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **CI/Release no longer resolve bun `latest` per run.** `setup-bun` queried the bun tags API on every workflow run (the 500-prone call that aborted the v2.42.6 release) and silently drifted from local dev. All non-canary jobs now pin via a single `.bun-version` file; the install-compat matrix keeps `latest` deliberately as the canary.
|
|
9
|
+
- **SIGHUP now actually reloads.** The handler refreshed only the explicit-dispatch instance; schema-covered commands kept pre-reload group instances forever (the registry's lazy memos were never reset). Both lazy layers now register resetters and SIGHUP clears them.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- **`routingMode: 'cold-only'`** — spec/audit-spec's "shim must serve these cold" condition moves from a side list in scripts/build.js into the manifest; the generated shim skip set is byte-identical, but the truth now lives where a manifest cleanup can't accidentally delete it.
|
|
13
|
+
- **Subagents get the repeat-miss slot** — the "Keeps being missed" entry the session digest gained now reaches subagent digests too (they do most of the editing and were blind to it).
|
|
14
|
+
- **Prune throttle is in-process** — the kv-store counter paid a read+write per session Stop just to decide "skip pruning" 9/10 times; per-process counting is the safe direction (cold runs prune more often, never less).
|
|
15
|
+
|
|
5
16
|
Fixes from a full code review of the v2.42.0–v2.42.4 range (7 review angles, 42 candidates, verified).
|
|
6
17
|
|
|
7
18
|
### Fixed
|
|
@@ -42,6 +53,17 @@ Optimization backlog pass (the items deferred since v2.37.x, consolidated in mem
|
|
|
42
53
|
- **`bin/prjct.ts` split**: the ~550 lines of bin-only command handlers moved to `core/cli/bin-commands.ts` (1082 → 536 lines); the entry point keeps startup concerns only.
|
|
43
54
|
- **`core/workflow/` → `core/workflow-engine/`** — disambiguates the rule engine from `core/workflows/` (implementations).
|
|
44
55
|
|
|
56
|
+
## [2.42.6] - 2026-06-10
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
- review follow-ups — cold-only routing, true SIGHUP reload, subagent repeat-miss, in-process prune counter (#422)
|
|
61
|
+
|
|
62
|
+
### Maintenance
|
|
63
|
+
|
|
64
|
+
- pin bun via .bun-version — stop resolving 'latest' on every run (#423)
|
|
65
|
+
|
|
66
|
+
|
|
45
67
|
## [2.42.5] - 2026-06-10
|
|
46
68
|
|
|
47
69
|
### Bug Fixes
|