njuboy
a1eb765f0a
fix(session-lock): enforce maxHoldMs in shouldReclaim during lock acquisition ( #85764 )
...
* fix(session-lock): enforce maxHoldMs in shouldReclaim during lock acquisition
- Adds optional maxHoldMs parameter to inspectLockPayload
- Inspect now marks locks as stale when held longer than maxHoldMs
- Passes maxHoldMs through inspectLockPayloadForSession
- acquireSessionWriteLock's shouldReclaim callback now passes maxHoldMs
This ensures that when a live process holds a lock for longer than
maxHoldMs (default 5min), other processes can reclaim it during
acquisition — matching the watchdog's existing enforcement.
Previously shouldReclaim only used staleMs (30min default), meaning
a lock held for 10+ minutes by a live PID would never be reclaimable,
causing 60s timeout failures and gateway freezes.
Closes #85762
* fix(session-lock): add dead-PID fast-path before retry loop
Adds a fast-path check at the top of acquireSessionWriteLock:
if the lock file's owner PID is dead, remove it immediately
before entering the retry loop. This saves up to timeoutMs (60s)
of futile waiting when the previous lock holder has died.
The shouldReclaim callback already handles this case, but only
iteratively through the retry loop. The fast-path eliminates
that unnecessary delay.
* fix(session-lock): enforce max hold during acquisition
* fix(session-lock): revalidate max hold safely
* fix(session-lock): honor holder max-hold policy
* fix(session-lock): keep cleanup from reclaiming live holders
* fix(session-lock): remove stale locks only when unchanged
* fix(session-lock): skip self-held max-hold reclaim
* fix(ci): refresh gateway protocol checks
---------
Co-authored-by: njuboy11 <njuboy11@users.noreply.github.com >
Co-authored-by: Peter Steinberger <steipete@gmail.com >
2026-05-24 00:38:01 +01:00
brokemac79
f4b92f5e6c
fix(agents): simplify subagent completion handoff
...
Simplify native subagent completion handoff and remove manual subagent control surfaces.
Co-authored-by: brokemac79 <martin_cleary@yahoo.co.uk >
2026-05-23 13:50:08 +01:00
Peter Steinberger
0556958d82
fix: use native mac settings sidebar
2026-05-22 22:53:32 +01:00
Peter Steinberger
bb5010b89a
docs: absorb docs sweep
...
Co-authored-by: Kai <kai@itskai.dev >
Co-authored-by: Weihang <gwh7078@163.com >
Co-authored-by: Scott Long <longstoryscott@gmail.com >
Co-authored-by: moejaberr <mjaber@uoguelph.ca >
Co-authored-by: huihui0822 <109355071+huihui0822@users.noreply.github.com >
2026-05-22 21:52:01 +01:00
Peter Steinberger
4df34cb790
chore(release): bump version to 2026.5.22
2026-05-22 21:25:16 +01:00
Peter Steinberger
c94c513714
refactor(ios): centralize setup auth parsing
...
Centralizes iOS setup-code auth parsing so token/bootstrap/password trimming and the bootstrap-clears-stale-credentials rule live in one parsed value.
Verification:
- `git diff --check`
- `swiftformat --lint --config config/swiftformat --unexclude apps/ios/Sources apps/ios/Sources/Gateway/GatewayConnectionController.swift apps/ios/Sources/Onboarding/GatewayOnboardingView.swift apps/ios/Sources/Onboarding/OnboardingWizardView.swift apps/ios/Sources/Settings/SettingsTab.swift`
- `swiftlint lint --config apps/ios/.swiftlint.yml apps/ios/Sources/Gateway/GatewayConnectionController.swift apps/ios/Sources/Onboarding/GatewayOnboardingView.swift apps/ios/Sources/Onboarding/OnboardingWizardView.swift apps/ios/Sources/Settings/SettingsTab.swift`
- `AUTOREVIEW_AUTO_TESTS=0 .agents/skills/autoreview/scripts/autoreview --mode branch --base origin/main`
- GitHub merge state clean for `fc35f31e95e73850a153149edaf471c10379dff2`
2026-05-22 17:54:53 +01:00
Peter Steinberger
d93c59732b
refactor(ios): consolidate manual auth override inputs
...
Consolidates repeated iOS manual-auth override assembly into `ManualAuthOverride.currentManualInput` and reuses the existing `normalized` constructor directly for setup-code pending auth state.
Verification:
- `git diff --check`
- `swiftformat --lint --config config/swiftformat --unexclude apps/ios/Sources apps/ios/Sources/Gateway/GatewayConnectionController.swift apps/ios/Sources/Onboarding/GatewayOnboardingView.swift apps/ios/Sources/Onboarding/OnboardingWizardView.swift apps/ios/Sources/Settings/SettingsTab.swift`
- `swiftlint lint --config apps/ios/.swiftlint.yml apps/ios/Sources/Gateway/GatewayConnectionController.swift apps/ios/Sources/Onboarding/GatewayOnboardingView.swift apps/ios/Sources/Onboarding/OnboardingWizardView.swift apps/ios/Sources/Settings/SettingsTab.swift`
- `AUTOREVIEW_AUTO_TESTS=0 .agents/skills/autoreview/scripts/autoreview --mode branch --base origin/main`
- GitHub merge state clean for `cb6f3bcf8f121b570e22dcb8eed6dc9aaa89fc55`
2026-05-22 17:43:23 +01:00
Colin Johnson
e730e9bd0b
feat(ios): add realtime talk relay mode
...
Adds realtime Gateway Talk relay support for iOS, including OpenAI realtime provider selection and voice selection controls.
Maintainer fixups preserved provider auth fallback resolution, kept setup-code/manual auth through TLS trust prompts, recomputed pairing auth from current form fields, fixed the realtime voice label Swift compile issue, added provider auth regression coverage, and refreshed shrinkwrap metadata for the current CI merge base.
Verification:
- `fnm exec --using 24.15.0 pnpm deps:shrinkwrap:check`
- `git diff --check`
- `swiftformat --lint --config config/swiftformat --unexclude apps/ios/Sources apps/ios/Sources/Gateway/GatewayConnectionController.swift apps/ios/Sources/Onboarding/GatewayOnboardingView.swift apps/ios/Sources/Onboarding/OnboardingWizardView.swift apps/ios/Sources/Settings/SettingsTab.swift apps/ios/Sources/Voice/TalkModeGatewayConfig.swift`
- `swiftlint lint --config apps/ios/.swiftlint.yml apps/ios/Sources/Gateway/GatewayConnectionController.swift apps/ios/Sources/Onboarding/GatewayOnboardingView.swift apps/ios/Sources/Onboarding/OnboardingWizardView.swift apps/ios/Sources/Settings/SettingsTab.swift apps/ios/Sources/Voice/TalkModeGatewayConfig.swift`
- `AUTOREVIEW_AUTO_TESTS=0 .agents/skills/autoreview/scripts/autoreview --mode branch --base origin/main`
- GitHub CI clean for `8a76c829611c0eb70d4c3b5328f1868aaf3516e1` (cancelled `auto-response` ignored)
Co-authored-by: Colin Johnson <colin@solvely.net >
2026-05-22 17:34:06 +01:00
VACInc
683ad75b31
fix(talk): stabilize realtime voice consults
...
Stabilize realtime Talk playback, transcript ordering, and consult routing across Android, Web, and the gateway relay.
- serialize Android realtime playback and transcript updates
- add opt-in forced consult routing for Talk realtime sessions
- keep web/gateway consult turns behind OpenClaw results with ordered transcript bubbles
- document the new `talk.realtime.consultRouting` config and keep prompt wording generic
Co-authored-by: VACInc <3279061+VACInc@users.noreply.github.com >
2026-05-22 15:12:39 +01:00
Alex Knight
5d01be1070
Add chat picker search and pagination
2026-05-22 19:07:21 +10:00
Josh Avant
cbe68ba1a1
Fix inherited XDG env for exec subprocesses ( #85139 )
...
* fix exec xdg env inheritance
* chore changelog xdg env fix
2026-05-21 18:01:38 -07:00
Peter Steinberger
e2c92be90b
chore(release): bump version to 2026.5.21
2026-05-22 00:09:45 +01:00
Peter Steinberger
f43e83c937
fix: align remaining copyright notice
2026-05-21 10:47:54 +01:00
Peter Steinberger
3260da003d
fix: update mac copyright owner
2026-05-21 10:33:49 +01:00
clawsweeper[bot]
5c4c6a4207
[codex] Fix macOS app copyright year ( #84729 )
...
Summary:
- The PR updates the macOS About settings copyright text to 2026, adds a changelog entry, and adjusts changed-check planning so non-macOS hosts without SwiftLint emit an explicit app-lint skip with matching test coverage.
- Reproducibility: yes. from source inspection: current main still renders the 2025 copyright literal in the m ... launch the app locally, but the source path and source PR proof make the observable issue high-confidence.
Automerge notes:
- PR branch already contained follow-up commit before automerge: fix(clawsweeper): address review for automerge-openclaw-openclaw-8438…
Validation:
- ClawSweeper review passed for head 26816c18d6 .
- Required merge gates passed before the squash merge.
Prepared head SHA: 26816c18d6
Review: https://github.com/openclaw/openclaw/pull/84729#issuecomment-4503529931
Co-authored-by: clawsweeper <274271284+clawsweeper[bot]@users.noreply.github.com>
Co-authored-by: clawsweeper[bot] <274271284+clawsweeper[bot]@users.noreply.github.com>
Approved-by: takhoffman
Co-authored-by: takhoffman <781889+takhoffman@users.noreply.github.com >
2026-05-20 23:45:47 +00:00
Peter Steinberger
7b9066120a
chore(release): bump version to 2026.5.20
2026-05-20 21:58:56 +01:00
Peter Steinberger
99c88629c3
fix(macos): update embedded Peekaboo bridge
2026-05-20 12:58:56 +01:00
Ayaan Zaidi
989e53c20d
fix(android): address overhaul review findings
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
bbcac0019b
refactor(android): make overhaul UI canonical
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
64b6cafcaa
test(android): update gateway hello callback fixtures
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
98f2e568b3
refactor(android): centralize v2 separated list rows
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
c289e3ea87
fix(android): expand v2 settings toggle hit areas
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
c0ac4564f7
fix(android): clarify v2 voice settings action
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
07b28a6dd6
fix(android): gate v2 cron job save action
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
85ef8fb975
fix(android): request v2 capability permissions
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
c885a1c243
feat(android): wire v2 chat image attachments
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
dd772307a3
fix(android): tighten v2 navigation affordances
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
43b03b7621
fix(android): expand v2 model catalog groups
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
9868f4cf29
fix(android): align v2 control affordances
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
d3cf65eb14
fix(android): remove dead v2 chat controls
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
3aefd355c4
fix(android): wire v2 onboarding actions
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
8d492637af
fix(android): wire v2 navigation controls
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
5de8f8e8a9
feat(android): polish v2 voice surfaces
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
338a0062c4
feat(android): add v2 chat starters
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
69e646f680
fix(android): prevent provider setup button overlap
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
d41f595c75
feat(android): polish v2 provider setup
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
a9669c0f9f
feat(android): polish v2 overview navigation
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
2294c28355
style(android): refine v2 touch rhythm
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
499ccd1522
feat(android): add v2 cron job editor
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
de195645f9
refactor(android): reuse v2 list primitives
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
357e3ecc65
feat(android): add v2 about update status
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
f359299df4
feat(android): add v2 health logs
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
3d5be4c5a9
feat(android): add v2 dreaming settings
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
6db000630c
feat(android): add v2 channels settings
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
fd05179d0a
feat(android): add v2 canvas settings
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
e067203b22
feat(android): add v2 nodes devices settings
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
817ca4bf65
feat(android): add v2 skills settings
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
41175edd98
feat(android): add v2 usage settings
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
b6e04fa6a2
feat(android): add v2 cron jobs settings
2026-05-20 10:54:08 +05:30
Ayaan Zaidi
efe7393064
feat(android): add v2 approvals settings
2026-05-20 10:54:08 +05:30