diff --git a/.changeset/cli-pg-migrations-in-npm-tarball.md b/.changeset/cli-pg-migrations-in-npm-tarball.md deleted file mode 100644 index 3507139700..0000000000 --- a/.changeset/cli-pg-migrations-in-npm-tarball.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@runfusion/fusion": patch ---- - -summary: Fix npm-installed CLI crashing at startup because PostgreSQL migrations were missing from the published package. -category: fix -dev: "tsup stages packages/core/src/postgres/migrations into dist/migrations, but the package files globs (dist/**/*.js, *.d.ts, maps, named dirs) matched no .sql file, so npm pack stripped every migration from the tarball. Installed CLIs failed schema init with ENOENT dist/migrations/0000_initial.sql and the dashboard supervisor crash-looped. Added dist/migrations/** to files; npm pack --dry-run now lists all 21 migration files. Sibling of the desktop staging fix 6e5bb5d3d." diff --git a/.changeset/cli-tarball-registry-and-llama-assets.md b/.changeset/cli-tarball-registry-and-llama-assets.md deleted file mode 100644 index 56a0272fb7..0000000000 --- a/.changeset/cli-tarball-registry-and-llama-assets.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@runfusion/fusion": patch ---- - -summary: Ship the plugin registry manifest and llama.cpp extension in the published npm package. -category: fix -dev: "Tarball-completeness audit follow-ups to the migrations fix: (1) dist/pi-llama-cpp was staged by tsup but matched no files glob, so useLlamaCpp silently reported not-installed in every published build — added dist/pi-llama-cpp/** to files. (2) dashboard plugin-routes resolves ./registry-manifest.json beside the bundled bin.js but it was never staged into the CLI dist, so published installs served an empty plugin registry — tsup now stages it from packages/dashboard/src and files includes dist/registry-manifest.json." diff --git a/.changeset/ship-child-process-worker.md b/.changeset/ship-child-process-worker.md deleted file mode 100644 index e24dbda5d0..0000000000 --- a/.changeset/ship-child-process-worker.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@runfusion/fusion": patch ---- - -summary: Ship the child-process runtime worker so isolationMode "child-process" works from npm installs. -category: fix -dev: New tsup entry emits dist/child-process-worker.js beside bin.js, matching the engine's getWorkerPath() sibling resolution; bundled with bin.js's noExternal/external/banner shape. diff --git a/.changeset/standalone-exe-postgres-boot.md b/.changeset/standalone-exe-postgres-boot.md deleted file mode 100644 index dd4371d118..0000000000 --- a/.changeset/standalone-exe-postgres-boot.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@runfusion/fusion": patch ---- - -summary: Fix the standalone `fn` binary failing to boot in both embedded-Postgres and DATABASE_URL modes. -category: fix -dev: Migrations now resolve via FUSION_MIGRATIONS_DIR > module-relative > execPath-relative; embedded-postgres ships as a self-contained bundle + native payload under runtime//embedded-postgres (override root with FUSION_EMBEDDED_PG_RUNTIME_DIR); releases add self-contained fn-cli-.tar.gz assets. diff --git a/.changeset/windows-shared-memory-type.md b/.changeset/windows-shared-memory-type.md deleted file mode 100644 index 6b50888b59..0000000000 --- a/.changeset/windows-shared-memory-type.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@runfusion/fusion": patch ---- - -summary: Fix embedded PostgreSQL failing to start on Windows after the mmap shared-memory default. -category: fix -dev: "shared_memory_type=mmap (default added 2026-07-16 for SysV shm exhaustion) is rejected on Windows, where the only valid value is windows — every Windows embedded start died with FATAL invalid value for parameter before the port opened, failing the v0.70.0/v0.70.1 Windows release smoke. Default flags are now platform-aware via defaultEmbeddedPostgresFlagsFor: empty on win32 (Windows needs no override; SysV exhaustion cannot occur there), mmap elsewhere." diff --git a/CHANGELOG-archive.md b/CHANGELOG-archive.md index e58db4ccf2..d85f9fe807 100644 --- a/CHANGELOG-archive.md +++ b/CHANGELOG-archive.md @@ -14134,6 +14134,14 @@ for reference. - Updated dependencies [a2ed6d0] - @runfusion/fusion@0.1.0 +## 0.39.28 + +### @fusion/i18n + +#### Patch Changes + +- @fusion/core@0.70.2 + ## 0.39.27 ### @fusion/i18n @@ -14353,6 +14361,14 @@ for reference. - @fusion/core@0.40.0 +## 0.11.54 + +### @fusion/droid-cli + +#### Patch Changes + +- @fusion-plugin-examples/droid-runtime@0.1.54 + ## 0.11.53 ### @fusion/droid-cli diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b5e8260cc..c4259f4257 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,84 @@ 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.70.1 +## 0.70.2 ### Highlights -- Fixed packaged desktop app crashing on first launch due to missing PostgreSQL migrations -- Fixed PR-mode auto-merge failures in centrally-installed multi-project setups +- Fixed npm-installed CLI crashing at startup from missing PostgreSQL migrations +- Plugin registry and llama.cpp extension now ship correctly in published npm installs +- Fixed child-process isolation mode failing on npm installs +- Fixed the standalone fn binary failing to boot in embedded-Postgres and DATABASE_URL modes +- Fixed embedded PostgreSQL refusing to start on Windows ### Fixed -- Packaged desktop builds no longer crash on first boot — the PostgreSQL migration files that power Local mode schema setup are now correctly bundled into the app. -- PR-mode auto-merge no longer fails with a "Could not determine repository" error when running centrally-installed, multi-project deployments; repository resolution now uses the correct per-project context instead of falling back to the wrong working directory. +- Fixed npm-installed CLI crashing at startup because PostgreSQL migrations were missing from the published package. +- Shipped the plugin registry manifest and llama.cpp extension in the published npm package, fixing silently missing plugins and a broken llama.cpp integration status. +- Shipped the child-process runtime worker so isolationMode "child-process" works correctly from npm installs. +- Fixed the standalone fn binary failing to boot in both embedded-Postgres and DATABASE_URL modes, and added self-contained release binaries. +- Fixed embedded PostgreSQL failing to start on Windows after a recent shared-memory default change. + +## 0.70.1 + +### @fusion/dashboard + +#### Patch Changes + +- @fusion/core@0.70.1 +- @fusion/engine@0.70.1 +- @fusion/i18n@0.39.27 +- @fusion-plugin-examples/claude-runtime@0.1.2 +- @fusion-plugin-examples/cli-printing-press@0.1.44 +- @fusion-plugin-examples/compound-engineering@0.1.27 +- @fusion-plugin-examples/dependency-graph@0.1.58 +- @fusion-plugin-examples/grok-runtime@0.2.5 +- @fusion-plugin-examples/omp-runtime@0.1.2 +- @fusion-plugin-examples/quality@0.1.2 +- @fusion-plugin-examples/roadmap@0.1.46 +- @fusion-plugin-examples/cursor-runtime@0.1.46 +- @fusion-plugin-examples/droid-runtime@0.1.53 +- @fusion-plugin-examples/hermes-runtime@0.2.77 +- @fusion-plugin-examples/openclaw-runtime@0.2.77 +- @fusion-plugin-examples/paperclip-runtime@0.2.77 + +### @fusion/desktop + +#### Patch Changes + +- @fusion/core@0.70.1 +- @fusion/dashboard@0.70.1 +- @fusion/engine@0.70.1 + +### @fusion/engine + +#### Patch Changes + +- @fusion/core@0.70.1 +- @fusion/pi-claude-cli@0.70.1 + +### @fusion/plugin-sdk + +#### Patch Changes + +- @fusion/core@0.70.1 + +### @runfusion/fusion + +#### Patch Changes + +- 09e519e: summary: Fix packaged desktop app crashing on first boot because PostgreSQL migrations were missing from the build. + category: fix + dev: "@fusion/core's bare tsc build never copies src/postgres/migrations/\*.sql into dist; the CLI compensates in packages/cli/tsup.config.ts but the desktop staging did not, so packaged Local mode crashed schema init (ENOENT dist/postgres/migrations/0000_initial.sql) after embedded Postgres started. packages/desktop/scripts/workspace-tools.ts now stages the migrations in buildCore(), re-stages them into the pnpm-deploy closure in stageDesktopDeploy(), and fails the build via verifyCoreMigrationsStaged() if the baseline migration is absent. Fixed in 6e5bb5d3d." +- 9cafa04: summary: Fix PR-mode auto-merge failing with "Could not determine repository" in centrally-installed multi-project deployments. + category: fix + dev: processPullRequestMergeTask, createGroupPrCallback, and createPrNodeGithubOps now pass explicit owner/repo (resolved from the per-project cwd / task worktree) into findPrForBranch/createPr/mergePr instead of relying on GitHubClient.resolveRepo's process.cwd() fallback; the engine's buildRespondCallback resolves the review-response run cwd from the task's recorded worktree. Fixes Tchori-Labs/Fusion#4; non-workspace sibling of upstream #1924/FN-7610. + +### runfusion.ai + +#### Patch Changes + +- Updated dependencies [09e519e] +- Updated dependencies [9cafa04] + - @runfusion/fusion@0.70.1 ## 0.70.0 diff --git a/package.json b/package.json index 3580a4f6af..64b4a3d4a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fusion-workspace", - "version": "0.70.1", + "version": "0.70.2", "private": true, "license": "MIT", "homepage": "https://github.com/Runfusion/Fusion#readme", diff --git a/packages/cli-alias/CHANGELOG.md b/packages/cli-alias/CHANGELOG.md index 6893cdab97..b10ca6b352 100644 --- a/packages/cli-alias/CHANGELOG.md +++ b/packages/cli-alias/CHANGELOG.md @@ -1,5 +1,16 @@ # runfusion.ai +## 0.70.2 + +### Patch Changes + +- Updated dependencies [4970465] +- Updated dependencies [c831ccb] +- Updated dependencies [90a1a4b] +- Updated dependencies [6b893f7] +- Updated dependencies [8517a5d] + - @runfusion/fusion@0.70.2 + ## 0.70.1 ### Patch Changes diff --git a/packages/cli-alias/package.json b/packages/cli-alias/package.json index 298370c42b..50fb0b8f93 100644 --- a/packages/cli-alias/package.json +++ b/packages/cli-alias/package.json @@ -1,6 +1,6 @@ { "name": "runfusion.ai", - "version": "0.70.1", + "version": "0.70.2", "license": "MIT", "description": "Launch Fusion with `npx runfusion.ai` — tiny alias for @runfusion/fusion.", "homepage": "https://runfusion.ai", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 83f6528832..d00202c5ce 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,25 @@ # @runfusion/fusion +## 0.70.2 + +### Patch Changes + +- 4970465: summary: Fix npm-installed CLI crashing at startup because PostgreSQL migrations were missing from the published package. + category: fix + dev: "tsup stages packages/core/src/postgres/migrations into dist/migrations, but the package files globs (dist/**/_.js, _.d.ts, maps, named dirs) matched no .sql file, so npm pack stripped every migration from the tarball. Installed CLIs failed schema init with ENOENT dist/migrations/0000_initial.sql and the dashboard supervisor crash-looped. Added dist/migrations/** to files; npm pack --dry-run now lists all 21 migration files. Sibling of the desktop staging fix 6e5bb5d3d." +- c831ccb: summary: Ship the plugin registry manifest and llama.cpp extension in the published npm package. + category: fix + dev: "Tarball-completeness audit follow-ups to the migrations fix: (1) dist/pi-llama-cpp was staged by tsup but matched no files glob, so useLlamaCpp silently reported not-installed in every published build — added dist/pi-llama-cpp/\*\* to files. (2) dashboard plugin-routes resolves ./registry-manifest.json beside the bundled bin.js but it was never staged into the CLI dist, so published installs served an empty plugin registry — tsup now stages it from packages/dashboard/src and files includes dist/registry-manifest.json." +- 90a1a4b: summary: Ship the child-process runtime worker so isolationMode "child-process" works from npm installs. + category: fix + dev: New tsup entry emits dist/child-process-worker.js beside bin.js, matching the engine's getWorkerPath() sibling resolution; bundled with bin.js's noExternal/external/banner shape. +- 6b893f7: summary: Fix the standalone `fn` binary failing to boot in both embedded-Postgres and DATABASE_URL modes. + category: fix + dev: Migrations now resolve via FUSION_MIGRATIONS_DIR > module-relative > execPath-relative; embedded-postgres ships as a self-contained bundle + native payload under runtime//embedded-postgres (override root with FUSION_EMBEDDED_PG_RUNTIME_DIR); releases add self-contained fn-cli-.tar.gz assets. +- 8517a5d: summary: Fix embedded PostgreSQL failing to start on Windows after the mmap shared-memory default. + category: fix + dev: "shared_memory_type=mmap (default added 2026-07-16 for SysV shm exhaustion) is rejected on Windows, where the only valid value is windows — every Windows embedded start died with FATAL invalid value for parameter before the port opened, failing the v0.70.0/v0.70.1 Windows release smoke. Default flags are now platform-aware via defaultEmbeddedPostgresFlagsFor: empty on win32 (Windows needs no override; SysV exhaustion cannot occur there), mmap elsewhere." + ## 0.70.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 023a254bf6..f90e5e1f44 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@runfusion/fusion", - "version": "0.70.1", + "version": "0.70.2", "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", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b0d86c321c..d893a3552c 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/core +## 0.70.2 + ## 0.70.1 ## 0.70.0 diff --git a/packages/core/package.json b/packages/core/package.json index 6c5f214f1b..c8b48d52d1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/core", - "version": "0.70.1", + "version": "0.70.2", "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", diff --git a/packages/dashboard/CHANGELOG.md b/packages/dashboard/CHANGELOG.md index df9a8c4698..b2ed31bde7 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -1,5 +1,26 @@ # @fusion/dashboard +## 0.70.2 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/engine@0.70.2 +- @fusion/i18n@0.39.28 +- @fusion-plugin-examples/claude-runtime@0.1.3 +- @fusion-plugin-examples/cli-printing-press@0.1.45 +- @fusion-plugin-examples/compound-engineering@0.1.28 +- @fusion-plugin-examples/dependency-graph@0.1.59 +- @fusion-plugin-examples/grok-runtime@0.2.6 +- @fusion-plugin-examples/omp-runtime@0.1.3 +- @fusion-plugin-examples/quality@0.1.3 +- @fusion-plugin-examples/roadmap@0.1.47 +- @fusion-plugin-examples/cursor-runtime@0.1.47 +- @fusion-plugin-examples/droid-runtime@0.1.54 +- @fusion-plugin-examples/hermes-runtime@0.2.78 +- @fusion-plugin-examples/openclaw-runtime@0.2.78 +- @fusion-plugin-examples/paperclip-runtime@0.2.78 + ## 0.70.1 ### Patch Changes diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index bc37a6b9d8..3f06ea4aa6 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/dashboard", - "version": "0.70.1", + "version": "0.70.2", "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", diff --git a/packages/desktop/CHANGELOG.md b/packages/desktop/CHANGELOG.md index 50f5c80a03..fc7f7b144d 100644 --- a/packages/desktop/CHANGELOG.md +++ b/packages/desktop/CHANGELOG.md @@ -1,5 +1,13 @@ # @fusion/desktop +## 0.70.2 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/dashboard@0.70.2 +- @fusion/engine@0.70.2 + ## 0.70.1 ### Patch Changes diff --git a/packages/desktop/package.json b/packages/desktop/package.json index d4df3b21ee..ef314a859e 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,7 @@ { "name": "@fusion/desktop", "productName": "Fusion", - "version": "0.70.1", + "version": "0.70.2", "license": "MIT", "author": { "name": "Runfusion", diff --git a/packages/droid-cli/CHANGELOG.md b/packages/droid-cli/CHANGELOG.md index 262d3537c7..280f774f99 100644 --- a/packages/droid-cli/CHANGELOG.md +++ b/packages/droid-cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/droid-cli +## 0.11.54 + +### Patch Changes + +- @fusion-plugin-examples/droid-runtime@0.1.54 + ## 0.11.53 ### Patch Changes diff --git a/packages/droid-cli/package.json b/packages/droid-cli/package.json index 8fb363091b..67b1fcdfea 100644 --- a/packages/droid-cli/package.json +++ b/packages/droid-cli/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/droid-cli", - "version": "0.11.53", + "version": "0.11.54", "description": "First-party Fusion pi extension that routes LLM calls through the Droid CLI subprocess.", "license": "MIT", "private": true, diff --git a/packages/engine/CHANGELOG.md b/packages/engine/CHANGELOG.md index d4868a30da..8e26d7bbcd 100644 --- a/packages/engine/CHANGELOG.md +++ b/packages/engine/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion/engine +## 0.70.2 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/pi-claude-cli@0.70.2 + ## 0.70.1 ### Patch Changes diff --git a/packages/engine/package.json b/packages/engine/package.json index 1d7fdc2d14..c9cadac58f 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/engine", - "version": "0.70.1", + "version": "0.70.2", "license": "MIT", "description": "Fusion engine: executor, merger, scheduler, and automation runtime for the Fusion AI coding agent.", "homepage": "https://github.com/Runfusion/Fusion#readme", diff --git a/packages/i18n/CHANGELOG.md b/packages/i18n/CHANGELOG.md index 472f7cf83b..8d2b719a64 100644 --- a/packages/i18n/CHANGELOG.md +++ b/packages/i18n/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/i18n +## 0.39.28 + +### Patch Changes + +- @fusion/core@0.70.2 + ## 0.39.27 ### Patch Changes diff --git a/packages/i18n/package.json b/packages/i18n/package.json index a9fbd05350..ddf2009699 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/i18n", - "version": "0.39.27", + "version": "0.39.28", "license": "MIT", "description": "Fusion i18n: authored translation catalogs and shared i18next configuration for the Fusion dashboard and terminal UI.", "type": "module", diff --git a/packages/mobile/CHANGELOG.md b/packages/mobile/CHANGELOG.md index d09222c204..982b022b12 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/mobile +## 0.70.2 + ## 0.70.1 ## 0.70.0 diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 0d2c039a46..06466466f9 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/mobile", - "version": "0.70.1", + "version": "0.70.2", "license": "MIT", "description": "Fusion mobile: Capacitor wrapper around the Fusion dashboard for iOS and Android.", "homepage": "https://github.com/Runfusion/Fusion#readme", diff --git a/packages/pi-claude-cli/CHANGELOG.md b/packages/pi-claude-cli/CHANGELOG.md index 24bcba0fc5..bccb24a599 100644 --- a/packages/pi-claude-cli/CHANGELOG.md +++ b/packages/pi-claude-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/pi-claude-cli +## 0.70.2 + ## 0.70.1 ## 0.70.0 diff --git a/packages/pi-claude-cli/package.json b/packages/pi-claude-cli/package.json index 09d92f0b49..79f230341c 100644 --- a/packages/pi-claude-cli/package.json +++ b/packages/pi-claude-cli/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/pi-claude-cli", - "version": "0.70.1", + "version": "0.70.2", "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, diff --git a/packages/plugin-sdk/CHANGELOG.md b/packages/plugin-sdk/CHANGELOG.md index ad002e4080..edb401354c 100644 --- a/packages/plugin-sdk/CHANGELOG.md +++ b/packages/plugin-sdk/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/plugin-sdk +## 0.70.2 + +### Patch Changes + +- @fusion/core@0.70.2 + ## 0.70.1 ### Patch Changes diff --git a/packages/plugin-sdk/package.json b/packages/plugin-sdk/package.json index 478fd322a7..49649ca224 100644 --- a/packages/plugin-sdk/package.json +++ b/packages/plugin-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/plugin-sdk", - "version": "0.70.1", + "version": "0.70.2", "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", diff --git a/plugins/examples/fusion-plugin-auto-label/CHANGELOG.md b/plugins/examples/fusion-plugin-auto-label/CHANGELOG.md index 1c7a8504a9..c8254c20c1 100644 --- a/plugins/examples/fusion-plugin-auto-label/CHANGELOG.md +++ b/plugins/examples/fusion-plugin-auto-label/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/auto-label +## 0.2.78 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.2.77 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-auto-label/package.json b/plugins/examples/fusion-plugin-auto-label/package.json index 3d6219da63..f9168dd2a8 100644 --- a/plugins/examples/fusion-plugin-auto-label/package.json +++ b/plugins/examples/fusion-plugin-auto-label/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/auto-label", - "version": "0.2.77", + "version": "0.2.78", "type": "module", "description": "Automatically labels tasks based on description content", "keywords": [ diff --git a/plugins/examples/fusion-plugin-ci-status/CHANGELOG.md b/plugins/examples/fusion-plugin-ci-status/CHANGELOG.md index 079b593f2b..312bdd0cf4 100644 --- a/plugins/examples/fusion-plugin-ci-status/CHANGELOG.md +++ b/plugins/examples/fusion-plugin-ci-status/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/ci-status +## 0.2.78 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.2.77 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-ci-status/package.json b/plugins/examples/fusion-plugin-ci-status/package.json index 01efef6f81..1107f50f2e 100644 --- a/plugins/examples/fusion-plugin-ci-status/package.json +++ b/plugins/examples/fusion-plugin-ci-status/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/ci-status", - "version": "0.2.77", + "version": "0.2.78", "type": "module", "description": "Polls CI status for branches and provides a custom API to query results", "keywords": [ diff --git a/plugins/examples/fusion-plugin-notification/CHANGELOG.md b/plugins/examples/fusion-plugin-notification/CHANGELOG.md index 6f0c7aa1b9..fe0bfd3c15 100644 --- a/plugins/examples/fusion-plugin-notification/CHANGELOG.md +++ b/plugins/examples/fusion-plugin-notification/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/notification +## 0.2.78 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.2.77 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-notification/package.json b/plugins/examples/fusion-plugin-notification/package.json index 2c28a0fba9..c984f5eb7b 100644 --- a/plugins/examples/fusion-plugin-notification/package.json +++ b/plugins/examples/fusion-plugin-notification/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/notification", - "version": "0.2.77", + "version": "0.2.78", "type": "module", "description": "Example Fusion plugin that sends webhook notifications on task lifecycle events", "keywords": [ diff --git a/plugins/examples/fusion-plugin-settings-demo/CHANGELOG.md b/plugins/examples/fusion-plugin-settings-demo/CHANGELOG.md index 04cb68f1b4..401879b295 100644 --- a/plugins/examples/fusion-plugin-settings-demo/CHANGELOG.md +++ b/plugins/examples/fusion-plugin-settings-demo/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/settings-demo +## 0.2.78 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.2.77 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-settings-demo/package.json b/plugins/examples/fusion-plugin-settings-demo/package.json index 0e17769829..690fafa36b 100644 --- a/plugins/examples/fusion-plugin-settings-demo/package.json +++ b/plugins/examples/fusion-plugin-settings-demo/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/settings-demo", - "version": "0.2.77", + "version": "0.2.78", "type": "module", "description": "Example Fusion plugin demonstrating settings schema and runtime configuration", "keywords": [ diff --git a/plugins/fusion-plugin-acp-runtime/CHANGELOG.md b/plugins/fusion-plugin-acp-runtime/CHANGELOG.md index 94eb5a4321..838543f199 100644 --- a/plugins/fusion-plugin-acp-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-acp-runtime/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/acp-runtime +## 0.1.28 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.27 ### Patch Changes diff --git a/plugins/fusion-plugin-acp-runtime/package.json b/plugins/fusion-plugin-acp-runtime/package.json index 57840971c2..d2a23c1f00 100644 --- a/plugins/fusion-plugin-acp-runtime/package.json +++ b/plugins/fusion-plugin-acp-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/acp-runtime", - "version": "0.1.27", + "version": "0.1.28", "type": "module", "description": "ACP (Agent Client Protocol) runtime plugin for Fusion — drives any ACP-compatible agent over JSON-RPC/stdio", "keywords": [ diff --git a/plugins/fusion-plugin-agent-browser/CHANGELOG.md b/plugins/fusion-plugin-agent-browser/CHANGELOG.md index c8af6e7033..20ff09410d 100644 --- a/plugins/fusion-plugin-agent-browser/CHANGELOG.md +++ b/plugins/fusion-plugin-agent-browser/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/agent-browser +## 0.1.48 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.1.47 ### Patch Changes diff --git a/plugins/fusion-plugin-agent-browser/package.json b/plugins/fusion-plugin-agent-browser/package.json index 674492d37d..df6a5b0bc4 100644 --- a/plugins/fusion-plugin-agent-browser/package.json +++ b/plugins/fusion-plugin-agent-browser/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/agent-browser", - "version": "0.1.47", + "version": "0.1.48", "type": "module", "description": "Agent Browser runtime and prompt/skill/workflow contributions for Fusion", "private": true, diff --git a/plugins/fusion-plugin-claude-runtime/CHANGELOG.md b/plugins/fusion-plugin-claude-runtime/CHANGELOG.md index 2714712156..009f6096e2 100644 --- a/plugins/fusion-plugin-claude-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-claude-runtime/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/claude-runtime +## 0.1.3 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.2 ### Patch Changes diff --git a/plugins/fusion-plugin-claude-runtime/package.json b/plugins/fusion-plugin-claude-runtime/package.json index 954a21b8e1..07f417fc90 100644 --- a/plugins/fusion-plugin-claude-runtime/package.json +++ b/plugins/fusion-plugin-claude-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/claude-runtime", - "version": "0.1.2", + "version": "0.1.3", "type": "module", "description": "Claude Code runtime plugin for Fusion (ACP bridge)", "keywords": [ diff --git a/plugins/fusion-plugin-cli-printing-press/CHANGELOG.md b/plugins/fusion-plugin-cli-printing-press/CHANGELOG.md index 93810509c7..bb63bea264 100644 --- a/plugins/fusion-plugin-cli-printing-press/CHANGELOG.md +++ b/plugins/fusion-plugin-cli-printing-press/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/cli-printing-press +## 0.1.45 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.44 ### Patch Changes diff --git a/plugins/fusion-plugin-cli-printing-press/package.json b/plugins/fusion-plugin-cli-printing-press/package.json index 28881df4b9..251f510af0 100644 --- a/plugins/fusion-plugin-cli-printing-press/package.json +++ b/plugins/fusion-plugin-cli-printing-press/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/cli-printing-press", - "version": "0.1.44", + "version": "0.1.45", "type": "module", "description": "CLI Printing Press plugin package for Fusion", "private": true, diff --git a/plugins/fusion-plugin-compound-engineering/CHANGELOG.md b/plugins/fusion-plugin-compound-engineering/CHANGELOG.md index 6dcc6c4a33..eedb90b029 100644 --- a/plugins/fusion-plugin-compound-engineering/CHANGELOG.md +++ b/plugins/fusion-plugin-compound-engineering/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/compound-engineering +## 0.1.28 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.27 ### Patch Changes diff --git a/plugins/fusion-plugin-compound-engineering/package.json b/plugins/fusion-plugin-compound-engineering/package.json index a8824ea06d..e3f3fbd5f5 100644 --- a/plugins/fusion-plugin-compound-engineering/package.json +++ b/plugins/fusion-plugin-compound-engineering/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/compound-engineering", - "version": "0.1.27", + "version": "0.1.28", "type": "module", "description": "Compound Engineering plugin for Fusion", "private": true, diff --git a/plugins/fusion-plugin-cursor-runtime/CHANGELOG.md b/plugins/fusion-plugin-cursor-runtime/CHANGELOG.md index 42268fa3ae..c99f932ec4 100644 --- a/plugins/fusion-plugin-cursor-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-cursor-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/cursor-runtime +## 0.1.47 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.1.46 ### Patch Changes diff --git a/plugins/fusion-plugin-cursor-runtime/package.json b/plugins/fusion-plugin-cursor-runtime/package.json index ff92ce7e34..5ab6b42127 100644 --- a/plugins/fusion-plugin-cursor-runtime/package.json +++ b/plugins/fusion-plugin-cursor-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/cursor-runtime", - "version": "0.1.46", + "version": "0.1.47", "type": "module", "description": "Cursor CLI runtime plugin for Fusion", "keywords": [ diff --git a/plugins/fusion-plugin-dependency-graph/CHANGELOG.md b/plugins/fusion-plugin-dependency-graph/CHANGELOG.md index ca3b77c31d..b7f10c2513 100644 --- a/plugins/fusion-plugin-dependency-graph/CHANGELOG.md +++ b/plugins/fusion-plugin-dependency-graph/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/dependency-graph +## 0.1.59 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.58 ### Patch Changes diff --git a/plugins/fusion-plugin-dependency-graph/package.json b/plugins/fusion-plugin-dependency-graph/package.json index ad470af802..e89cef4135 100644 --- a/plugins/fusion-plugin-dependency-graph/package.json +++ b/plugins/fusion-plugin-dependency-graph/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/dependency-graph", - "version": "0.1.58", + "version": "0.1.59", "type": "module", "description": "Dependency graph dashboard view plugin for Fusion", "private": true, diff --git a/plugins/fusion-plugin-droid-runtime/CHANGELOG.md b/plugins/fusion-plugin-droid-runtime/CHANGELOG.md index b7ae89e7f7..a1ac095f43 100644 --- a/plugins/fusion-plugin-droid-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-droid-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.1.54 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.1.53 ### Patch Changes diff --git a/plugins/fusion-plugin-droid-runtime/package.json b/plugins/fusion-plugin-droid-runtime/package.json index c1486ab60b..cbe90c2028 100644 --- a/plugins/fusion-plugin-droid-runtime/package.json +++ b/plugins/fusion-plugin-droid-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/droid-runtime", - "version": "0.1.53", + "version": "0.1.54", "type": "module", "description": "Droid runtime plugin for Fusion", "keywords": [ diff --git a/plugins/fusion-plugin-even-realities-glasses/CHANGELOG.md b/plugins/fusion-plugin-even-realities-glasses/CHANGELOG.md index b263aacae1..632b132504 100644 --- a/plugins/fusion-plugin-even-realities-glasses/CHANGELOG.md +++ b/plugins/fusion-plugin-even-realities-glasses/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/even-realities-glasses +## 0.1.47 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.46 ### Patch Changes diff --git a/plugins/fusion-plugin-even-realities-glasses/package.json b/plugins/fusion-plugin-even-realities-glasses/package.json index 4c4833f8e0..ffd4d217fa 100644 --- a/plugins/fusion-plugin-even-realities-glasses/package.json +++ b/plugins/fusion-plugin-even-realities-glasses/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/even-realities-glasses", - "version": "0.1.46", + "version": "0.1.47", "type": "module", "description": "Canonical Even Realities Fusion plugin with board/task cards, actions, notifications, and webhook transport", "keywords": [ diff --git a/plugins/fusion-plugin-grok-runtime/CHANGELOG.md b/plugins/fusion-plugin-grok-runtime/CHANGELOG.md index ba359fa8ca..a0f36912fd 100644 --- a/plugins/fusion-plugin-grok-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-grok-runtime/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/grok-runtime +## 0.2.6 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.2.5 ### Patch Changes diff --git a/plugins/fusion-plugin-grok-runtime/package.json b/plugins/fusion-plugin-grok-runtime/package.json index 3e615fe90b..86661104ca 100644 --- a/plugins/fusion-plugin-grok-runtime/package.json +++ b/plugins/fusion-plugin-grok-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/grok-runtime", - "version": "0.2.5", + "version": "0.2.6", "type": "module", "description": "Grok CLI runtime plugin for Fusion (ACP agent stdio)", "keywords": [ diff --git a/plugins/fusion-plugin-hermes-runtime/CHANGELOG.md b/plugins/fusion-plugin-hermes-runtime/CHANGELOG.md index 70eb1843a9..5349eda394 100644 --- a/plugins/fusion-plugin-hermes-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-hermes-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/hermes-runtime +## 0.2.78 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.2.77 ### Patch Changes diff --git a/plugins/fusion-plugin-hermes-runtime/package.json b/plugins/fusion-plugin-hermes-runtime/package.json index 779c78278c..beee36765d 100644 --- a/plugins/fusion-plugin-hermes-runtime/package.json +++ b/plugins/fusion-plugin-hermes-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/hermes-runtime", - "version": "0.2.77", + "version": "0.2.78", "type": "module", "description": "Hermes AI runtime plugin for Fusion - provides AI agent execution runtime", "keywords": [ diff --git a/plugins/fusion-plugin-linear-import/CHANGELOG.md b/plugins/fusion-plugin-linear-import/CHANGELOG.md index 7f10b2fa9e..247aa3982b 100644 --- a/plugins/fusion-plugin-linear-import/CHANGELOG.md +++ b/plugins/fusion-plugin-linear-import/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/linear-import +## 0.1.10 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.9 ### Patch Changes diff --git a/plugins/fusion-plugin-linear-import/package.json b/plugins/fusion-plugin-linear-import/package.json index 67294dd746..6a38f2e471 100644 --- a/plugins/fusion-plugin-linear-import/package.json +++ b/plugins/fusion-plugin-linear-import/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/linear-import", - "version": "0.1.9", + "version": "0.1.10", "type": "module", "description": "Linear issue import plugin for Fusion", "private": true, diff --git a/plugins/fusion-plugin-omp-runtime/CHANGELOG.md b/plugins/fusion-plugin-omp-runtime/CHANGELOG.md index ad92c43e51..1acc2ed828 100644 --- a/plugins/fusion-plugin-omp-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-omp-runtime/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/omp-runtime +## 0.1.3 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.2 ### Patch Changes diff --git a/plugins/fusion-plugin-omp-runtime/package.json b/plugins/fusion-plugin-omp-runtime/package.json index e60f9aa33c..d1b2b394da 100644 --- a/plugins/fusion-plugin-omp-runtime/package.json +++ b/plugins/fusion-plugin-omp-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/omp-runtime", - "version": "0.1.2", + "version": "0.1.3", "type": "module", "description": "Oh My Pi (omp) runtime plugin for Fusion via Agent Client Protocol (omp acp)", "keywords": [ diff --git a/plugins/fusion-plugin-openclaw-runtime/CHANGELOG.md b/plugins/fusion-plugin-openclaw-runtime/CHANGELOG.md index 3e00b5f6d6..34cf2c1c45 100644 --- a/plugins/fusion-plugin-openclaw-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-openclaw-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/openclaw-runtime +## 0.2.78 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.2.77 ### Patch Changes diff --git a/plugins/fusion-plugin-openclaw-runtime/package.json b/plugins/fusion-plugin-openclaw-runtime/package.json index 5b95f9d68d..bbc86f1738 100644 --- a/plugins/fusion-plugin-openclaw-runtime/package.json +++ b/plugins/fusion-plugin-openclaw-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/openclaw-runtime", - "version": "0.2.77", + "version": "0.2.78", "type": "module", "description": "Provides OpenClaw runtime for Fusion AI agents", "keywords": [ diff --git a/plugins/fusion-plugin-paperclip-runtime/CHANGELOG.md b/plugins/fusion-plugin-paperclip-runtime/CHANGELOG.md index 0bb0feb491..045e3c415a 100644 --- a/plugins/fusion-plugin-paperclip-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-paperclip-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/paperclip-runtime +## 0.2.78 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.2.77 ### Patch Changes diff --git a/plugins/fusion-plugin-paperclip-runtime/package.json b/plugins/fusion-plugin-paperclip-runtime/package.json index a3f2b4926f..33e073aa90 100644 --- a/plugins/fusion-plugin-paperclip-runtime/package.json +++ b/plugins/fusion-plugin-paperclip-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/paperclip-runtime", - "version": "0.2.77", + "version": "0.2.78", "type": "module", "description": "Paperclip runtime plugin for Fusion — provides AI agent web access capabilities", "keywords": [ diff --git a/plugins/fusion-plugin-quality/CHANGELOG.md b/plugins/fusion-plugin-quality/CHANGELOG.md index 5c540d141b..97cf23c5b7 100644 --- a/plugins/fusion-plugin-quality/CHANGELOG.md +++ b/plugins/fusion-plugin-quality/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/quality +## 0.1.3 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.2 ### Patch Changes diff --git a/plugins/fusion-plugin-quality/package.json b/plugins/fusion-plugin-quality/package.json index b05db98d97..b22cced28a 100644 --- a/plugins/fusion-plugin-quality/package.json +++ b/plugins/fusion-plugin-quality/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/quality", - "version": "0.1.2", + "version": "0.1.3", "type": "module", "description": "Quality hub and Task QA surfaces for Fusion", "private": true, diff --git a/plugins/fusion-plugin-reports/CHANGELOG.md b/plugins/fusion-plugin-reports/CHANGELOG.md index f95b3b0eb5..8370dd9fb9 100644 --- a/plugins/fusion-plugin-reports/CHANGELOG.md +++ b/plugins/fusion-plugin-reports/CHANGELOG.md @@ -1,5 +1,13 @@ # @fusion-plugin-examples/reports +## 0.1.47 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/dashboard@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.46 ### Patch Changes diff --git a/plugins/fusion-plugin-reports/package.json b/plugins/fusion-plugin-reports/package.json index 839260b6db..89d6fdc00b 100644 --- a/plugins/fusion-plugin-reports/package.json +++ b/plugins/fusion-plugin-reports/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/reports", - "version": "0.1.46", + "version": "0.1.47", "type": "module", "description": "Reports plugin for Fusion", "private": true, diff --git a/plugins/fusion-plugin-roadmap/CHANGELOG.md b/plugins/fusion-plugin-roadmap/CHANGELOG.md index fbad28c5e2..891851a28f 100644 --- a/plugins/fusion-plugin-roadmap/CHANGELOG.md +++ b/plugins/fusion-plugin-roadmap/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion-plugin-examples/roadmap +## 0.1.47 + +### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/plugin-sdk@0.70.2 + ## 0.1.46 ### Patch Changes diff --git a/plugins/fusion-plugin-roadmap/package.json b/plugins/fusion-plugin-roadmap/package.json index 88ccbcac5f..8d282c55c4 100644 --- a/plugins/fusion-plugin-roadmap/package.json +++ b/plugins/fusion-plugin-roadmap/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/roadmap", - "version": "0.1.46", + "version": "0.1.47", "type": "module", "description": "Roadmap plugin package for Fusion", "private": true, diff --git a/plugins/fusion-plugin-whatsapp-chat/CHANGELOG.md b/plugins/fusion-plugin-whatsapp-chat/CHANGELOG.md index b9643f5ae2..700305b368 100644 --- a/plugins/fusion-plugin-whatsapp-chat/CHANGELOG.md +++ b/plugins/fusion-plugin-whatsapp-chat/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion-plugin-examples/whatsapp-chat +## 0.1.47 + +### Patch Changes + +- @fusion/plugin-sdk@0.70.2 + ## 0.1.46 ### Patch Changes diff --git a/plugins/fusion-plugin-whatsapp-chat/package.json b/plugins/fusion-plugin-whatsapp-chat/package.json index 1158a830b4..40c3ec357e 100644 --- a/plugins/fusion-plugin-whatsapp-chat/package.json +++ b/plugins/fusion-plugin-whatsapp-chat/package.json @@ -1,6 +1,6 @@ { "name": "@fusion-plugin-examples/whatsapp-chat", - "version": "0.1.46", + "version": "0.1.47", "type": "module", "description": "WhatsApp Web (Baileys) chat bridge for Fusion agents", "keywords": [