chore(release): v0.17.2

Version bump via changesets.
This commit is contained in:
gsxdsm
2026-05-04 00:49:34 -07:00
parent fc824bc7ed
commit eb21d84fa3
38 changed files with 184 additions and 32 deletions

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fix Codex auth interoperability, remote OAuth manual-code login flow, and chat fallback/error handling.

View File

@@ -1,9 +0,0 @@
---
"@fusion/engine": patch
"@fusion/core": patch
---
Fix pre-merge workflow steps stalling on tasks with no relevant changes (FN-3327 post-mortem).
- **`@fusion/engine`**: `executeWorkflowStep` now computes the diff scope (`git diff --name-only` plus `--shortstat` against `task.baseCommitSha`) before spawning the reviewer agent and injects a "Diff Scope" block into the system prompt. The block lists every file the task actually changed and adds explicit scoping rules: review only those files, and if none match the step's category respond immediately with a short approval line and stop. Without this, an open-ended review prompt (e.g. WS-005 "Frontend UX Design") would drift into pre-existing files matching the task description's keywords, exhaust the 360 s timeout, and trigger the auto-revive → re-finalize → re-fail loop that had FN-3327 wedged in `in-review`. Both git calls are best-effort; failures degrade to a "no modified files detected" notice rather than blocking the step.
- **`@fusion/core`**: The built-in `frontend-ux-design` workflow step template (WS-005) now opens with a FAST-BAIL rule telling the reviewer to inspect the Diff Scope first and return an immediate one-line approval when no UI/CSS/component files are present. New installs and freshly-materialized templates pick this up automatically; existing DB rows are unaffected but are still rescued by the executor-side scope injection above.

View File

@@ -2,6 +2,62 @@
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. 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.17.2
### @fusion/core
#### Patch Changes
- 17a6634: Fix pre-merge workflow steps stalling on tasks with no relevant changes (FN-3327 post-mortem).
- **`@fusion/engine`**: `executeWorkflowStep` now computes the diff scope (`git diff --name-only` plus `--shortstat` against `task.baseCommitSha`) before spawning the reviewer agent and injects a "Diff Scope" block into the system prompt. The block lists every file the task actually changed and adds explicit scoping rules: review only those files, and if none match the step's category respond immediately with a short approval line and stop. Without this, an open-ended review prompt (e.g. WS-005 "Frontend UX Design") would drift into pre-existing files matching the task description's keywords, exhaust the 360 s timeout, and trigger the auto-revive → re-finalize → re-fail loop that had FN-3327 wedged in `in-review`. Both git calls are best-effort; failures degrade to a "no modified files detected" notice rather than blocking the step.
- **`@fusion/core`**: The built-in `frontend-ux-design` workflow step template (WS-005) now opens with a FAST-BAIL rule telling the reviewer to inspect the Diff Scope first and return an immediate one-line approval when no UI/CSS/component files are present. New installs and freshly-materialized templates pick this up automatically; existing DB rows are unaffected but are still rescued by the executor-side scope injection above.
### @fusion/dashboard
#### Patch Changes
- Updated dependencies [17a6634]
- @fusion/engine@0.17.2
- @fusion/core@0.17.2
- @fusion-plugin-examples/dependency-graph@0.1.5
- @fusion-plugin-examples/hermes-runtime@0.2.24
- @fusion-plugin-examples/openclaw-runtime@0.2.24
- @fusion-plugin-examples/paperclip-runtime@0.2.24
### @fusion/engine
#### Patch Changes
- 17a6634: Fix pre-merge workflow steps stalling on tasks with no relevant changes (FN-3327 post-mortem).
- **`@fusion/engine`**: `executeWorkflowStep` now computes the diff scope (`git diff --name-only` plus `--shortstat` against `task.baseCommitSha`) before spawning the reviewer agent and injects a "Diff Scope" block into the system prompt. The block lists every file the task actually changed and adds explicit scoping rules: review only those files, and if none match the step's category respond immediately with a short approval line and stop. Without this, an open-ended review prompt (e.g. WS-005 "Frontend UX Design") would drift into pre-existing files matching the task description's keywords, exhaust the 360 s timeout, and trigger the auto-revive → re-finalize → re-fail loop that had FN-3327 wedged in `in-review`. Both git calls are best-effort; failures degrade to a "no modified files detected" notice rather than blocking the step.
- **`@fusion/core`**: The built-in `frontend-ux-design` workflow step template (WS-005) now opens with a FAST-BAIL rule telling the reviewer to inspect the Diff Scope first and return an immediate one-line approval when no UI/CSS/component files are present. New installs and freshly-materialized templates pick this up automatically; existing DB rows are unaffected but are still rescued by the executor-side scope injection above.
- Updated dependencies [17a6634]
- @fusion/core@0.17.2
- @fusion/pi-claude-cli@0.17.2
### @fusion/plugin-sdk
#### Patch Changes
- Updated dependencies [17a6634]
- @fusion/core@0.17.2
### @runfusion/fusion
#### Patch Changes
- bacc103: Fix Codex auth interoperability, remote OAuth manual-code login flow, and chat fallback/error handling.
### runfusion.ai
#### Patch Changes
- Updated dependencies [bacc103]
- @runfusion/fusion@0.17.2
## 0.17.1 ## 0.17.1
### @fusion/dashboard ### @fusion/dashboard

