@jhizzard/termdeck-stack 0.2.6 → 0.2.8
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 +51 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,57 @@ underlying packages (`@jhizzard/termdeck`, `@jhizzard/mnestra`,
|
|
|
5
5
|
`@jhizzard/rumen`) ship on their own cadences and have their own
|
|
6
6
|
changelogs — see the root `CHANGELOG.md` for `@jhizzard/termdeck`.
|
|
7
7
|
|
|
8
|
+
## [0.2.8] — 2026-04-26
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
- Audit-trail update: validated against `@jhizzard/termdeck@0.6.9`,
|
|
12
|
+
the deliberate close to the v0.6.x incident saga. v0.6.9 introduces
|
|
13
|
+
`auditPreconditions()` and `verifyOutcomes()` — a front-loaded check
|
|
14
|
+
before any state-changing operation, plus a closing check that
|
|
15
|
+
confirms what was just done actually took. Closes the failure class
|
|
16
|
+
that produced four of the eight v0.6.x patches: a documented manual
|
|
17
|
+
step that wasn't verified in code. The wizard now refuses to proceed
|
|
18
|
+
on missing extensions, missing access tokens, missing Vault secrets,
|
|
19
|
+
or any other unmet external precondition. See the root
|
|
20
|
+
`CHANGELOG.md` v0.6.9 entry for the full list of checks and the
|
|
21
|
+
10 regression fixtures.
|
|
22
|
+
|
|
23
|
+
### Notes
|
|
24
|
+
- Fifth and final audit-trail bump in the v0.6.5–v0.6.9 arc. Eight
|
|
25
|
+
underlying patches in 48 hours, three meta-installer audit-trail
|
|
26
|
+
bumps tracking them. The principle that emerged and is now locked
|
|
27
|
+
into the codebase: *"Documentation is not verification."*
|
|
28
|
+
- v0.7.0 is the next minor release, planned to extend the audit/verify
|
|
29
|
+
pattern from install-time into runtime via `/api/health/full` plus
|
|
30
|
+
fixes for theme persistence and auth-cookie UX. Not bundled into
|
|
31
|
+
v0.6.9 to keep the narrative clean: v0.6.x = install-time correctness,
|
|
32
|
+
v0.7.x = runtime correctness.
|
|
33
|
+
|
|
34
|
+
## [0.2.7] — 2026-04-26
|
|
35
|
+
|
|
36
|
+
### Documentation
|
|
37
|
+
- Audit-trail update: validated against `@jhizzard/termdeck@0.6.8`.
|
|
38
|
+
v0.6.8 fixes a meta-installer-induced bug: the meta-installer
|
|
39
|
+
installs `@jhizzard/mnestra` globally as a peer, and TermDeck's
|
|
40
|
+
migration loader was preferring that peer over its own bundled
|
|
41
|
+
migrations. When a user upgraded TermDeck without also upgrading
|
|
42
|
+
the sibling Mnestra package, a stale Mnestra silently shadowed
|
|
43
|
+
newer bundled migrations. v0.6.5's source_session_id fix was
|
|
44
|
+
invisible to anyone with stale Mnestra-in-global-node_modules.
|
|
45
|
+
v0.6.8 flips the precedence — bundled first, peer node_modules as
|
|
46
|
+
a fallback only when bundled is missing. See the root
|
|
47
|
+
`CHANGELOG.md` v0.6.8 entry and the new
|
|
48
|
+
`tests/migration-loader-precedence.test.js` for the four
|
|
49
|
+
regression cases that pin this guarantee.
|
|
50
|
+
|
|
51
|
+
### Notes
|
|
52
|
+
- Fourth audit-trail bump in the v0.6.5–v0.6.8 arc. No installer
|
|
53
|
+
behavior change. The longer-term consideration: a future
|
|
54
|
+
meta-installer release should consider whether to keep installing
|
|
55
|
+
`@jhizzard/mnestra` as a global peer at all, given that TermDeck
|
|
56
|
+
now treats its bundled migrations as canonical. Tracked as a
|
|
57
|
+
follow-up; not blocking this audit-trail bump.
|
|
58
|
+
|
|
8
59
|
## [0.2.6] — 2026-04-26
|
|
9
60
|
|
|
10
61
|
### Documentation
|
package/package.json
CHANGED