From 00b9e7653dac31ab206e5a44bfbc060f06103c9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ersin=20KO=C3=87?= Date: Fri, 5 Jun 2026 22:44:46 +0300 Subject: [PATCH] chore(release): 0.7.2 Patch release shipping the post-0.7.1 fix: Fixed - Plan cancellation is now prompt during parallel wave execution: the maxConcurrent slot-wait and step-scheduling loop re-check signal.aborted and stop scheduling immediately; scheduled steps are still awaited via Promise.all so no in-flight promise is orphaned. (#85) Version bumped across all workspace packages + docs/ARCHITECTURE.md + start scripts. release:verify green (17240 gateway tests, 8/8 turbo). Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 2 ++ docs/architecture.md | 2 +- package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/gateway/package.json | 2 +- packages/ui/package.json | 2 +- start.ps1 | 2 +- start.sh | 2 +- 9 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09d2224a..edd40ea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.2] - 2026-06-05 + ### Fixed - **Plan cancellation is now prompt during parallel wave execution.** When every concurrency slot was full of slow steps, a cancelled plan kept spinning the `maxConcurrent` slot-wait until a step happened to finish — the wave-top abort check couldn't fire while the inner scheduling loop held control. The slot-wait (and the step-scheduling loop) now re-check `signal.aborted` and stop scheduling new steps immediately. Already-scheduled steps are still awaited via `Promise.all` before the abort is surfaced, so no in-flight promise is orphaned (which would otherwise become an unhandled rejection). diff --git a/docs/architecture.md b/docs/architecture.md index c164e31b..dddfb1c7 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -1,6 +1,6 @@ # OwnPilot Architecture -**Version:** 0.7.1 +**Version:** 0.7.2 --- diff --git a/package.json b/package.json index af17729b..94f91e87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ownpilot-monorepo", - "version": "0.7.1", + "version": "0.7.2", "private": true, "description": "OwnPilot - Privacy-first personal AI assistant platform", "type": "module", diff --git a/packages/cli/package.json b/packages/cli/package.json index 318517ee..97acb13c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@ownpilot/cli", - "version": "0.7.1", + "version": "0.7.2", "description": "CLI for OwnPilot", "type": "module", "bin": { diff --git a/packages/core/package.json b/packages/core/package.json index cdbb1c08..6086b536 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@ownpilot/core", - "version": "0.7.1", + "version": "0.7.2", "description": "OwnPilot Core - Secure AI agent engine and tool framework", "type": "module", "sideEffects": false, diff --git a/packages/gateway/package.json b/packages/gateway/package.json index 047fe5be..295c22fe 100644 --- a/packages/gateway/package.json +++ b/packages/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@ownpilot/gateway", - "version": "0.7.1", + "version": "0.7.2", "description": "HTTP API gateway for OwnPilot", "type": "module", "main": "./dist/index.js", diff --git a/packages/ui/package.json b/packages/ui/package.json index 9c92c591..709af7cf 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@ownpilot/ui", - "version": "0.7.1", + "version": "0.7.2", "description": "Web UI for OwnPilot", "type": "module", "private": true, diff --git a/start.ps1 b/start.ps1 index 81adeb55..c77620e0 100644 --- a/start.ps1 +++ b/start.ps1 @@ -68,7 +68,7 @@ Write-Host @" | | | \ \ /\ / / '_ \| |_) | | |/ _ \| __| | |_| |\ V V /| | | | __/| | | (_) | |_ \___/ \_/\_/ |_| |_|_| |_|_|\___/ \__| - Gateway v0.7.1 + Gateway v0.7.2 "@ -ForegroundColor Magenta diff --git a/start.sh b/start.sh index 0f097b93..95c00d03 100644 --- a/start.sh +++ b/start.sh @@ -43,7 +43,7 @@ banner() { | | | \ \ /\ / / '_ \| |_) | | |/ _ \| __| | |_| |\ V V /| | | | __/| | | (_) | |_ \___/ \_/\_/ |_| |_|_| |_|_|\___/ \__| - Gateway v0.7.1 + Gateway v0.7.2 EOF echo -e "${NC}"