Skip to content

Commit 66840f7

Browse files
authored
Merge pull request #84 from ownpilot/release/0.7.1
chore(release): 0.7.1
2 parents 245082e + f86195d commit 66840f7

9 files changed

Lines changed: 10 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.1] - 2026-06-05
11+
1012
### Fixed
1113

1214
- **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.

docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OwnPilot Architecture
22

3-
**Version:** 0.7.0
3+
**Version:** 0.7.1
44

55
---
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ownpilot-monorepo",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"private": true,
55
"description": "OwnPilot - Privacy-first personal AI assistant platform",
66
"type": "module",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ownpilot/cli",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "CLI for OwnPilot",
55
"type": "module",
66
"bin": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ownpilot/core",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "OwnPilot Core - Secure AI agent engine and tool framework",
55
"type": "module",
66
"sideEffects": false,

packages/gateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ownpilot/gateway",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "HTTP API gateway for OwnPilot",
55
"type": "module",
66
"main": "./dist/index.js",

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ownpilot/ui",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Web UI for OwnPilot",
55
"type": "module",
66
"private": true,

start.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Write-Host @"
6868
| | | \ \ /\ / / '_ \| |_) | | |/ _ \| __|
6969
| |_| |\ V V /| | | | __/| | | (_) | |_
7070
\___/ \_/\_/ |_| |_|_| |_|_|\___/ \__|
71-
Gateway v0.7.0
71+
Gateway v0.7.1
7272
7373
"@ -ForegroundColor Magenta
7474

start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ banner() {
4343
| | | \ \ /\ / / '_ \| |_) | | |/ _ \| __|
4444
| |_| |\ V V /| | | | __/| | | (_) | |_
4545
\___/ \_/\_/ |_| |_|_| |_|_|\___/ \__|
46-
Gateway v0.7.0
46+
Gateway v0.7.1
4747
4848
EOF
4949
echo -e "${NC}"

0 commit comments

Comments
 (0)