@jhizzard/termdeck-stack 0.2.8 → 0.3.0

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 +40 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,46 @@ 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.3.0] — 2026-04-26
9
+
10
+ ### Documentation
11
+ - Audit-trail update: validated against `@jhizzard/termdeck@0.7.0`,
12
+ the runtime-correctness companion to the v0.6.9 install-time
13
+ audit/verify framework. v0.7.0 ships three runtime-side fixes:
14
+ (1) theme persistence — `session.meta.theme` becomes a render-time
15
+ getter that resolves against the live config instead of a SQLite
16
+ snapshot, so editing `~/.termdeck/config.yaml` actually changes
17
+ existing terminals' themes; (2) auth cookie persists 30 days
18
+ (HttpOnly, SameSite=Lax, conditional Secure) so users don't re-type
19
+ the token at every browser session; (3) new `GET /api/health/full`
20
+ endpoint that answers "is this install actually healthy right now?"
21
+ by reusing the v0.6.9 preconditions helpers at runtime — Postgres,
22
+ pg_cron, pg_net, Vault, cron.job activity, SQLite, Mnestra webhook,
23
+ Rumen pool. Cached 30s. See the root `CHANGELOG.md` v0.7.0 entry
24
+ for the full check list and test counts.
25
+
26
+ ### Why a minor bump (not patch)
27
+ - v0.7.0 is a minor on the underlying TermDeck package — it adds two
28
+ new feature surfaces (`/api/health/full` and the cookie max-age
29
+ semantics) and changes a load-bearing internal contract (theme
30
+ resolution moves from snapshot to live). The meta-installer's
31
+ audit-trail bump matches that minor cadence so the published
32
+ versions read as a coordinated set: TermDeck 0.7.0 ↔
33
+ termdeck-stack 0.3.0, mirroring the 0.6.x ↔ 0.2.x correspondence.
34
+ - Strict reading of `docs/SEMVER-POLICY.md` would treat a docs-only
35
+ audit-trail bump as patch. We're stretching to minor here on
36
+ purpose, same way 0.2.0 was — to keep the published version
37
+ surface legible alongside the underlying TermDeck minor.
38
+
39
+ ### Notes
40
+ - No installer behavior change. `npx @jhizzard/termdeck-stack`
41
+ always pulls `@jhizzard/termdeck@latest`, so existing installs
42
+ pick up v0.7.0 automatically. Mnestra (0.2.2) and Rumen (0.4.3)
43
+ unchanged through this bump.
44
+ - This closes the v0.6.x → v0.7.0 narrative cleanly: v0.6.x =
45
+ install-time correctness, v0.7.0 = runtime correctness. The same
46
+ audit/verify principle locked into both.
47
+
8
48
  ## [0.2.8] — 2026-04-26
9
49
 
10
50
  ### Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jhizzard/termdeck-stack",
3
- "version": "0.2.8",
3
+ "version": "0.3.0",
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"