Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.1] - 2026-06-05

### Fixed

- **Job-queue worker no longer leaks unhandled promise rejections on DB errors.** `JobQueueService` runs `executeJob` and `pollWorker` fire-and-forget from three callsites; only `pollAll` isolated rejections (via `allSettled`). A transient DB failure while finalizing a job (`repo.complete`/`repo.fail`) or claiming one (`repo.claimJob`) therefore surfaced as an unhandled rejection — a misleading "Unhandled Promise Rejection" log with no job context. `executeJob` now swallows + logs its own persistence errors (never rejects), and the immediate-start and per-job re-poll go through a `safePoll` wrapper that catches `pollWorker` rejections. The worker still frees the slot and re-polls in every case.
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OwnPilot Architecture

**Version:** 0.7.0
**Version:** 0.7.1

---

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ownpilot-monorepo",
"version": "0.7.0",
"version": "0.7.1",
"private": true,
"description": "OwnPilot - Privacy-first personal AI assistant platform",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ownpilot/cli",
"version": "0.7.0",
"version": "0.7.1",
"description": "CLI for OwnPilot",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ownpilot/core",
"version": "0.7.0",
"version": "0.7.1",
"description": "OwnPilot Core - Secure AI agent engine and tool framework",
"type": "module",
"sideEffects": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/gateway/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ownpilot/gateway",
"version": "0.7.0",
"version": "0.7.1",
"description": "HTTP API gateway for OwnPilot",
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ownpilot/ui",
"version": "0.7.0",
"version": "0.7.1",
"description": "Web UI for OwnPilot",
"type": "module",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion start.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Write-Host @"
| | | \ \ /\ / / '_ \| |_) | | |/ _ \| __|
| |_| |\ V V /| | | | __/| | | (_) | |_
\___/ \_/\_/ |_| |_|_| |_|_|\___/ \__|
Gateway v0.7.0
Gateway v0.7.1

"@ -ForegroundColor Magenta

Expand Down
2 changes: 1 addition & 1 deletion start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ banner() {
| | | \ \ /\ / / '_ \| |_) | | |/ _ \| __|
| |_| |\ V V /| | | | __/| | | (_) | |_
\___/ \_/\_/ |_| |_|_| |_|_|\___/ \__|
Gateway v0.7.0
Gateway v0.7.1

EOF
echo -e "${NC}"
Expand Down
Loading