diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 0000000000..3244172c86 --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,59 @@ +{ + "mode": "pre", + "tag": "beta", + "initialVersions": { + "@runfusion/fusion": "0.73.0", + "runfusion.ai": "0.73.0", + "@fusion/core": "0.73.0", + "@fusion/dashboard": "0.73.0", + "@fusion/desktop": "0.73.0", + "@fusion/droid-cli": "0.11.57", + "@fusion/engine": "0.73.0", + "@fusion/i18n": "0.39.31", + "@fusion/mobile": "0.73.0", + "@fusion/pi-claude-cli": "0.73.0", + "@fusion/pi-llama-cpp": "0.17.2", + "@fusion/plugin-sdk": "0.73.0", + "@fusion-plugin-examples/auto-label": "0.2.81", + "@fusion-plugin-examples/ci-status": "0.2.81", + "@fusion-plugin-examples/notification": "0.2.81", + "@fusion-plugin-examples/settings-demo": "0.2.81", + "@fusion-plugin-examples/acp-runtime": "0.1.31", + "@fusion-plugin-examples/agent-browser": "0.1.51", + "@fusion-plugin-examples/claude-runtime": "0.1.6", + "@fusion-plugin-examples/cli-printing-press": "0.1.48", + "@fusion-plugin-examples/compound-engineering": "0.1.31", + "@fusion-plugin-examples/cursor-runtime": "0.1.50", + "@fusion-plugin-examples/dependency-graph": "0.1.62", + "@fusion-plugin-examples/droid-runtime": "0.1.57", + "@fusion-plugin-examples/even-realities-glasses": "0.1.50", + "@fusion-plugin-examples/grok-runtime": "0.2.9", + "@fusion-plugin-examples/hermes-runtime": "0.2.81", + "@fusion-plugin-examples/linear-import": "0.1.13", + "@fusion-plugin-examples/omp-runtime": "0.1.6", + "@fusion-plugin-examples/openclaw-runtime": "0.2.81", + "@fusion-plugin-examples/paperclip-runtime": "0.2.81", + "@fusion-plugin-examples/quality": "0.1.6", + "@fusion-plugin-examples/reports": "0.1.50", + "@fusion-plugin-examples/roadmap": "0.1.50", + "@fusion-plugin-examples/whatsapp-chat": "0.1.50" + }, + "changesets": [ + "anthropic-credential-precedence", + "faster-board-scroll-no-desktop-snap", + "fn-8556-windows-agent-selection", + "fn-8561-task-card-dates", + "fn-8562-chat-conversation-tags", + "fn-8563-pristine-new-task-close", + "fn-8564-pi-082", + "fn-8565-tablet-task-modal-resize", + "lane-model-pair-resolution", + "mobile-nav-large-phones", + "paused-engine-visibility", + "planning-model-pair-rehydration", + "project-switch-modal-reset", + "quick-add-start-button", + "quick-chat-tablet-drag-header", + "terminal-blank-until-keypress-refresh" + ] +} diff --git a/CHANGELOG-archive.md b/CHANGELOG-archive.md index 30d4a86215..82d73801e4 100644 --- a/CHANGELOG-archive.md +++ b/CHANGELOG-archive.md @@ -13885,6 +13885,14 @@ for reference. - Updated dependencies [a2ed6d0] - @runfusion/fusion@0.1.0 +## 0.39.32-beta.0 + +### @fusion/i18n + +#### Patch Changes + +- @fusion/core@0.74.0-beta.0 + ## 0.39.31 ### @fusion/i18n @@ -14192,6 +14200,14 @@ for reference. - @fusion/core@0.40.0 +## 0.11.58-beta.0 + +### @fusion/droid-cli + +#### Patch Changes + +- @fusion-plugin-examples/droid-runtime@0.1.58-beta.0 + ## 0.11.57 ### @fusion/droid-cli diff --git a/CHANGELOG.md b/CHANGELOG.md index 38913db535..2c9db3423b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,37 @@ User-facing release notes aggregated across all packages. This file is auto-synced from each `packages/*/CHANGELOG.md` by `scripts/release.mjs` — do not edit by hand. +## 0.74.0-beta.0 + +### Highlights +- Choose Anthropic API key vs. subscription per lane, with a clear "in use" indicator +- Fixed: AI helper lanes (subtasks, milestones, goals, reflections) no longer silently fall back to the wrong Anthropic model +- Fixed: Planning Mode no longer fails mid-interview with an auth error on a model you never picked +- Board scrolling is snappier — no more snap-lock on desktop, instant paging on phone swipes +- Tag and filter Direct chat conversations in the sidebar + +### New +- Choose whether Anthropic lanes use your API key or your Claude subscription, with an "in use" marker in Settings → Authentication +- Board scrolling feels faster: desktop no longer snaps mid-drag, and phone swipes page immediately instead of coasting +- Task cards now show creation and completion dates directly +- Organize Direct chat conversations with reusable, project-scoped tags and sidebar filtering +- Quick Add now shows a visible Start button for workflows with a waiting column, instead of a hidden long-press menu + +### Fixed +- Windows: direct-chat Agent selection now switches visibly and reliably +- New Task dialogs close without a discard confirmation when nothing was actually touched +- Tablets: Task Detail and New Task regain touch resizing +- AI helper lanes (interviews, subtask breakdown, agent generation, text refine, goal drafting, reflections) now run on your configured model instead of silently falling back to a default Anthropic model and erroring out for custom-provider or subscription users +- Large phones no longer lose the mobile bottom nav bar after being misclassified as tablets +- The footer now reads "Paused" instead of "Idle" when the engine is paused, and pausing from the terminal now takes two presses to avoid accidental toggles +- Planning Mode no longer fails mid-interview with a provider auth error tied to a model you never selected +- Switching projects now fully resets Planning, Chat, Missions, subtask breakdown, GitHub import, and any open modals so nothing leaks across projects +- Tablets: the Quick Chat header is easier to grab and drag +- Terminal windows no longer open blank until a keypress, font-size change, or new tab + +### Internal +- Updated bundled Pi runtime dependencies to the matched 0.82.0 pair + ## 0.73.0 ### Highlights diff --git a/package.json b/package.json index b855ec70c7..05692a8349 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fusion-workspace", - "version": "0.73.0", + "version": "0.74.0-beta.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 3dd4f5e5da..80b0716d0b 100644 --- a/packages/cli-alias/CHANGELOG.md +++ b/packages/cli-alias/CHANGELOG.md @@ -1,5 +1,27 @@ # runfusion.ai +## 0.74.0-beta.0 + +### Patch Changes + +- Updated dependencies [8dc6598] +- Updated dependencies [e01dc7d] +- Updated dependencies [c3cebcd] +- Updated dependencies [03cfc2d] +- Updated dependencies [a9d5b06] +- Updated dependencies [f3a6949] +- Updated dependencies [e3dba36] +- Updated dependencies [4b4df1f] +- Updated dependencies [190cc04] +- Updated dependencies [c50e303] +- Updated dependencies [749167c] +- Updated dependencies [1959e7c] +- Updated dependencies [07541f7] +- Updated dependencies [8156308] +- Updated dependencies [e4fc3d2] +- Updated dependencies [7423621] + - @runfusion/fusion@0.74.0-beta.0 + ## 0.73.0 ### Patch Changes diff --git a/packages/cli-alias/package.json b/packages/cli-alias/package.json index 4556605ec4..b99272a6b4 100644 --- a/packages/cli-alias/package.json +++ b/packages/cli-alias/package.json @@ -1,6 +1,6 @@ { "name": "runfusion.ai", - "version": "0.73.0", + "version": "0.74.0-beta.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 8a8543d449..04ad786d6d 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,61 @@ # @runfusion/fusion +## 0.74.0-beta.0 + +### Minor Changes + +- 8dc6598: summary: Choose whether Anthropic lanes use your API key or your Claude subscription, and see which is in use. + category: feature + dev: New global setting `anthropicAuthPreference` ("api-key" | "subscription", default "api-key" — the historical precedence). Read in `resolveAnthropicRuntimeApiKey` (packages/engine/src/auth-storage.ts) straight from `~/.fusion/settings.json`, so it applies without a restart and needs no settings plumbing through `createFusionAuthStorage`. Settings → Authentication renders the control and an "In use" / "Overridden below" marker only when both Anthropic credentials are connected. +- e01dc7d: summary: Board scrolling feels faster — desktop no longer snaps, and phone swipes page immediately instead of coasting. + category: feature + dev: Base `.board`/`.board-workflow-columns`/`.lane-columns` declare `scroll-snap-type: none`; proximity snap is re-declared in phone-tier media blocks only. `useColumnScrollSnap` now owns post-lift motion: a directional lift kills native inertia (`overflow-x: hidden` for the animation) and animates to its target column via rAF ease-out (~190-300ms), with the page count derived from release velocity sampled off scroll ticks (`resolvePageCount`, `resolveFlingTargetIndex`, `resolvePageAnimationMs`). Re-touch cancels the animation; reduced motion and missing rAF fall back to the instant hard jump. Tap-to-stop-during-momentum is gone as an interaction (no long coast remains). +- 03cfc2d: summary: Show creation and completion dates directly on task cards. + category: feature + dev: Archived cards retain their canonical archive timestamp for completion fallback. +- a9d5b06: summary: Organize Direct chat conversations with reusable tags and sidebar filtering. + category: feature + dev: Tags are project-scoped and retain conversations when deleted. +- 8156308: summary: Quick Add now shows a visible Start button for workflows with a waiting column. + category: feature + dev: Replaces the hidden long-press/right-click Start menu on Save in `QuickEntryBox`; eligibility still comes from `workflowSupportsQuickAddStart` (Coding (Ideas) or a hold-first workflow) and the create-time column override / follow-up move paths are unchanged. + +### Patch Changes + +- c3cebcd: summary: Make Windows direct-chat Agent selection switch visibly and reliably. + category: fix + dev: Handles primary pointer activation before an Electron host can suppress its following click. +- f3a6949: summary: Close untouched New Task dialogs without a discard confirmation. + category: fix + dev: Workflow optional-step initialization is no longer classified as an operator edit. +- e3dba36: summary: Update bundled Pi runtime dependencies to the exact matched 0.82.0 pair. + category: internal + dev: Pins @earendil-works/pi-ai and @earendil-works/pi-coding-agent to 0.82.0. +- 4b4df1f: summary: Restore touch resizing for Task Detail and New Task on tablets. + category: fix + dev: Known touch tablets at the 768px boundary now retain floating modal geometry and resize controls. +- 190cc04: summary: AI helper lanes now run on your configured model instead of silently falling back to a default Anthropic model. + category: fix + dev: `createFnAgent`/`createResolvedAgentSession` forward no model unless BOTH `defaultProvider` and `defaultModelId` are set, after which pi-coding-agent picks its own built-in default (`anthropic/claude-opus-4-8`). Milestone/slice interviews, subtask breakdown (triage + streaming), agent generation, text refine, goal drafting, and agent reflection all resolved no pair and hit that path on every call — a permanent `401 invalid x-api-key` for custom-provider/subscription operators and a hole in test-mode forcing. All now resolve through the shared `resolveLaneSessionModel` (dashboard) or `resolveProjectDefaultModel` (engine). Also pairs the research synthesis provider/model halves and replaces `pr-conflict-resolver`'s hand-rolled default resolution. A source ratchet (`lane-model-pair-ratchet.test.ts`) keeps new dashboard lanes from reintroducing the pattern. +- c50e303: summary: Restore the mobile bottom nav bar on large phones, which were being treated as tablets. + category: fix + dev: `isMobileViewport()` gained a phone width floor (`PHONE_MAX_CSS_WIDTH` = 600) that overrides the FN-8557 `isTabletClassTouchScreen()` exclusion. That check treats any touch device whose `window.screen` min edge exceeds 480px as tablet-class, which large Android phones report, so they lost mobile mode at any CSS width while `MobileNavBar.css` still displayed at `(max-width: 768px)`. The tablet carve-out now applies only in the 601-768px band. +- 749167c: summary: A paused engine now reads "Paused" in the footer instead of "Idle", and pausing from the terminal takes two presses. + category: fix + dev: `deriveExecutorState` (dashboard `app/hooks/useExecutorStats.ts`) now returns "paused" for any `enginePaused` value regardless of `runningTaskCount`; the previous matrix mapped paused-with-zero-running to "idle". In the CLI TUI, the global `t` (Git view) branch now yields when the Utilities section owns input, making the advertised "[t] Toggle Engine Pause" reachable, and pausing requires a second `t` within `PAUSE_CONFIRM_WINDOW_MS` (5s); resuming stays single-press. +- 1959e7c: summary: Fix Planning Mode failing mid-interview with a provider auth error on a model you never selected. + category: fix + dev: `ensureSessionAgent` rebuilt the planning agent with an empty provider/model pair, so resumed turns (`/planning/respond`, `/planning/:id/retry`, rewind, drafts resumed after the in-memory agent was dropped) fell through to the runtime's built-in default model (`anthropic/claude-opus-4-8`) and hit api.anthropic.com with a key the operator never configured. The pair is now resolved from the persisted draft, then the lane's `resolvePlanningSettingsModel` result, on every rebuild and on the non-streaming start. Planning also now constructs sessions through `createResolvedAgentSession` (`sessionPurpose: "executor"`) like chat/executor/merger, so CLI and plugin runtimes can own their own auth and planning emits `session:runtime-resolved`. +- 07541f7: summary: Switching projects now fully resets Planning, Chat, Missions, subtask breakdown, GitHub import, and open modals. + category: fix + dev: New `closeProjectScopedModals()` on the modal manager plus an App-level composite reset invoked by project select/view-all/setup-complete that also dismisses popped-out task FloatingWindows, main-panel task detail, the right-dock task, and the Quick Chat window; PlanningModeModal, ChatView, MissionManager, SubtaskBreakdownModal, and GitHubImportModal are keyed by project id so running streams, session lists, and per-project persisted drafts/active sessions no longer leak or mis-file across projects (subtask/mission drafts save on unmount under their own project key). +- e4fc3d2: summary: Make the Quick Chat header easier to drag on tablets. + category: fix + dev: Enlarges only the floating Chat tablet drag target while preserving phone and desktop layouts. +- 7423621: summary: Fix terminal opening blank (no shell prompt) on some systems until a keypress, font-size change, or new tab. + category: fix + dev: Observer/geometry-driven fits in TerminalModal (`fitAndResizeForSession`, initial fit) and SessionTerminal now always follow `fit()` with `terminal.refresh(0, rows-1)`, so a renderer stalled at init repaints even when cols/rows are unchanged. + ## 0.73.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 63f8e3b6ac..f1cbcff374 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@runfusion/fusion", - "version": "0.73.0", + "version": "0.74.0-beta.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 f518b5d777..15bf1ae61a 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/core +## 0.74.0-beta.0 + ## 0.73.0 ## 0.73.0-beta.6 diff --git a/packages/core/package.json b/packages/core/package.json index 2d3a1ad898..d59feaea46 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/core", - "version": "0.73.0", + "version": "0.74.0-beta.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 4795fc7584..55ddca1dfb 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -1,5 +1,26 @@ # @fusion/dashboard +## 0.74.0-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/engine@0.74.0-beta.0 +- @fusion/i18n@0.39.32-beta.0 +- @fusion-plugin-examples/claude-runtime@0.1.7-beta.0 +- @fusion-plugin-examples/cli-printing-press@0.1.49-beta.0 +- @fusion-plugin-examples/compound-engineering@0.1.32-beta.0 +- @fusion-plugin-examples/dependency-graph@0.1.63-beta.0 +- @fusion-plugin-examples/grok-runtime@0.2.10-beta.0 +- @fusion-plugin-examples/omp-runtime@0.1.7-beta.0 +- @fusion-plugin-examples/quality@0.1.7-beta.0 +- @fusion-plugin-examples/roadmap@0.1.51-beta.0 +- @fusion-plugin-examples/cursor-runtime@0.1.51-beta.0 +- @fusion-plugin-examples/droid-runtime@0.1.58-beta.0 +- @fusion-plugin-examples/hermes-runtime@0.2.82-beta.0 +- @fusion-plugin-examples/openclaw-runtime@0.2.82-beta.0 +- @fusion-plugin-examples/paperclip-runtime@0.2.82-beta.0 + ## 0.73.0 ### Patch Changes diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 6b4452d891..16a0328a4d 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/dashboard", - "version": "0.73.0", + "version": "0.74.0-beta.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 189a7d870e..6a98543b79 100644 --- a/packages/desktop/CHANGELOG.md +++ b/packages/desktop/CHANGELOG.md @@ -1,5 +1,13 @@ # @fusion/desktop +## 0.74.0-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/dashboard@0.74.0-beta.0 +- @fusion/engine@0.74.0-beta.0 + ## 0.73.0 ### Patch Changes diff --git a/packages/desktop/package.json b/packages/desktop/package.json index a93ad8a677..488c2969ef 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,7 @@ { "name": "@fusion/desktop", "productName": "Fusion", - "version": "0.73.0", + "version": "0.74.0-beta.0", "license": "MIT", "author": { "name": "Runfusion", diff --git a/packages/droid-cli/CHANGELOG.md b/packages/droid-cli/CHANGELOG.md index b139dc603a..07611c8385 100644 --- a/packages/droid-cli/CHANGELOG.md +++ b/packages/droid-cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/droid-cli +## 0.11.58-beta.0 + +### Patch Changes + +- @fusion-plugin-examples/droid-runtime@0.1.58-beta.0 + ## 0.11.57 ### Patch Changes diff --git a/packages/droid-cli/package.json b/packages/droid-cli/package.json index dd1fdea3e4..69cab3f1fb 100644 --- a/packages/droid-cli/package.json +++ b/packages/droid-cli/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/droid-cli", - "version": "0.11.57", + "version": "0.11.58-beta.0", "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 7d4a425e69..85ec9143e8 100644 --- a/packages/engine/CHANGELOG.md +++ b/packages/engine/CHANGELOG.md @@ -1,5 +1,12 @@ # @fusion/engine +## 0.74.0-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/pi-claude-cli@0.74.0-beta.0 + ## 0.73.0 ### Patch Changes diff --git a/packages/engine/package.json b/packages/engine/package.json index 5a9272db62..eb03935495 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/engine", - "version": "0.73.0", + "version": "0.74.0-beta.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 ec555d75b0..5de9927389 100644 --- a/packages/i18n/CHANGELOG.md +++ b/packages/i18n/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/i18n +## 0.39.32-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 + ## 0.39.31 ### Patch Changes diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 1cc86f5caf..15305d4c38 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/i18n", - "version": "0.39.31", + "version": "0.39.32-beta.0", "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 ff5997dd0f..646f8a6334 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/mobile +## 0.74.0-beta.0 + ## 0.73.0 ## 0.73.0-beta.6 diff --git a/packages/mobile/package.json b/packages/mobile/package.json index d1de43ffd7..2f925a6747 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/mobile", - "version": "0.73.0", + "version": "0.74.0-beta.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 1973f1741c..f026417c78 100644 --- a/packages/pi-claude-cli/CHANGELOG.md +++ b/packages/pi-claude-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @fusion/pi-claude-cli +## 0.74.0-beta.0 + ## 0.73.0 ## 0.73.0-beta.6 diff --git a/packages/pi-claude-cli/package.json b/packages/pi-claude-cli/package.json index 8431d75205..55a5a3feee 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.73.0", + "version": "0.74.0-beta.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 5a45cb05ca..439a922e1c 100644 --- a/packages/plugin-sdk/CHANGELOG.md +++ b/packages/plugin-sdk/CHANGELOG.md @@ -1,5 +1,11 @@ # @fusion/plugin-sdk +## 0.74.0-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 + ## 0.73.0 ### Patch Changes diff --git a/packages/plugin-sdk/package.json b/packages/plugin-sdk/package.json index dd04ed96b9..a9db255168 100644 --- a/packages/plugin-sdk/package.json +++ b/packages/plugin-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@fusion/plugin-sdk", - "version": "0.73.0", + "version": "0.74.0-beta.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 e3ce92a52c..1200081732 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.82-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.2.81 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-auto-label/package.json b/plugins/examples/fusion-plugin-auto-label/package.json index e87ed34760..cfaa1ad82d 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.81", + "version": "0.2.82-beta.0", "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 21ec1252b1..0c86a9e24f 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.82-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.2.81 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-ci-status/package.json b/plugins/examples/fusion-plugin-ci-status/package.json index 9891b2cec0..9d9debfb95 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.81", + "version": "0.2.82-beta.0", "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 3eefc5b3d8..6ad7d97e48 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.82-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.2.81 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-notification/package.json b/plugins/examples/fusion-plugin-notification/package.json index a0c326942b..ad186f6dbd 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.81", + "version": "0.2.82-beta.0", "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 496256e0b9..ebcbfcd55c 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.82-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.2.81 ### Patch Changes diff --git a/plugins/examples/fusion-plugin-settings-demo/package.json b/plugins/examples/fusion-plugin-settings-demo/package.json index 865a8ef847..f36a81f767 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.81", + "version": "0.2.82-beta.0", "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 34eda1f5b2..530bca2685 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.32-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.31 ### Patch Changes diff --git a/plugins/fusion-plugin-acp-runtime/package.json b/plugins/fusion-plugin-acp-runtime/package.json index 3f3b916287..5e39151a36 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.31", + "version": "0.1.32-beta.0", "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 e8d1e10408..a76035e04d 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.52-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.51 ### Patch Changes diff --git a/plugins/fusion-plugin-agent-browser/package.json b/plugins/fusion-plugin-agent-browser/package.json index b049f9dbbe..65301d8730 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.51", + "version": "0.1.52-beta.0", "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 faa6eaac2e..3ad8275ad1 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.7-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.6 ### Patch Changes diff --git a/plugins/fusion-plugin-claude-runtime/package.json b/plugins/fusion-plugin-claude-runtime/package.json index fd8fdc9829..007acc9676 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.6", + "version": "0.1.7-beta.0", "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 938fff732f..60c843f8c7 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.49-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.48 ### Patch Changes diff --git a/plugins/fusion-plugin-cli-printing-press/package.json b/plugins/fusion-plugin-cli-printing-press/package.json index d964e7e73b..326480d3e6 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.48", + "version": "0.1.49-beta.0", "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 dce92db9e8..f9502fc3ad 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.32-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.31 ### Patch Changes diff --git a/plugins/fusion-plugin-compound-engineering/package.json b/plugins/fusion-plugin-compound-engineering/package.json index b86ab3c908..111fa83173 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.31", + "version": "0.1.32-beta.0", "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 634453ba52..1deb4957f4 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.51-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.50 ### Patch Changes diff --git a/plugins/fusion-plugin-cursor-runtime/package.json b/plugins/fusion-plugin-cursor-runtime/package.json index e1468744c9..3e022e7878 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.50", + "version": "0.1.51-beta.0", "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 463ffd71cf..f095194fcb 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.63-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.62 ### Patch Changes diff --git a/plugins/fusion-plugin-dependency-graph/package.json b/plugins/fusion-plugin-dependency-graph/package.json index 369fd67e20..1349f02621 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.62", + "version": "0.1.63-beta.0", "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 cc93f13ff1..d414310f3b 100644 --- a/plugins/fusion-plugin-droid-runtime/CHANGELOG.md +++ b/plugins/fusion-plugin-droid-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.1.58-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.57 ### Patch Changes diff --git a/plugins/fusion-plugin-droid-runtime/package.json b/plugins/fusion-plugin-droid-runtime/package.json index 1b0b40dd88..5bc86da642 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.57", + "version": "0.1.58-beta.0", "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 b6deca9d27..97e46f9a2d 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.51-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.50 ### Patch Changes diff --git a/plugins/fusion-plugin-even-realities-glasses/package.json b/plugins/fusion-plugin-even-realities-glasses/package.json index d63d67cb18..e9743c683e 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.50", + "version": "0.1.51-beta.0", "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 e6e0f624fc..29d9f5c2df 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.10-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.2.9 ### Patch Changes diff --git a/plugins/fusion-plugin-grok-runtime/package.json b/plugins/fusion-plugin-grok-runtime/package.json index eafe0dbb7c..9836651dae 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.9", + "version": "0.2.10-beta.0", "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 c7a933c2c3..46978950b7 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.82-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.2.81 ### Patch Changes diff --git a/plugins/fusion-plugin-hermes-runtime/package.json b/plugins/fusion-plugin-hermes-runtime/package.json index ba9952fed9..2baae779d8 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.81", + "version": "0.2.82-beta.0", "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 9120a6e7df..584b71ca36 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.14-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.13 ### Patch Changes diff --git a/plugins/fusion-plugin-linear-import/package.json b/plugins/fusion-plugin-linear-import/package.json index 41d97df779..64e36da5b1 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.13", + "version": "0.1.14-beta.0", "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 1050fea379..bf2b753c55 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.7-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.6 ### Patch Changes diff --git a/plugins/fusion-plugin-omp-runtime/package.json b/plugins/fusion-plugin-omp-runtime/package.json index 890a6b33d0..272e01cbb7 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.6", + "version": "0.1.7-beta.0", "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 47aea5a99d..0c3081cd9d 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.82-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.2.81 ### Patch Changes diff --git a/plugins/fusion-plugin-openclaw-runtime/package.json b/plugins/fusion-plugin-openclaw-runtime/package.json index 0f57d8973b..9fa3ebef1f 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.81", + "version": "0.2.82-beta.0", "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 632b2209d9..d72a62650a 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.82-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.2.81 ### Patch Changes diff --git a/plugins/fusion-plugin-paperclip-runtime/package.json b/plugins/fusion-plugin-paperclip-runtime/package.json index cc17dc50a6..0853ea9a71 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.81", + "version": "0.2.82-beta.0", "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 f4f72425f8..4588666e21 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.7-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.6 ### Patch Changes diff --git a/plugins/fusion-plugin-quality/package.json b/plugins/fusion-plugin-quality/package.json index 2bee6e398e..3945e4cb91 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.6", + "version": "0.1.7-beta.0", "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 cdbf19b933..c31a1b0fd8 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.51-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/dashboard@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.50 ### Patch Changes diff --git a/plugins/fusion-plugin-reports/package.json b/plugins/fusion-plugin-reports/package.json index 214019d32c..127e73ca22 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.50", + "version": "0.1.51-beta.0", "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 4a4f6a5655..2cce5f2a5a 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.51-beta.0 + +### Patch Changes + +- @fusion/core@0.74.0-beta.0 +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.50 ### Patch Changes diff --git a/plugins/fusion-plugin-roadmap/package.json b/plugins/fusion-plugin-roadmap/package.json index 1aee75afe1..6c2e890960 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.50", + "version": "0.1.51-beta.0", "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 64494f533e..12b50fa177 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.51-beta.0 + +### Patch Changes + +- @fusion/plugin-sdk@0.74.0-beta.0 + ## 0.1.50 ### Patch Changes diff --git a/plugins/fusion-plugin-whatsapp-chat/package.json b/plugins/fusion-plugin-whatsapp-chat/package.json index 649816e8b1..576bfbd348 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.50", + "version": "0.1.51-beta.0", "type": "module", "description": "WhatsApp Web (Baileys) chat bridge for Fusion agents", "keywords": [