Commit graph

4 commits

Author SHA1 Message Date
顾盼
8fd0162c68
fix(release): normalize Live Host signing identity (#8579) 2026-08-06 02:29:38 +00:00
顾盼
93cd019088
fix(release): reuse configured Apple signing secrets (#8574) 2026-08-05 09:20:17 +00:00
顾盼
a5c637b749
feat(web-shell): add native Live Voice (#7859)
* feat(web-shell): add native Live Voice

* fix(web-shell): address review feedback for Live Voice PR (#7859)

- Quote all strings in electron-builder.yml to fix yamllint CI failure
- Gate discovery publish on liveVoiceEnabledAtBoot to avoid writing
  bearer token to disk when Live Voice is disabled (M1)
- Add child identity guard to CommandMonitor stdout/stderr handlers
  to prevent stale helper output from corrupting the new buffer (M4)
- Add exponential backoff to sent-completion delivery retry (M3)
- Skip broadcastState when setCallState/setTranscript value is
  unchanged to reduce per-audio-delta overhead (H1)
- Document sent-mode completion notification in module docstring (H2)
- Remove dead protocol/nonce aliases from readDiscoveryFile
- Fix single instance lock fall-through with process.exit(0)

* fix(cli): register realtime_voice in docs contract and env guard (#7859)

* fix(web-shell): address review feedback for Live Voice PR (#7859)

* fix(cli): discard orphaned isolated dir when parent restore fails (#7859)

* fix(web-shell): address review feedback for Live Voice PR (#7859)

* fix(serve): harden live turn recovery

* fix(desktop): restore Live Host native build

* fix(live): align native host and session isolation

* fix(acp): preserve live worker continuation lineage

* fix(live): classify provider close reasons

* fix(serve): discard unused recovered conversation dirs

* fix(live): isolate authorized realtime responses

* fix(live): preserve realtime response authority

* feat(web-shell): complete Live Voice onboarding

* fix(live): persist realtime-owned dialogue

* fix(live): preserve final speech while stopping

* Revert "fix(web-shell): address review feedback for Live Voice PR (#7859)"

This reverts commit 7110bec6b034c702bca6e28e35b93c7f70e729cd.

* Revert "fix(cli): discard orphaned isolated dir when parent restore fails (#7859)"

This reverts commit 85165f1b2ddfaa311b8be91acdd76a6f388f6204.

* Revert "fix(web-shell): address review feedback for Live Voice PR (#7859)"

This reverts commit 9199fa633e102bb8f24e4b216d322be4323eb3fc.

* Revert "fix(cli): register realtime_voice in docs contract and env guard (#7859)"

This reverts commit 6b6b1718352ef01a98a73976b5c7c4433fd14c35.

* Revert "fix(web-shell): address review feedback for Live Voice PR (#7859)"

This reverts commit e083779105199d26de3afd8ad00719a08efe3099.

* revert(live): remove remaining takeover behavior

* revert(live): restore pre-rollback implementation

* test(cli): align Live diagnostics env guard

* test(release): cover Live Host publication

* fix(ci): re-sign Live Host package before verification

* fix(serve): scope sent completion notifications to Live

* fix(web-shell): preserve live setup errors

* fix(live): align realtime backend speech lifecycle

* ci(live): publish Live Host independently

* test(cli): mock Live speech bridge handler

* test(release): align Live Host workflow contract

* fix(live): address release and lifecycle review findings

* fix(live): release completed call tracking

---------

Co-authored-by: Shaojin Wen <shaojin.wensj@alibaba-inc.com>
Co-authored-by: Qwen Code Autofix <qwen-code-autofix@users.noreply.github.com>
Co-authored-by: Qwen Code Bot <qwen-code-bot@users.noreply.github.com>
Co-authored-by: qwen-code-ci-bot <qwen-code-ci-bot@users.noreply.github.com>
2026-08-05 08:33:22 +00:00
Shaojin Wen
f5b0a85dcf
ci: auto-update ECS runners on stable publish and harden update job (#8343)
* ci: dispatch npm-published on stable release and harden runner update

The update-ecs-runner-qwen workflow declares a repository_dispatch
npm-published trigger, but nothing in the repo ever sent that event,
so the self-hosted ECS runners only picked up new qwen releases when
someone remembered to run the update workflow by hand. Emit the
dispatch from the release workflow after a stable (npm_tag=latest)
publish, carrying the released version; dispatch failure only warns so
an already-published release cannot be failed by it.

Also harden the update job against npm ENOTEMPTY rename failures: all
runner processes of a region share one machine, so a concurrent global
npm install from another job can race the npm rename of the package
dir. Clear stale npm trash dirs and retry up to three times with
backoff.

* ci(triage): pin action qwen reinstall to the installed version

The triage job's qwen-code-action runs an unconditional global
npm install with --prefer-offline on every run. On the shared
self-hosted ECS box that resolves the latest dist-tag from the
persistent npm cache, which lags npm publishes: after the runners
were updated to 0.21.3, the next triage job resolved latest as the
cached 0.21.2 and downgraded the box, which then also re-created the
stale npm trash dir that blocks the update workflow with ENOTEMPTY.

Capture the version the Ensure qwen CLI step verified and pass it as
qwen_cli_version, so the action's redundant reinstall targets the
exact installed version (no dist-tag resolution) and can never
downgrade the shared runner.

* ci: harden npm-published dispatch and runner update retry (#8343)

* test(ci): scope workflow assertions and add triage version-pin test (#8343)

* test(ci): pin retry-loop structure in runner update workflow test (#8343)

---------

Co-authored-by: qwen-code-ci-bot <qwen-code-ci@service.alibaba.com>
Co-authored-by: qwen-code-dev-bot <qwen-code-dev-bot@users.noreply.github.com>
Co-authored-by: qwen-code-ci-bot <qwen-code-ci-bot@users.noreply.github.com>
2026-08-02 03:33:52 +00:00