chore(release): v0.71.0

Version bump via changesets.
This commit is contained in:
gsxdsm
2026-07-17 20:13:12 -07:00
parent 0b6c4cd4ca
commit 7dda1aa3f5
73 changed files with 368 additions and 60 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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

View File

@@ -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/<platform>/embedded-postgres (override root with FUSION_EMBEDDED_PG_RUNTIME_DIR); releases add self-contained fn-cli-<platform>.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

View File

@@ -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",

View File

@@ -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

View File

@@ -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",

View File

@@ -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

View File

@@ -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",

View File

@@ -1,5 +1,7 @@
# @fusion/core
## 0.71.0
## 0.70.2
## 0.70.1

View File

@@ -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",

View File

@@ -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

View File

@@ -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",

View File

@@ -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

View File

@@ -1,7 +1,7 @@
{
"name": "@fusion/desktop",
"productName": "Fusion",
"version": "0.70.2",
"version": "0.71.0",
"license": "MIT",
"author": {
"name": "Runfusion",

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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",

View File

@@ -1,5 +1,11 @@
# @fusion/i18n
## 0.39.29
### Patch Changes
- @fusion/core@0.71.0
## 0.39.28
### Patch Changes

View File

@@ -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",

View File

@@ -1,5 +1,7 @@
# @fusion/mobile
## 0.71.0
## 0.70.2
## 0.70.1

View File

@@ -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",

View File

@@ -1,5 +1,7 @@
# @fusion/pi-claude-cli
## 0.71.0
## 0.70.2
## 0.70.1

View File

@@ -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,

View File

@@ -1,5 +1,11 @@
# @fusion/plugin-sdk
## 0.71.0
### Patch Changes
- @fusion/core@0.71.0
## 0.70.2
### Patch Changes

View File

@@ -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",

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/notification
## 0.2.79
### Patch Changes
- @fusion/plugin-sdk@0.71.0
## 0.2.78
### Patch Changes

View File

@@ -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": [

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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,

View File

@@ -1,5 +1,11 @@
# Changelog
## 0.1.55
### Patch Changes
- @fusion/plugin-sdk@0.71.0
## 0.1.54
### Patch Changes

View File

@@ -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": [

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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": [

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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": [