wyren-mcp 1.1.0 → 1.2.1

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
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.2.0
4
+
5
+ - **Fixed** Caption (and slideshow) renders failed in the daemon: the vendored `remotion-bundle` was missing `bundle.js.map`, which Remotion's `prepareServer` reads — `sync-worker.mjs` was stripping ALL `.map` files. It now keeps the Remotion bundle maps (still drops the worker's debug map).
6
+ - **Fixed** Chunked captions served trimmed segments over `file://`, which Chromium refuses (fails on WSL2; OffthreadVideo is http-only). Segments are now served over a loopback HTTP server (Range + CORS).
7
+ - **Fixed** Daemon exited on any WebSocket drop (every backend redeploy) instead of reconnecting — the reconnect timer was `unref`'d. It is now ref'd, so the daemon rides through deploys via exponential backoff.
8
+ - **Changed** Remotion pinned to exactly 4.0.421 across renderer + bundler (was drifting to 4.0.452); the worker bundle is rebuilt from monorepo main (0600ac2).
9
+ - **Fixed** The daemon no longer needs R2 credentials. It uploads results via backend-issued **presigned URLs** (`/api/upload/{video,image}/presign` → PUT) using only its `frm_` API key — so it runs on any end-user machine without distributing R2 secrets. Verified end-to-end against prod.
10
+
11
+
3
12
  ## 1.1.0
4
13
 
5
14
  - **Added** Auto-starting local render worker. `npx wyren-mcp` now logs you in
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wyren-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "description": "Install the Wyren MCP server, agent skills, and auto-starting local render worker for Claude Code",
5
5
  "bin": {
6
6
  "wyren-mcp": "setup.mjs"