chore(release): v0.74.0-beta.5

Version bump via changesets.
This commit is contained in:
gsxdsm
2026-07-26 18:11:47 -07:00
parent 034827f251
commit 256c64a7bd
72 changed files with 309 additions and 35 deletions

View File

@@ -53,6 +53,8 @@
"fair-boards-page-one-column",
"faster-board-scroll-no-desktop-snap",
"fix-duplicate-warning-open-deep-link",
"fix-mailbox-reply-context-remount",
"fix-planning-settings-composer-remount",
"fn-8556-windows-agent-selection",
"fn-8561-task-card-dates",
"fn-8562-chat-conversation-tags",
@@ -96,6 +98,7 @@
"planning-worktree-reclaim-race",
"project-switch-modal-reset",
"promote-force-unplanned",
"queued-to-plan-badge-engine-agreement",
"quick-add-start-button",
"quick-add-start-seeds-prompt",
"quick-chat-tablet-drag-header",
@@ -118,6 +121,7 @@
"task-not-found-404",
"terminal-blank-until-keypress-refresh",
"theme-mailbox-markdown-links",
"triage-eviction-admission-claim-leak",
"triage-stale-planning-sweep",
"truthful-abort-provenance"
]

View File

@@ -13885,6 +13885,14 @@ for reference.
- Updated dependencies [a2ed6d0]
- @runfusion/fusion@0.1.0
## 0.39.32-beta.5
### @fusion/i18n
#### Patch Changes
- @fusion/core@0.74.0-beta.5
## 0.39.32-beta.4
### @fusion/i18n
@@ -14232,6 +14240,14 @@ for reference.
- @fusion/core@0.40.0
## 0.11.58-beta.5
### @fusion/droid-cli
#### Patch Changes
- @fusion-plugin-examples/droid-runtime@0.1.58-beta.5
## 0.11.58-beta.4
### @fusion/droid-cli

View File

@@ -2,6 +2,22 @@
User-facing release notes aggregated across all packages. This file is auto-synced from each `packages/*/CHANGELOG.md` by `scripts/release.mjs` — do not edit by hand.
## 0.74.0-beta.5
### Highlights
- Planning Mode and Settings keep every character you type, not just the first
- Cards no longer stall on "Queued to plan" with free slots after a planner hangs
- "Queued to plan" and "Ready" badges match what the engine will actually do with the card
- Expanded Mailbox reply-context rows stay open when you expand another row
### Fixed
- Planning Mode and Settings no longer drop typed text after the first character — the modal shell was remounting the focused input on every render.
- Cards stuck on "Queued to plan" while concurrency slots sat free are now re-offered for planning after a hung planner is evicted, instead of waiting for an engine restart.
- The "Queued to plan" and "Ready" badges on Todo cards now reflect whether the card is genuinely awaiting planning, rather than guessing from its step count. Todo rows carry this state through live board updates.
- Expanded reply-context rows in the Mailbox modal stay expanded when another row is opened; the recursive reply thread no longer remounts and collapses.
## 0.74.0-beta.4
### Highlights

View File

