chore: release main - #527
Merged
Merged
Conversation
aringuyen3
approved these changes
Sep 24, 2026
aringuyen3
deleted the
release-please--branches--main--changes--next
branch
September 24, 2026 22:33
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.
✨ Stainless prepared a new release
agentex-client: 0.28.1
0.28.1 (2026-09-22)
Full Changelog: agentex-client-v0.28.0...agentex-client-v0.28.1
Bug Fixes
agentex-sdk: 0.28.1
0.28.1 (2026-09-22)
Full Changelog: agentex-sdk-v0.28.0...agentex-sdk-v0.28.1
Chores
This pull request is managed by Stainless's GitHub App.
The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions
This PR is not safe to merge as a release.
agentex-sdk0.28.1 must require a client release that contains the task creation fix.Fix with agent prompt
Summary
This release makes
task/createwait for its handler before replying, so the task workflow exists before callers send events. It also releases both packages as version 0.28.1 and records the ACP fix in the changelogs.Diagram
sequenceDiagram participant U as SDK user participant P as pip participant C as agentex-client participant A as BaseACPServer participant H as ACP handler participant T as Temporal U->>P: Upgrade agentex-sdk to 0.28.1 P-->>U: "Accept any agentex-client >=0.13.0" A->>C: Import RPC_SYNC_METHODS alt agentex-client 0.28.1 is selected U->>A: task/create A->>H: Await handler H->>T: Start workflow T-->>H: Workflow started H-->>A: Done A-->>U: task/create result U->>A: event/send A-->>U: processing A->>H: Run event handler in background else older satisfying client is retained U->>A: task/create A-->>U: processing A->>H: Run create handler in background endReviews (1) · Last reviewed commit: "chore: release main"