omnish 1.4.0 → 1.4.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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.4.2] - 2026-05-19
11
+
12
+ ### Fixed
13
+
14
+ - **Platform `/sendto` broadcast:** `omnish i` destinations `wa`, `tg`, and `*` now load allowlists from the platform (`GET /v1/me`) when platform credentials are set, instead of only local `config.json`.
15
+
16
+ [1.4.2]: https://github.com/labKnowledge/omnish/compare/v1.4.1...v1.4.2
17
+
18
+ ## [1.4.1] - 2026-05-19
19
+
20
+ ### Added
21
+
22
+ - **`omnish run --verbose` / `-vb`** and **`omnish link --verbose` / `-vb`** for Baileys/gateway debug logging on stderr. Legacy `OMNISH_VERBOSE=1` and `WHATSVERBOSE=1` remain supported.
23
+
24
+ [1.4.1]: https://github.com/labKnowledge/omnish/compare/v1.4.0...v1.4.1
25
+
10
26
  ## [1.4.0] - 2026-05-19
11
27
 
12
28
  ### Added
package/README.md CHANGED
@@ -128,7 +128,7 @@ Native builds may be required for **`@whiskeysockets/baileys`**, **`sharp`**, **
128
128
 
129
129
  If `link` still fails with **401**, run `pnpm approve-builds && pnpm install`, then `pnpm omnish link --force` to wipe the auth directory under your data dir and pair again.
130
130
 
131
- **`denied` in logs but your number is on `allowFrom`:** WhatsApp may send your chat as a **LID** id (`…@lid`). The app resolves your real phone via `remoteJidAlt` / Baileys LID mapping so `+E164` allowlist still matches. Use `OMNISH_VERBOSE=1` (or legacy `WHATSVERBOSE=1`) if you need to debug.
131
+ **`denied` in logs but your number is on `allowFrom`:** WhatsApp may send your chat as a **LID** id (`…@lid`). The app resolves your real phone via `remoteJidAlt` / Baileys LID mapping so `+E164` allowlist still matches. Use `omnish run --verbose` (legacy: `OMNISH_VERBOSE=1` or `WHATSVERBOSE=1`) if you need to debug.
132
132
 
133
133
  **Phone stuck on “Logging in”** then timeout: WhatsApp often sends a **515 restart** right after a successful QR scan; omnish reconnects automatically. If it still times out, ensure native deps built (`pnpm approve-builds && pnpm install`), then try `omnish link --force` again.
134
134
 
@@ -265,7 +265,7 @@ Index and curated paths: **[docs/README.md](docs/README.md)**.
265
265
 
266
266
  ## Troubleshooting
267
267
 
268
- - Logs: stderr from `omnish run` (`OMNISH_VERBOSE=1` for Baileys; legacy `WHATSVERBOSE=1` works). Job logs: `<data-dir>/jobs/<id>.log`. App session logs: `<data-dir>/apps/<8-char-sha1-prefix>/<name>.log`.
268
+ - Logs: stderr from `omnish run` (`omnish run --verbose` for Baileys; legacy `OMNISH_VERBOSE=1` / `WHATSVERBOSE=1` still works). Job logs: `<data-dir>/jobs/<id>.log`. App session logs: `<data-dir>/apps/<8-char-sha1-prefix>/<name>.log`.
269
269
  - If `pnpm install` skipped build scripts, run **`pnpm approve-builds`** (and reinstall) so Baileys, **node-pty**, and other native deps compile.
270
270
  - WhatsApp / Baileys: see the [`@whiskeysockets/baileys`](https://github.com/WhiskeySockets/Baileys) project for protocol and API details.
271
271