acp: Update to 0.0.30 (#36643)

See: https://github.com/zed-industries/agent-client-protocol/pull/20

Release Notes:

- N/A
This commit is contained in:
Agus Zubiaga 2025-08-20 21:10:36 -03:00 committed by GitHub
parent 8ef9ecc91f
commit 6f242772cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 11 additions and 11 deletions

View file

@ -242,7 +242,7 @@ impl AgentConnection for AcpConnection {
if suppress_abort_err && details.contains("This operation was aborted")
{
Ok(acp::PromptResponse {
stop_reason: acp::StopReason::Canceled,
stop_reason: acp::StopReason::Cancelled,
})
} else {
Err(anyhow!(details))
@ -302,7 +302,7 @@ impl acp::Client for ClientDelegate {
let outcome = match result {
Ok(option) => acp::RequestPermissionOutcome::Selected { option_id: option },
Err(oneshot::Canceled) => acp::RequestPermissionOutcome::Canceled,
Err(oneshot::Canceled) => acp::RequestPermissionOutcome::Cancelled,
};
Ok(acp::RequestPermissionResponse { outcome })

View file

@ -705,7 +705,7 @@ impl ClaudeAgentSession {
let stop_reason = match subtype {
ResultErrorType::Success => acp::StopReason::EndTurn,
ResultErrorType::ErrorMaxTurns => acp::StopReason::MaxTurnRequests,
ResultErrorType::ErrorDuringExecution => acp::StopReason::Canceled,
ResultErrorType::ErrorDuringExecution => acp::StopReason::Cancelled,
};
end_turn_tx
.send(Ok(acp::PromptResponse { stop_reason }))