@jhizzard/termdeck-stack 0.2.3 → 0.2.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 +69 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,75 @@ 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.6] — 2026-04-26
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
- Audit-trail update: validated against `@jhizzard/termdeck@0.6.7`,
|
|
12
|
+
which closes the loop on a long-standing flaw in the meta-installer
|
|
13
|
+
itself. The stack-installer writes
|
|
14
|
+
`SUPABASE_ACCESS_TOKEN: 'SUPABASE_PAT_HERE'` as a literal placeholder
|
|
15
|
+
string when wiring the Supabase MCP server entry into
|
|
16
|
+
`~/.claude/mcp.json` — the user is expected to manually replace it
|
|
17
|
+
after install. v0.6.4 told users to `export SUPABASE_ACCESS_TOKEN=...`
|
|
18
|
+
for `supabase link`, but that export never propagated into the JSON.
|
|
19
|
+
v0.6.7 of `@jhizzard/termdeck` now backfills the token automatically
|
|
20
|
+
during `termdeck init --rumen` once `supabase link` confirms the token
|
|
21
|
+
is real. See the root `CHANGELOG.md` v0.6.7 entry for the full helper
|
|
22
|
+
contract and the 10 regression fixtures.
|
|
23
|
+
|
|
24
|
+
### Notes
|
|
25
|
+
- This is the third audit-trail bump in the v0.6.5–v0.6.7 arc. No
|
|
26
|
+
installer behavior change — `npx @jhizzard/termdeck-stack` always
|
|
27
|
+
pulls `@jhizzard/termdeck@latest`. Future improvement: stop writing
|
|
28
|
+
the literal placeholder in this installer and instead skip the env
|
|
29
|
+
block when no real token is available, prompting the user to set
|
|
30
|
+
`SUPABASE_ACCESS_TOKEN` before running `init --rumen`. Tracked as a
|
|
31
|
+
follow-up; not blocking this audit-trail bump.
|
|
32
|
+
|
|
33
|
+
## [0.2.5] — 2026-04-26
|
|
34
|
+
|
|
35
|
+
### Documentation
|
|
36
|
+
- Audit-trail update: validated against `@jhizzard/termdeck@0.6.6`.
|
|
37
|
+
v0.6.6 auto-appends `?pgbouncer=true&connection_limit=1` on Supabase
|
|
38
|
+
transaction-pooler URLs (port 6543 on `*.pooler.supabase.com`),
|
|
39
|
+
closing the secondary warning Brad's Rumen logs showed alongside
|
|
40
|
+
the v0.6.5 schema error. Direct connections and session-mode pooler
|
|
41
|
+
URLs are unchanged. Detection lives in `setup/supabase-url.js`
|
|
42
|
+
(`isTransactionPoolerUrl`, `normalizeDatabaseUrl`) and is wired into
|
|
43
|
+
both `init-mnestra` (write time) and `init-rumen` (Edge Function
|
|
44
|
+
secret-set time, for partial-upgrade installs). 15 regression
|
|
45
|
+
fixtures pin the detection rules.
|
|
46
|
+
|
|
47
|
+
### Notes
|
|
48
|
+
- No installer behavior change. `npx @jhizzard/termdeck-stack` always
|
|
49
|
+
pulls `@jhizzard/termdeck@latest`. Mnestra and Rumen versions are
|
|
50
|
+
unchanged through this bump (0.2.2 and 0.4.3 respectively).
|
|
51
|
+
|
|
52
|
+
## [0.2.4] — 2026-04-26
|
|
53
|
+
|
|
54
|
+
### Documentation
|
|
55
|
+
- Audit-trail update: validated against `@jhizzard/termdeck@0.6.5` and
|
|
56
|
+
`@jhizzard/mnestra@0.2.2`, both shipped 2026-04-26 to fix a schema
|
|
57
|
+
drift between the published Mnestra migrations and Rumen's runtime
|
|
58
|
+
contract. The `memory_items.source_session_id` column existed in the
|
|
59
|
+
pre-rebrand `rag-system` schema but was dropped from the published
|
|
60
|
+
Mnestra migrations during the Engram → Mnestra rename. Rumen v0.4.x
|
|
61
|
+
still required it, so every fresh `termdeck init --mnestra` →
|
|
62
|
+
`termdeck init --rumen` install path failed Rumen's first cron tick
|
|
63
|
+
with `column m.source_session_id does not exist`. Both packages now
|
|
64
|
+
ship migration `007_add_source_session_id.sql` (idempotent, TEXT,
|
|
65
|
+
partial index). See the root `CHANGELOG.md` v0.6.5 entry and
|
|
66
|
+
`@jhizzard/mnestra` v0.2.2 entry for full context.
|
|
67
|
+
|
|
68
|
+
### Notes
|
|
69
|
+
- This is the first release where two underlying packages bumped
|
|
70
|
+
together as a coordinated set. The meta-installer behavior is
|
|
71
|
+
unchanged — `npx @jhizzard/termdeck-stack` always pulls each layer's
|
|
72
|
+
`@latest`, so a fresh run picks up both fixes automatically. Anyone
|
|
73
|
+
on a partially-installed v0.6.4 stack should run
|
|
74
|
+
`termdeck init --mnestra --yes` after upgrading; the new migration
|
|
75
|
+
applies idempotently without re-prompting for credentials.
|
|
76
|
+
|
|
8
77
|
## [0.2.3] — 2026-04-26
|
|
9
78
|
|
|
10
79
|
### Documentation
|
package/package.json
CHANGED