@jhizzard/termdeck-stack 0.2.3 → 0.2.4

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 +25 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,31 @@ 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.4] — 2026-04-26
9
+
10
+ ### Documentation
11
+ - Audit-trail update: validated against `@jhizzard/termdeck@0.6.5` and
12
+ `@jhizzard/mnestra@0.2.2`, both shipped 2026-04-26 to fix a schema
13
+ drift between the published Mnestra migrations and Rumen's runtime
14
+ contract. The `memory_items.source_session_id` column existed in the
15
+ pre-rebrand `rag-system` schema but was dropped from the published
16
+ Mnestra migrations during the Engram → Mnestra rename. Rumen v0.4.x
17
+ still required it, so every fresh `termdeck init --mnestra` →
18
+ `termdeck init --rumen` install path failed Rumen's first cron tick
19
+ with `column m.source_session_id does not exist`. Both packages now
20
+ ship migration `007_add_source_session_id.sql` (idempotent, TEXT,
21
+ partial index). See the root `CHANGELOG.md` v0.6.5 entry and
22
+ `@jhizzard/mnestra` v0.2.2 entry for full context.
23
+
24
+ ### Notes
25
+ - This is the first release where two underlying packages bumped
26
+ together as a coordinated set. The meta-installer behavior is
27
+ unchanged — `npx @jhizzard/termdeck-stack` always pulls each layer's
28
+ `@latest`, so a fresh run picks up both fixes automatically. Anyone
29
+ on a partially-installed v0.6.4 stack should run
30
+ `termdeck init --mnestra --yes` after upgrading; the new migration
31
+ applies idempotently without re-prompting for credentials.
32
+
8
33
  ## [0.2.3] — 2026-04-26
9
34
 
10
35
  ### Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jhizzard/termdeck-stack",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
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"