View File

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

View File

@@ -1,5 +1,12 @@
# runfusion.ai # runfusion.ai
## 0.17.2
### Patch Changes
- Updated dependencies [bacc103]
- @runfusion/fusion@0.17.2
## 0.17.1 ## 0.17.1
### Patch Changes ### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @runfusion/fusion # @runfusion/fusion
## 0.17.2
### Patch Changes
- bacc103: Fix Codex auth interoperability, remote OAuth manual-code login flow, and chat fallback/error handling.
## 0.17.1 ## 0.17.1
## 0.17.0 ## 0.17.0

View File

@@ -1,6 +1,6 @@
{ {
"name": "@runfusion/fusion", "name": "@runfusion/fusion",
"version": "0.17.1", "version": "0.17.2",
"license": "MIT", "license": "MIT",
"description": "Fusion CLI: HTTP API server, daemon, dashboard launcher, and task tooling for the Fusion AI coding agent.", "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", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,14 @@
# @fusion/core # @fusion/core
## 0.17.2
### Patch Changes
- 17a6634: Fix pre-merge workflow steps stalling on tasks with no relevant changes (FN-3327 post-mortem).
- **`@fusion/engine`**: `executeWorkflowStep` now computes the diff scope (`git diff --name-only` plus `--shortstat` against `task.baseCommitSha`) before spawning the reviewer agent and injects a "Diff Scope" block into the system prompt. The block lists every file the task actually changed and adds explicit scoping rules: review only those files, and if none match the step's category respond immediately with a short approval line and stop. Without this, an open-ended review prompt (e.g. WS-005 "Frontend UX Design") would drift into pre-existing files matching the task description's keywords, exhaust the 360 s timeout, and trigger the auto-revive → re-finalize → re-fail loop that had FN-3327 wedged in `in-review`. Both git calls are best-effort; failures degrade to a "no modified files detected" notice rather than blocking the step.
- **`@fusion/core`**: The built-in `frontend-ux-design` workflow step template (WS-005) now opens with a FAST-BAIL rule telling the reviewer to inspect the Diff Scope first and return an immediate one-line approval when no UI/CSS/component files are present. New installs and freshly-materialized templates pick this up automatically; existing DB rows are unaffected but are still rescued by the executor-side scope injection above.
## 0.17.1 ## 0.17.1
## 0.17.0 ## 0.17.0

View File

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

View File

@@ -1,5 +1,17 @@
# @fusion/dashboard # @fusion/dashboard
## 0.17.2
### Patch Changes
- Updated dependencies [17a6634]
- @fusion/engine@0.17.2
- @fusion/core@0.17.2
- @fusion-plugin-examples/dependency-graph@0.1.5
- @fusion-plugin-examples/hermes-runtime@0.2.24
- @fusion-plugin-examples/openclaw-runtime@0.2.24
- @fusion-plugin-examples/paperclip-runtime@0.2.24
## 0.17.1 ## 0.17.1
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/dashboard", "name": "@fusion/dashboard",
"version": "0.17.1", "version": "0.17.2",
"license": "MIT", "license": "MIT",
"description": "Fusion dashboard: React UI and HTTP API server for monitoring and controlling the Fusion AI coding agent.", "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", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,7 @@
# @fusion/desktop # @fusion/desktop
## 0.17.2
## 0.17.1 ## 0.17.1
## 0.17.0 ## 0.17.0

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/desktop", "name": "@fusion/desktop",
"version": "0.17.1", "version": "0.17.2",
"license": "MIT", "license": "MIT",
"description": "Fusion desktop: Electron wrapper around the Fusion dashboard for macOS, Windows, and Linux.", "description": "Fusion desktop: Electron wrapper around the Fusion dashboard for macOS, Windows, and Linux.",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,18 @@
# @fusion/engine # @fusion/engine
## 0.17.2
### Patch Changes
- 17a6634: Fix pre-merge workflow steps stalling on tasks with no relevant changes (FN-3327 post-mortem).
- **`@fusion/engine`**: `executeWorkflowStep` now computes the diff scope (`git diff --name-only` plus `--shortstat` against `task.baseCommitSha`) before spawning the reviewer agent and injects a "Diff Scope" block into the system prompt. The block lists every file the task actually changed and adds explicit scoping rules: review only those files, and if none match the step's category respond immediately with a short approval line and stop. Without this, an open-ended review prompt (e.g. WS-005 "Frontend UX Design") would drift into pre-existing files matching the task description's keywords, exhaust the 360 s timeout, and trigger the auto-revive → re-finalize → re-fail loop that had FN-3327 wedged in `in-review`. Both git calls are best-effort; failures degrade to a "no modified files detected" notice rather than blocking the step.
- **`@fusion/core`**: The built-in `frontend-ux-design` workflow step template (WS-005) now opens with a FAST-BAIL rule telling the reviewer to inspect the Diff Scope first and return an immediate one-line approval when no UI/CSS/component files are present. New installs and freshly-materialized templates pick this up automatically; existing DB rows are unaffected but are still rescued by the executor-side scope injection above.
- Updated dependencies [17a6634]
- @fusion/core@0.17.2
- @fusion/pi-claude-cli@0.17.2
## 0.17.1 ## 0.17.1
### Patch Changes ### Patch Changes

View File

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

View File

@@ -1,5 +1,7 @@
# @fusion/mobile # @fusion/mobile
## 0.17.2
## 0.17.1 ## 0.17.1
## 0.17.0 ## 0.17.0

View File

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

View File

@@ -1,5 +1,7 @@
# @fusion/pi-claude-cli # @fusion/pi-claude-cli
## 0.17.2
## 0.17.1 ## 0.17.1
## 0.17.0 ## 0.17.0

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/pi-claude-cli", "name": "@fusion/pi-claude-cli",
"version": "0.17.1", "version": "0.17.2",
"description": "Fusion vendored fork: pi coding-agent extension that routes LLM calls through the Claude Code CLI. Forked from rchern/pi-claude-cli (MIT). See UPSTREAM.md.", "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", "license": "MIT",
"private": true, "private": true,

View File

@@ -1,5 +1,12 @@
# @fusion/plugin-sdk # @fusion/plugin-sdk
## 0.17.2
### Patch Changes
- Updated dependencies [17a6634]
- @fusion/core@0.17.2
## 0.17.1 ## 0.17.1
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/plugin-sdk", "name": "@fusion/plugin-sdk",
"version": "0.17.1", "version": "0.17.2",
"license": "MIT", "license": "MIT",
"description": "Fusion plugin SDK: types and helpers for authoring third-party plugins that extend the Fusion dashboard and engine.", "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", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/auto-label # @fusion-plugin-examples/auto-label
## 0.2.24
### Patch Changes
- @fusion/plugin-sdk@0.17.2
## 0.2.23 ## 0.2.23
### Patch Changes ### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/ci-status # @fusion-plugin-examples/ci-status
## 0.2.24
### Patch Changes
- @fusion/plugin-sdk@0.17.2
## 0.2.23 ## 0.2.23
### Patch Changes ### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/notification # @fusion-plugin-examples/notification
## 0.2.24
### Patch Changes
- @fusion/plugin-sdk@0.17.2
## 0.2.23 ## 0.2.23
### Patch Changes ### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/settings-demo # @fusion-plugin-examples/settings-demo
## 0.2.24
### Patch Changes
- @fusion/plugin-sdk@0.17.2
## 0.2.23 ## 0.2.23
### Patch Changes ### Patch Changes

View File

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

View File

@@ -1,5 +1,13 @@
# @fusion-plugin-examples/dependency-graph # @fusion-plugin-examples/dependency-graph
## 0.1.5
### Patch Changes
- Updated dependencies [17a6634]
- @fusion/core@0.17.2
- @fusion/plugin-sdk@0.17.2
## 0.1.4 ## 0.1.4
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/dependency-graph", "name": "@fusion-plugin-examples/dependency-graph",
"version": "0.1.4", "version": "0.1.5",
"type": "module", "type": "module",
"description": "Dependency graph dashboard view plugin for Fusion", "description": "Dependency graph dashboard view plugin for Fusion",
"private": true, "private": true,

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/hermes-runtime # @fusion-plugin-examples/hermes-runtime
## 0.2.24
### Patch Changes
- @fusion/plugin-sdk@0.17.2
## 0.2.23 ## 0.2.23
### Patch Changes ### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/openclaw-runtime # @fusion-plugin-examples/openclaw-runtime
## 0.2.24
### Patch Changes
- @fusion/plugin-sdk@0.17.2
## 0.2.23 ## 0.2.23
### Patch Changes ### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/paperclip-runtime # @fusion-plugin-examples/paperclip-runtime
## 0.2.24
### Patch Changes
- @fusion/plugin-sdk@0.17.2
## 0.2.23 ## 0.2.23
### Patch Changes ### Patch Changes

View File

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