chore: bump agent-server image pin to 1.29.0#214
Open
VascoSch92 wants to merge 2 commits into
Open
Conversation
Bump the integration-test agent-server image and the docs that reference it from 1.24.0 to 1.29.0 (latest software-agent-sdk release). - .github/workflows/integration-tests.yml: AGENT_SERVER_IMAGE pin - README.md, AGENTS.md: local-setup docs and the CI Image Version note Left unchanged: the minVersion: '1.23.0' feature-support floors in agent-server-compatibility.ts (minimum supported, not tested version) and package.json's own 1.24.2 client version.
…ations agent-server v1.27.0 removed the dedicated /api/acp/conversations* CRUD routes, so the manager's ACP helpers returned 404 against the 1.29.0 backend this branch now pins. ACP conversations are created and queried through the unified /api/conversations* endpoints (an ACP agent is just an ACPEnabledAgent variant of the `agent` payload), so repoint the five helpers (create/get/batch-get/search/count) accordingly. The request/response shapes already match the unified create the client uses for regular conversations, so this is a routing change only; the ACPConversationNamespace surface and types are unchanged. Verified: deterministic integration suite passes 7/7 against ghcr.io/openhands/agent-server:1.29.0-python, and unit tests pass 254/254.
f9dc8dc to
3379df4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps the integration-test agent-server image and its doc references from 1.24.0 → 1.29.0 (latest
software-agent-sdkrelease). Confirmedghcr.io/openhands/agent-server:1.29.0-pythonresolves before pinning.Changes
.github/workflows/integration-tests.yml—AGENT_SERVER_IMAGEpinREADME.md— local-setup docker instructionsAGENTS.md— local-setup instructions + the "CI Image Version" noteLeft unchanged (intentional)
minVersion: '1.23.0'feature-support floors inagent-server-compatibility.ts— these are minimum-supported versions, not the tested version.package.json1.24.2— the client's own npm version, independent of the agent-server.Heads-up (not in this PR)
1.29.0 removed the server's
cloud_proxyrouter (OpenHands/software-agent-sdk#3326). This client still shipsCloudProxyClientand thecloudProxyfeature gate, which now 404 on a 1.29.0 backend. No integration test exercises it, so CI stays green — flagging it as a follow-up cleanup.