@@ -1,6 +1,6 @@
{
"name": "fusion-workspace",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"private": true,
"license": "MIT",
"homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,15 @@
# runfusion.ai
## 0.74.0-beta.5
### Patch Changes
- Updated dependencies [c21fb0d]
- Updated dependencies [7065d03]
- Updated dependencies [beebd27]
- Updated dependencies [5ea98f7]
- @runfusion/fusion@0.74.0-beta.5
## 0.74.0-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "runfusion.ai",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"license": "MIT",
"description": "Launch Fusion with `npx runfusion.ai` — tiny alias for @runfusion/fusion.",
"homepage": "https://runfusion.ai",

View File

@@ -1,5 +1,22 @@
# @runfusion/fusion
## 0.74.0-beta.5
### Patch Changes
- c21fb0d: summary: Keep expanded Mailbox reply-context rows open when another row is expanded.
category: fix
dev: `ReplyContextExpandable` was declared inside `MailboxModal`'s render, so every parent update produced a new element type and remounted the recursive reply thread, collapsing already-expanded rows. Hoisted to module scope with an explicit `env` prop.
- 7065d03: summary: Fix Planning Mode and Settings dropping typed text after the first character.
category: fix
dev: The FN-8606 floating-window migration declared `ModalShell` as a component inside `PlanningModeModal`/`SettingsModal` render, so each render produced a new element type and remounted the whole subtree, destroying the focused input. Replaced with a plain `renderModalShell(children)` call so element types stay stable.
- beebd27: summary: "Queued to plan" and "Ready" badges now match what the engine will actually do with the card.
category: fix
dev: New shared `isTaskAwaitingPlanning` predicate (PROMPT.md seed-ness + replan park) replaces TaskCard's `steps.length` proxy; `GET /api/tasks` attaches transient `awaitingPlanning` for Todo rows (best-effort, capped at 200 reads/request), carried across same-column SSE updates while the step count is unchanged.
- 5ea98f7: summary: Fix cards stuck on "Queued to plan" with free concurrency slots after a hung planner.
category: fix
dev: TriageProcessor.evictStaleProcessing now also clears `coordinatorAdmittedTaskIds` and drops any untransferred pre-held host slot, so an evicted planner's card is re-offered by the admission coordinator's refresh instead of being filtered out until engine restart.
## 0.74.0-beta.4
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@runfusion/fusion",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"license": "MIT",
"description": "Fusion CLI: HTTP API server, daemon, dashboard launcher, and task tooling for the Fusion AI coding agent.",
"homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,7 @@
# @fusion/core
## 0.74.0-beta.5
## 0.74.0-beta.4
## 0.74.0-beta.3

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/core",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"license": "MIT",
"description": "Fusion core: task store, scheduler, settings, and shared domain types backing the Fusion AI coding agent.",
"homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,26 @@
# @fusion/dashboard
## 0.74.0-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/engine@0.74.0-beta.5
- @fusion/i18n@0.39.32-beta.5
- @fusion-plugin-examples/claude-runtime@0.1.7-beta.5
- @fusion-plugin-examples/cli-printing-press@0.1.49-beta.5
- @fusion-plugin-examples/compound-engineering@0.1.32-beta.5
- @fusion-plugin-examples/dependency-graph@0.1.63-beta.5
- @fusion-plugin-examples/grok-runtime@0.2.10-beta.5
- @fusion-plugin-examples/omp-runtime@0.1.7-beta.5
- @fusion-plugin-examples/quality@0.1.7-beta.5
- @fusion-plugin-examples/roadmap@0.1.51-beta.5
- @fusion-plugin-examples/cursor-runtime@0.1.51-beta.5
- @fusion-plugin-examples/droid-runtime@0.1.58-beta.5
- @fusion-plugin-examples/hermes-runtime@0.2.82-beta.5
- @fusion-plugin-examples/openclaw-runtime@0.2.82-beta.5
- @fusion-plugin-examples/paperclip-runtime@0.2.82-beta.5
## 0.74.0-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/dashboard",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"license": "MIT",
"description": "Fusion dashboard: React UI and HTTP API server for monitoring and controlling the Fusion AI coding agent.",
"homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,13 @@
# @fusion/desktop
## 0.74.0-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/dashboard@0.74.0-beta.5
- @fusion/engine@0.74.0-beta.5
## 0.74.0-beta.4
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@fusion/desktop",
"productName": "Fusion",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"license": "MIT",
"author": {
"name": "Runfusion",

View File

@@ -1,5 +1,11 @@
# @fusion/droid-cli
## 0.11.58-beta.5
### Patch Changes
- @fusion-plugin-examples/droid-runtime@0.1.58-beta.5
## 0.11.58-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/droid-cli",
"version": "0.11.58-beta.4",
"version": "0.11.58-beta.5",
"description": "First-party Fusion pi extension that routes LLM calls through the Droid CLI subprocess.",
"license": "MIT",
"private": true,

View File

@@ -1,5 +1,12 @@
# @fusion/engine
## 0.74.0-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/pi-claude-cli@0.74.0-beta.5
## 0.74.0-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/engine",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"license": "MIT",
"description": "Fusion engine: executor, merger, scheduler, and automation runtime for the Fusion AI coding agent.",
"homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,11 @@
# @fusion/i18n
## 0.39.32-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
## 0.39.32-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/i18n",
"version": "0.39.32-beta.4",
"version": "0.39.32-beta.5",
"license": "MIT",
"description": "Fusion i18n: authored translation catalogs and shared i18next configuration for the Fusion dashboard and terminal UI.",
"type": "module",

View File

@@ -1,5 +1,7 @@
# @fusion/mobile
## 0.74.0-beta.5
## 0.74.0-beta.4
## 0.74.0-beta.3

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/mobile",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"license": "MIT",
"description": "Fusion mobile: Capacitor wrapper around the Fusion dashboard for iOS and Android.",
"homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,7 @@
# @fusion/pi-claude-cli
## 0.74.0-beta.5
## 0.74.0-beta.4
## 0.74.0-beta.3

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/pi-claude-cli",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"description": "Fusion vendored fork: pi coding-agent extension that routes LLM calls through the Claude Code CLI. Forked from rchern/pi-claude-cli (MIT). See UPSTREAM.md.",
"license": "MIT",
"private": true,

View File

@@ -1,5 +1,11 @@
# @fusion/plugin-sdk
## 0.74.0-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
## 0.74.0-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/plugin-sdk",
"version": "0.74.0-beta.4",
"version": "0.74.0-beta.5",
"license": "MIT",
"description": "Fusion plugin SDK: types and helpers for authoring third-party plugins that extend the Fusion dashboard and engine.",
"homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/auto-label
## 0.2.82-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.2.82-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/auto-label",
"version": "0.2.82-beta.4",
"version": "0.2.82-beta.5",
"type": "module",
"description": "Automatically labels tasks based on description content",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/ci-status
## 0.2.82-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.2.82-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/ci-status",
"version": "0.2.82-beta.4",
"version": "0.2.82-beta.5",
"type": "module",
"description": "Polls CI status for branches and provides a custom API to query results",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/notification
## 0.2.82-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.2.82-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/notification",
"version": "0.2.82-beta.4",
"version": "0.2.82-beta.5",
"type": "module",
"description": "Example Fusion plugin that sends webhook notifications on task lifecycle events",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/settings-demo
## 0.2.82-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.2.82-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/settings-demo",
"version": "0.2.82-beta.4",
"version": "0.2.82-beta.5",
"type": "module",
"description": "Example Fusion plugin demonstrating settings schema and runtime configuration",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/acp-runtime
## 0.1.32-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.32-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/acp-runtime",
"version": "0.1.32-beta.4",
"version": "0.1.32-beta.5",
"type": "module",
"description": "ACP (Agent Client Protocol) runtime plugin for Fusion — drives any ACP-compatible agent over JSON-RPC/stdio",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/agent-browser
## 0.1.52-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.52-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/agent-browser",
"version": "0.1.52-beta.4",
"version": "0.1.52-beta.5",
"type": "module",
"description": "Agent Browser runtime and prompt/skill/workflow contributions for Fusion",
"private": true,

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/claude-runtime
## 0.1.7-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.7-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/claude-runtime",
"version": "0.1.7-beta.4",
"version": "0.1.7-beta.5",
"type": "module",
"description": "Claude Code runtime plugin for Fusion (ACP bridge)",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/cli-printing-press
## 0.1.49-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.49-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/cli-printing-press",
"version": "0.1.49-beta.4",
"version": "0.1.49-beta.5",
"type": "module",
"description": "CLI Printing Press plugin package for Fusion",
"private": true,

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/compound-engineering
## 0.1.32-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.32-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/compound-engineering",
"version": "0.1.32-beta.4",
"version": "0.1.32-beta.5",
"type": "module",
"description": "Compound Engineering plugin for Fusion",
"private": true,

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/cursor-runtime
## 0.1.51-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.51-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/cursor-runtime",
"version": "0.1.51-beta.4",
"version": "0.1.51-beta.5",
"type": "module",
"description": "Cursor CLI runtime plugin for Fusion",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/dependency-graph
## 0.1.63-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.63-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/dependency-graph",
"version": "0.1.63-beta.4",
"version": "0.1.63-beta.5",
"type": "module",
"description": "Dependency graph dashboard view plugin for Fusion",
"private": true,

View File

@@ -1,5 +1,11 @@
# Changelog
## 0.1.58-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.58-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/droid-runtime",
"version": "0.1.58-beta.4",
"version": "0.1.58-beta.5",
"type": "module",
"description": "Droid runtime plugin for Fusion",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/even-realities-glasses
## 0.1.51-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.51-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/even-realities-glasses",
"version": "0.1.51-beta.4",
"version": "0.1.51-beta.5",
"type": "module",
"description": "Canonical Even Realities Fusion plugin with board/task cards, actions, notifications, and webhook transport",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/grok-runtime
## 0.2.10-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.2.10-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/grok-runtime",
"version": "0.2.10-beta.4",
"version": "0.2.10-beta.5",
"type": "module",
"description": "Grok CLI runtime plugin for Fusion (ACP agent stdio)",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/hermes-runtime
## 0.2.82-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.2.82-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/hermes-runtime",
"version": "0.2.82-beta.4",
"version": "0.2.82-beta.5",
"type": "module",
"description": "Hermes AI runtime plugin for Fusion - provides AI agent execution runtime",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/linear-import
## 0.1.14-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.14-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/linear-import",
"version": "0.1.14-beta.4",
"version": "0.1.14-beta.5",
"type": "module",
"description": "Linear issue import plugin for Fusion",
"private": true,

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/omp-runtime
## 0.1.7-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.7-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/omp-runtime",
"version": "0.1.7-beta.4",
"version": "0.1.7-beta.5",
"type": "module",
"description": "Oh My Pi (omp) runtime plugin for Fusion via Agent Client Protocol (omp acp)",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/openclaw-runtime
## 0.2.82-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.2.82-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/openclaw-runtime",
"version": "0.2.82-beta.4",
"version": "0.2.82-beta.5",
"type": "module",
"description": "Provides OpenClaw runtime for Fusion AI agents",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/paperclip-runtime
## 0.2.82-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.2.82-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/paperclip-runtime",
"version": "0.2.82-beta.4",
"version": "0.2.82-beta.5",
"type": "module",
"description": "Paperclip runtime plugin for Fusion — provides AI agent web access capabilities",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/quality
## 0.1.7-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.7-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/quality",
"version": "0.1.7-beta.4",
"version": "0.1.7-beta.5",
"type": "module",
"description": "Quality hub and Task QA surfaces for Fusion",
"private": true,

View File

@@ -1,5 +1,13 @@
# @fusion-plugin-examples/reports
## 0.1.51-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/dashboard@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.51-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/reports",
"version": "0.1.51-beta.4",
"version": "0.1.51-beta.5",
"type": "module",
"description": "Reports plugin for Fusion",
"private": true,

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/roadmap
## 0.1.51-beta.5
### Patch Changes
- @fusion/core@0.74.0-beta.5
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.51-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/roadmap",
"version": "0.1.51-beta.4",
"version": "0.1.51-beta.5",
"type": "module",
"description": "Roadmap plugin package for Fusion",
"private": true,

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/whatsapp-chat
## 0.1.51-beta.5
### Patch Changes
- @fusion/plugin-sdk@0.74.0-beta.5
## 0.1.51-beta.4
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/whatsapp-chat",
"version": "0.1.51-beta.4",
"version": "0.1.51-beta.5",
"type": "module",
"description": "WhatsApp Web (Baileys) chat bridge for Fusion agents",
"keywords": [