@jhizzard/termdeck-stack 0.2.0 → 0.2.2

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 +39 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,45 @@ 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.2] — 2026-04-25
9
+
10
+ ### Documentation
11
+ - Audit-trail update: validated against `@jhizzard/termdeck@0.6.3`,
12
+ which shipped after a fourth report from the same tester whose
13
+ pre-v0.6.1 install was already half-set-up. v0.6.3 reorders
14
+ `termdeck init --mnestra` to persist `~/.termdeck/secrets.env`
15
+ immediately after collecting inputs (before any pg work), so a
16
+ failed Postgres connect no longer throws away the typed-in
17
+ `DATABASE_URL`. It also adds `--yes` (reuse saved secrets, skip
18
+ prompts) and `--reset` (ignore saved secrets, re-prompt). See the
19
+ root `CHANGELOG.md` for the full v0.6.3 entry.
20
+
21
+ ### Notes
22
+ - No installer behavior change. `npx @jhizzard/termdeck-stack` always
23
+ pulls `@jhizzard/termdeck@latest`, so existing 0.2.x installs pick
24
+ up the v0.6.3 wizard fix automatically. This bump keeps the audit
25
+ trail tight — the CHANGELOG for 0.2.1 was written before the
26
+ fourth tester report came in.
27
+
28
+ ## [0.2.1] — 2026-04-25
29
+
30
+ ### Documentation
31
+ - Audit-trail update: validated against `@jhizzard/termdeck@0.6.2`,
32
+ which shipped ~8 minutes after stack-installer 0.2.0 went live.
33
+ v0.6.2 removed the `Proceed with setup for project X?` confirm gate
34
+ in `termdeck init --mnestra` after a third report from a tester
35
+ whose terminal kept resolving the confirm as a soft-cancel even
36
+ after v0.6.1's askSecret hardening. See the root `CHANGELOG.md`
37
+ for the full v0.6.2 entry.
38
+
39
+ ### Notes
40
+ - No installer behavior change: stack-installer 0.2.0 already pulled
41
+ `@jhizzard/termdeck@latest`, so a fresh `npx @jhizzard/termdeck-stack`
42
+ on 0.2.0 picked up the v0.6.2 wizard fix automatically. This bump
43
+ is purely to keep the per-package audit trail tight — the CHANGELOG
44
+ for 0.2.0 was written when `latest` was still 0.6.1 and had no way
45
+ to mention the hotfix that landed minutes later.
46
+
8
47
  ## [0.2.0] — 2026-04-25
9
48
 
10
49
  ### Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jhizzard/termdeck-stack",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
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"