mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
4.1 KiB
4.1 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
Added
-
Orchestrator (Issue #930): Dedicated worker threads for long, complex delegated sub-tasks
- Extended
spawn_subagentwith an opt-indedicated_thread: booleanflag. When true, the sub-agent's prompt and final summary land in a freshworker-labeled conversation thread the user can open from the thread list, and the parent thread receives a compact[worker_thread_ref]envelope instead of the full sub-agent transcript. - Added
WorkerThreadRefCardto render the envelope as a clickable card in the parent thread's tool timeline; the card swaps the active thread on click so the user can read the full sub-agent transcript without losing the parent conversation. - Worker threads are one level deep by construction — sub-agents never see
spawn_subagent, so a worker cannot itself spawn another worker. - Updated the orchestrator system prompt with guidance on when to opt in to
dedicated_thread(multi-step research, multi-file refactors, batch integration work) vs. the default inline path. - Unit tests cover the schema flag, the worker thread title builder, the
parent-visible
[worker_thread_ref]envelope, the thread/message persistence shape, and the TypeScript envelope parser.
- Extended
-
Config (Issue #933): Bootstrap from config.toml RPC URL with runtime derivation
- Added "Configure RPC URL" option on Welcome screen for self-hosted/internal deployments
- Users can now set core JSON-RPC URL on login screen without build-time configuration
- RPC URL persisted to localStorage and restored on next launch
- Added "Test Connection" button to validate RPC endpoint before saving
- Core now exposes
openhuman.config_get_clientRPC method returning safe client fields - Frontend
coreRpcClientrespects user-configured URL over build-time defaults - Unit tests added for URL persistence and validation utilities
- Added
useBackendUrlhook so React components resolve the API URL from the core'sopenhuman.config_resolve_api_urlinstead of importing the build-timeBACKEND_URLconstant. MigratedWebhooksDebugPanelandTunnelListoff the synchronous fallback, removing the hardcodedhttps://api.tinyhumans.aishort-circuit - Documented the runtime URL precedence in
app/.env.example,docs/src/01-architecture.md, anddocs/src/08-hooks-utils.md - Added
services/__tests__/backendUrl.test.ts(resolver happy path, caching,apiUrlalias, empty-response refusal) andhooks/useBackendUrl.test.ts(resolve, failure, and unmount-safety)
-
DevOps: Added Sentry debug symbol upload to CI/CD pipeline
- Rust debug symbols from Tauri build are now automatically uploaded to Sentry on every main branch push
- Creates and finalizes Sentry releases with proper version tagging (
openhuman@{version}) - Enables accurate stack trace symbolication for production releases
- Added
scripts/upload_sentry_symbols.shhelper script for local symbol uploads
Changed
- CI: Updated
build.ymlworkflow to upload debug symbols after successful builds- Symbol upload only triggers on main branch pushes (not PRs)
- Added
actions: readpermission for Sentry commit association
Dependencies
- None
Fixed
- Webview Accounts: Verified loading overlay implementation (Issue #867)
- Webviews now display a loading spinner while CEF initializes provider pages
- Three independent signals trigger reveal: native
on_page_load, CDPPage.loadEventFired, and 15s watchdog - Webview spawns at 1x1 size (off-screen) to prevent blank coverage during load
- Rust backend resizes/repositions webview and emits
webview-account:loadevent - Frontend dispatches status='open' to hide spinner once page is painted
[0.52.28] - 2026-04-18
See release notes for details.