diff --git a/.changeset/migration-holding-banner.md b/.changeset/migration-holding-banner.md deleted file mode 100644 index 4f777282f9..0000000000 --- a/.changeset/migration-holding-banner.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@runfusion/fusion": minor ---- - -summary: Show live database-migration progress during boot — dashboard holding page/banner and desktop launch screen. -category: feature -dev: CLI binds a temporary holding server on the dashboard port during `createTaskStoreForBackend` (new `onMigrationProgress` option) serving an auto-reloading page + `/api/health` `status:"migrating"`; open tabs render `MigrationInProgressBanner` from the health poll. Desktop publishes progress via `DesktopRuntimeStatus.migration` → IPC → `DesktopLaunchGate`, which shows the label and suspends its 30s timeout while progress advances. diff --git a/.changeset/sqlite-migration-nul-sanitize.md b/.changeset/sqlite-migration-nul-sanitize.md deleted file mode 100644 index 25424e1a00..0000000000 --- a/.changeset/sqlite-migration-nul-sanitize.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@runfusion/fusion": patch ---- - -summary: Fix first-boot SQLite→PostgreSQL migration failing on legacy data containing NUL (\u0000) characters. -category: fix -dev: The migrator now strips U+0000 from plain text cells, JSON string values/keys, malformed-JSON scalars, and opaque legacy-preservation cells before insert; content-checksum verification compares sanitized source against sanitized target. diff --git a/CHANGELOG-archive.md b/CHANGELOG-archive.md index d85f9fe807..ae9e63089d 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.29 + +### @fusion/i18n + +#### Patch Changes + +- @fusion/core@0.71.0 + ## 0.39.28 ### @fusion/i18n @@ -14361,6 +14369,14 @@ for reference. - @fusion/core@0.40.0 +## 0.11.55 + +### @fusion/droid-cli + +#### Patch Changes + +- @fusion-plugin-examples/droid-runtime@0.1.55 + ## 0.11.54 ### @fusion/droid-cli diff --git a/CHANGELOG.md b/CHANGELOG.md index c4259f4257..2a7a7272b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,21 +2,94 @@ 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.2 +## 0.71.0 ### Highlights -- 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 +- See live progress instead of a blank screen during database migrations on boot +- Desktop launch screen now shows migration status and won't time out mid-migration +- Fixed a first-boot crash migrating legacy SQLite data containing NUL characters + +### New +- Dashboard now shows a holding page and banner with live progress while a database migration runs in the background +- Desktop launch screen displays migration progress and pauses its timeout until migration finishes ### Fixed -- 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. +- Fixed first-boot SQLite-to-PostgreSQL migration failing on legacy data containing NUL (\u0000) characters + +## 0.70.2 + +### @fusion/dashboard + +#### 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 + +### @fusion/desktop + +#### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/dashboard@0.70.2 +- @fusion/engine@0.70.2 + +### @fusion/engine + +#### Patch Changes + +- @fusion/core@0.70.2 +- @fusion/pi-claude-cli@0.70.2 + +### @fusion/plugin-sdk + +#### Patch Changes + +- @fusion/core@0.70.2 + +### @runfusion/fusion + +#### 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." + +### runfusion.ai + +#### 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 diff --git a/package.json b/package.json index 64b4a3d4a4..82d4f966a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fusion-workspace", - "version": "0.70.2", + "version": "0.71.0", "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 b10ca6b352..6a61b40d8f 100644 --- a/packages/cli-alias/CHANGELOG.md +++ b/packages/cli-alias/CHANGELOG.md @@ -1,5 +1,13 @@ # runfusion.ai +## 0.71.0 + +### Patch Changes + +- Updated dependencies [0b6c4cd] +- Updated dependencies [48b0d04] + - @runfusion/fusion@0.71.0 + ## 0.70.2 ### Patch Changes diff --git a/packages/cli-alias/package.json b/packages/cli-alias/package.json index 50fb0b8f93..bd2a760e4a 100644 --- a/packages/cli-alias/package.json +++ b/packages/cli-alias/package.json @@ -1,6 +1,6 @@ { "name": "runfusion.ai", - "version": "0.70.2", + "version": "0.71.0", "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 d00202c5ce..5e7e3daba8 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,19 @@ # @runfusion/fusion +## 0.71.0 + +### Minor Changes + +- 0b6c4cd: summary: Show live database-migration progress during boot — dashboard holding page/banner and desktop launch screen. + category: feature + dev: CLI binds a temporary holding server on the dashboard port during `createTaskStoreForBackend` (new `onMigrationProgress` option) serving an auto-reloading page + `/api/health` `status:"migrating"`; open tabs render `MigrationInProgressBanner` from the health poll. Desktop publishes progress via `DesktopRuntimeStatus.migration` → IPC → `DesktopLaunchGate`, which shows the label and suspends its 30s timeout while progress advances. + +### Patch Changes + +- 48b0d04: summary: Fix first-boot SQLite→PostgreSQL migration failing on legacy data containing NUL (\u0000) characters. + category: fix + dev: The migrator now strips U+0000 from plain text cells, JSON string values/keys, malformed-JSON scalars, and opaque legacy-preservation cells before insert; content-checksum verification compares sanitized source against sanitized target. + ## 0.70.2 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index f90e5e1f44..89428c14ae 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@runfusion/fusion", - "version": "0.70.2", + "version": "0.71.0", "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 d893a3552c..5f6cf818c2 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/core +## 0.71.0 + ## 0.70.2 ## 0.70.1 diff --git a/packages/core/package.json b/packages/core/package.json index c8b48d52d1..e6d87878b1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/core", - "version": "0.70.2", + "version": "0.71.0", "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 b2ed31bde7..1799ff3f02 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -1,5 +1,26 @@ # @fusion/dashboard +## 0.71.0 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/engine@0.71.0 +- @fusion/i18n@0.39.29 +- @fusion-plugin-examples/claude-runtime@0.1.4 +- @fusion-plugin-examples/cli-printing-press@0.1.46 +- @fusion-plugin-examples/compound-engineering@0.1.29 +- @fusion-plugin-examples/dependency-graph@0.1.60 +- @fusion-plugin-examples/grok-runtime@0.2.7 +- @fusion-plugin-examples/omp-runtime@0.1.4 +- @fusion-plugin-examples/quality@0.1.4 +- @fusion-plugin-examples/roadmap@0.1.48 +- @fusion-plugin-examples/cursor-runtime@0.1.48 +- @fusion-plugin-examples/droid-runtime@0.1.55 +- @fusion-plugin-examples/hermes-runtime@0.2.79 +- @fusion-plugin-examples/openclaw-runtime@0.2.79 +- @fusion-plugin-examples/paperclip-runtime@0.2.79 + ## 0.70.2 ### Patch Changes diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 3f06ea4aa6..693ca7ca82 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/dashboard", - "version": "0.70.2", + "version": "0.71.0", "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 fc7f7b144d..282dc4481d 100644 --- a/packages/desktop/CHANGELOG.md +++ b/packages/desktop/CHANGELOG.md @@ -1,5 +1,13 @@ # @fusion/desktop +## 0.71.0 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/dashboard@0.71.0 +- @fusion/engine@0.71.0 + ## 0.70.2 ### Patch Changes diff --git a/packages/desktop/package.json b/packages/desktop/package.json index ef314a859e..733e80f619 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,7 @@ { "name": "@fusion/desktop", "productName": "Fusion", - "version": "0.70.2", + "version": "0.71.0", "license": "MIT", "author": { "name": "Runfusion", diff --git a/packages/droid-cli/CHANGELOG.md b/packages/droid-cli/CHANGELOG.md index 280f774f99..ebad5f5b40 100644 --- a/packages/droid-cli/CHANGELOG.md +++ b/packages/droid-cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/droid-cli +## 0.11.55 + +### Patch Changes + +- @fusion-plugin-examples/droid-runtime@0.1.55 + ## 0.11.54 ### Patch Changes diff --git a/packages/droid-cli/package.json b/packages/droid-cli/package.json index 67b1fcdfea..b8f748560b 100644 --- a/packages/droid-cli/package.json +++ b/packages/droid-cli/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/droid-cli", - "version": "0.11.54", + "version": "0.11.55", "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 8e26d7bbcd..e8c5c78689 100644 --- a/packages/engine/CHANGELOG.md +++ b/packages/engine/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion/engine +## 0.71.0 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/pi-claude-cli@0.71.0 + ## 0.70.2 ### Patch Changes diff --git a/packages/engine/package.json b/packages/engine/package.json index c9cadac58f..7f29536888 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/engine", - "version": "0.70.2", + "version": "0.71.0", "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 8d2b719a64..7c3b8689b7 100644 --- a/packages/i18n/CHANGELOG.md +++ b/packages/i18n/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/i18n +## 0.39.29 + +### Patch Changes + +- @fusion/core@0.71.0 + ## 0.39.28 ### Patch Changes diff --git a/packages/i18n/package.json b/packages/i18n/package.json index ddf2009699..521f4d9098 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/i18n", - "version": "0.39.28", + "version": "0.39.29", "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 982b022b12..0bcddc602d 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/mobile +## 0.71.0 + ## 0.70.2 ## 0.70.1 diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 06466466f9..d96f088975 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/mobile", - "version": "0.70.2", + "version": "0.71.0", "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 bccb24a599..f2929f1a27 100644 --- a/packages/pi-claude-cli/CHANGELOG.md +++ b/packages/pi-claude-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/pi-claude-cli +## 0.71.0 + ## 0.70.2 ## 0.70.1 diff --git a/packages/pi-claude-cli/package.json b/packages/pi-claude-cli/package.json index 79f230341c..7f3c5a1d85 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.2", + "version": "0.71.0", "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 edb401354c..ed51f7333b 100644 --- a/packages/plugin-sdk/CHANGELOG.md +++ b/packages/plugin-sdk/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/plugin-sdk +## 0.71.0 + +### Patch Changes + +- @fusion/core@0.71.0 + ## 0.70.2 ### Patch Changes diff --git a/packages/plugin-sdk/package.json b/packages/plugin-sdk/package.json index 49649ca224..73899eef3d 100644 --- a/packages/plugin-sdk/package.json +++ b/packages/plugin-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/plugin-sdk", - "version": "0.70.2", + "version": "0.71.0", "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 c8254c20c1..4c1a04a793 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.79 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.2.78 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-auto-label/package.json b/plugins/examples/fusion-plugin-auto-label/package.json index f9168dd2a8..49036d34c5 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.78", + "version": "0.2.79", "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 312bdd0cf4..b9efea0b5e 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.79 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.2.78 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-ci-status/package.json b/plugins/examples/fusion-plugin-ci-status/package.json index 1107f50f2e..c9f93633f2 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.78", + "version": "0.2.79", "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 fe0bfd3c15..df465ae587 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.79 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.2.78 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-notification/package.json b/plugins/examples/fusion-plugin-notification/package.json index c984f5eb7b..98b6a40d5e 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.78", + "version": "0.2.79", "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 401879b295..e453758670 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.79 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.2.78 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-settings-demo/package.json b/plugins/examples/fusion-plugin-settings-demo/package.json index 690fafa36b..731f19cf34 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.78", + "version": "0.2.79", "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 838543f199..60db83fe23 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.29 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.28 ### Patch Changes diff --git a/plugins/fusion-plugin-acp-runtime/package.json b/plugins/fusion-plugin-acp-runtime/package.json index d2a23c1f00..5986552f79 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.28", + "version": "0.1.29", "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 20ff09410d..ccfc37e4b9 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.49 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.1.48 ### Patch Changes diff --git a/plugins/fusion-plugin-agent-browser/package.json b/plugins/fusion-plugin-agent-browser/package.json index df6a5b0bc4..8138cb36ac 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.48", + "version": "0.1.49", "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 009f6096e2..d625290b50 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.4 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.3 ### Patch Changes diff --git a/plugins/fusion-plugin-claude-runtime/package.json b/plugins/fusion-plugin-claude-runtime/package.json index 07f417fc90..f6e236fe99 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.3", + "version": "0.1.4", "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 bb63bea264..28ca0d8a05 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.46 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.45 ### Patch Changes diff --git a/plugins/fusion-plugin-cli-printing-press/package.json b/plugins/fusion-plugin-cli-printing-press/package.json index 251f510af0..7fb5b31366 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.45", + "version": "0.1.46", "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 eedb90b029..75a8d73b85 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.29 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.28 ### Patch Changes diff --git a/plugins/fusion-plugin-compound-engineering/package.json b/plugins/fusion-plugin-compound-engineering/package.json index e3f3fbd5f5..b5a9e30739 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.28", + "version": "0.1.29", "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 c99f932ec4..02f6aae6dc 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.48 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.1.47 ### Patch Changes diff --git a/plugins/fusion-plugin-cursor-runtime/package.json b/plugins/fusion-plugin-cursor-runtime/package.json index 5ab6b42127..7938fee73d 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.47", + "version": "0.1.48", "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 b7f10c2513..4caf57c9af 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.60 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.59 ### Patch Changes diff --git a/plugins/fusion-plugin-dependency-graph/package.json b/plugins/fusion-plugin-dependency-graph/package.json index e89cef4135..72c9b36131 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.59", + "version": "0.1.60", "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 a1ac095f43..9195a75e40 100644 --- a/plugins/fusion-plugin-droid-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-droid-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.1.55 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.1.54 ### Patch Changes diff --git a/plugins/fusion-plugin-droid-runtime/package.json b/plugins/fusion-plugin-droid-runtime/package.json index cbe90c2028..d8df0a7e15 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.54", + "version": "0.1.55", "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 632b132504..0190f42903 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.48 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.47 ### Patch Changes diff --git a/plugins/fusion-plugin-even-realities-glasses/package.json b/plugins/fusion-plugin-even-realities-glasses/package.json index ffd4d217fa..1f0cbb058d 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.47", + "version": "0.1.48", "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 a0f36912fd..33840e06fa 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.7 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.2.6 ### Patch Changes diff --git a/plugins/fusion-plugin-grok-runtime/package.json b/plugins/fusion-plugin-grok-runtime/package.json index 86661104ca..db12294ee3 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.6", + "version": "0.2.7", "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 5349eda394..dc7a991fe8 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.79 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.2.78 ### Patch Changes diff --git a/plugins/fusion-plugin-hermes-runtime/package.json b/plugins/fusion-plugin-hermes-runtime/package.json index beee36765d..6c75eb2c48 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.78", + "version": "0.2.79", "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 247aa3982b..cc364df1b8 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.11 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.10 ### Patch Changes diff --git a/plugins/fusion-plugin-linear-import/package.json b/plugins/fusion-plugin-linear-import/package.json index 6a38f2e471..419bad6e3b 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.10", + "version": "0.1.11", "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 1acc2ed828..a548a20d09 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.4 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.3 ### Patch Changes diff --git a/plugins/fusion-plugin-omp-runtime/package.json b/plugins/fusion-plugin-omp-runtime/package.json index d1b2b394da..f5a72d731b 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.3", + "version": "0.1.4", "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 34cf2c1c45..8c64dfcb1e 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.79 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.2.78 ### Patch Changes diff --git a/plugins/fusion-plugin-openclaw-runtime/package.json b/plugins/fusion-plugin-openclaw-runtime/package.json index bbc86f1738..abbf3c4dba 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.78", + "version": "0.2.79", "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 045e3c415a..06594698a8 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.79 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.2.78 ### Patch Changes diff --git a/plugins/fusion-plugin-paperclip-runtime/package.json b/plugins/fusion-plugin-paperclip-runtime/package.json index 33e073aa90..07b4109f55 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.78", + "version": "0.2.79", "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 97cf23c5b7..c06f93c6cf 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.4 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.3 ### Patch Changes diff --git a/plugins/fusion-plugin-quality/package.json b/plugins/fusion-plugin-quality/package.json index b22cced28a..8d72050219 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.3", + "version": "0.1.4", "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 8370dd9fb9..aeb96ccce8 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.48 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/dashboard@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.47 ### Patch Changes diff --git a/plugins/fusion-plugin-reports/package.json b/plugins/fusion-plugin-reports/package.json index 89d6fdc00b..056a97bfdb 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.47", + "version": "0.1.48", "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 891851a28f..662a493fdf 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.48 + +### Patch Changes + +- @fusion/core@0.71.0 +- @fusion/plugin-sdk@0.71.0 + ## 0.1.47 ### Patch Changes diff --git a/plugins/fusion-plugin-roadmap/package.json b/plugins/fusion-plugin-roadmap/package.json index 8d282c55c4..75389aaa60 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.47", + "version": "0.1.48", "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 700305b368..9d10c6020d 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.48 + +### Patch Changes + +- @fusion/plugin-sdk@0.71.0 + ## 0.1.47 ### Patch Changes diff --git a/plugins/fusion-plugin-whatsapp-chat/package.json b/plugins/fusion-plugin-whatsapp-chat/package.json index 40c3ec357e..1286420fd9 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.47", + "version": "0.1.48", "type": "module", "description": "WhatsApp Web (Baileys) chat bridge for Fusion agents", "keywords": [