@jhizzard/termdeck-stack 0.2.4 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +95 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,101 @@ 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
+
59
+ ## [0.2.6] — 2026-04-26
60
+
61
+ ### Documentation
62
+ - Audit-trail update: validated against `@jhizzard/termdeck@0.6.7`,
63
+ which closes the loop on a long-standing flaw in the meta-installer
64
+ itself. The stack-installer writes
65
+ `SUPABASE_ACCESS_TOKEN: 'SUPABASE_PAT_HERE'` as a literal placeholder
66
+ string when wiring the Supabase MCP server entry into
67
+ `~/.claude/mcp.json` — the user is expected to manually replace it
68
+ after install. v0.6.4 told users to `export SUPABASE_ACCESS_TOKEN=...`
69
+ for `supabase link`, but that export never propagated into the JSON.
70
+ v0.6.7 of `@jhizzard/termdeck` now backfills the token automatically
71
+ during `termdeck init --rumen` once `supabase link` confirms the token
72
+ is real. See the root `CHANGELOG.md` v0.6.7 entry for the full helper
73
+ contract and the 10 regression fixtures.
74
+
75
+ ### Notes
76
+ - This is the third audit-trail bump in the v0.6.5–v0.6.7 arc. No
77
+ installer behavior change — `npx @jhizzard/termdeck-stack` always
78
+ pulls `@jhizzard/termdeck@latest`. Future improvement: stop writing
79
+ the literal placeholder in this installer and instead skip the env
80
+ block when no real token is available, prompting the user to set
81
+ `SUPABASE_ACCESS_TOKEN` before running `init --rumen`. Tracked as a
82
+ follow-up; not blocking this audit-trail bump.
83
+
84
+ ## [0.2.5] — 2026-04-26
85
+
86
+ ### Documentation
87
+ - Audit-trail update: validated against `@jhizzard/termdeck@0.6.6`.
88
+ v0.6.6 auto-appends `?pgbouncer=true&connection_limit=1` on Supabase
89
+ transaction-pooler URLs (port 6543 on `*.pooler.supabase.com`),
90
+ closing the secondary warning Brad's Rumen logs showed alongside
91
+ the v0.6.5 schema error. Direct connections and session-mode pooler
92
+ URLs are unchanged. Detection lives in `setup/supabase-url.js`
93
+ (`isTransactionPoolerUrl`, `normalizeDatabaseUrl`) and is wired into
94
+ both `init-mnestra` (write time) and `init-rumen` (Edge Function
95
+ secret-set time, for partial-upgrade installs). 15 regression
96
+ fixtures pin the detection rules.
97
+
98
+ ### Notes
99
+ - No installer behavior change. `npx @jhizzard/termdeck-stack` always
100
+ pulls `@jhizzard/termdeck@latest`. Mnestra and Rumen versions are
101
+ unchanged through this bump (0.2.2 and 0.4.3 respectively).
102
+
8
103
  ## [0.2.4] — 2026-04-26
9
104
 
10
105
  ### Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jhizzard/termdeck-stack",
3
- "version": "0.2.4",
3
+ "version": "0.2.8",
4
4
  "description": "One-command installer for the TermDeck developer memory stack: TermDeck + Mnestra + Rumen + Supabase MCP",
5
5
  "bin": {
6
6
  "termdeck-stack": "./src/index.js"