@holdyourvoice/hyv 2.9.10 → 2.9.12
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 +12 -0
- package/README.md +12 -0
- package/dist/index.js +563 -370
- package/package.json +3 -1
- package/scripts/install.ps1 +89 -0
- package/scripts/install.sh +155 -0
- package/scripts/postinstall-lib.js +163 -7
- package/scripts/postinstall.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable CLI changes. Also mirrored to [holdyourvoice.com/changelog](https://holdyourvoice.com/changelog) for user-facing releases.
|
|
4
4
|
|
|
5
|
+
## [2.9.11] — 2026-06-12
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Data safety: preserve profiles with voice anchors, learned patterns, or dashboard-edited markdown
|
|
9
|
+
- Welcome sync accepts `force: true` to intentionally overwrite preserved server profiles
|
|
10
|
+
- `hyv sync` keeps newer local profiles (uses `updated_at` metadata); `--force` overwrites
|
|
11
|
+
- JSON profile cache (`.hyv/cache/profiles/*.json`) backs up before overwrite; skips stale server snapshots
|
|
12
|
+
- `~/.hyv/auth.json` backed up to `.hyv.bak` before each write
|
|
13
|
+
- Web login: fixed email `body` ReferenceError in strict mode; Google sign-in warms `/ready` and retries on 503
|
|
14
|
+
- Legacy `dashboard.html` email login fixed (`user` response, OTP `code` field, cold-start retries)
|
|
15
|
+
- Static copy/sitemap: `holdyourvoice.com/dashboard` → `/app`
|
|
16
|
+
|
|
5
17
|
## [2.9.10] — 2026-06-12
|
|
6
18
|
|
|
7
19
|
### Fixed
|
package/README.md
CHANGED
|
@@ -13,6 +13,18 @@ npx @holdyourvoice/hyv scan draft.md
|
|
|
13
13
|
|
|
14
14
|
## install
|
|
15
15
|
|
|
16
|
+
**Recommended** (installs node automatically if missing):
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# mac / linux
|
|
20
|
+
curl -fsSL https://holdyourvoice.com/install.sh | bash
|
|
21
|
+
|
|
22
|
+
# windows (powershell)
|
|
23
|
+
irm https://holdyourvoice.com/install.ps1 | iex
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Already have node 18+?
|
|
27
|
+
|
|
16
28
|
```bash
|
|
17
29
|
npm i -g @holdyourvoice/hyv
|
|
18
30
|
```
|