release: 0.12.0#369
Open
stainless-app[bot] wants to merge 4 commits into
Open
Conversation
ee2b10f to
97dae2a
Compare
97dae2a to
4bbaa85
Compare
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
4bbaa85 to
ae01a46
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.
Automated Release PR
0.12.0 (2026-05-27)
Full Changelog: v0.11.4...v0.12.0
Features
Chores
Refactors
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.
For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions
Greptile Summary
This automated release PR bumps the SDK to 0.12.0, introducing three changes: a new
cleaned_atoptional field across task response types, promotion of wire-protocol shapes to a newagentex.protocol.*package, and cleanup of unused runtime dependencies.cleaned_atfield: Added asOptional[datetime]toTask,TaskListResponseItem,TaskRetrieveByNameResponse, andTaskRetrieveResponse, in alphabetical order beforecreated_at.agentex.lib.types.acpandagentex.lib.types.json_rpcare now thin back-compat shims re-exporting from the new canonicalagentex.protocol.acp/agentex.protocol.json_rpc. JSON-RPC model config flags (from_attributes=True,populate_by_name=True) are preserved explicitly and validated by a new test suite intests/test_protocol_shims.py.pytest,pytest-asyncio,ipykernel) and other unused runtime packages (tornado,tzlocal,tzdata,datadog,anthropic) from the wheel;mcp[cli]narrowed tomcp.Confidence Score: 5/5
Safe to merge; all changes are additive, backward-compatible, and well-tested.
The protocol-type move is backed by an explicit identity-test suite, back-compat shims cover all historical import paths, the cleaned_at field is purely additive and optional, and the removed dependencies are either dev-only packages or were genuinely unused at runtime.
No files require special attention.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A["agentex.protocol.acp\n(canonical)"] --> |defines| B[RPCMethod\nCreateTaskParams\nSendMessageParams\nSendEventParams\nCancelTaskParams] C["agentex.protocol.json_rpc\n(canonical)"] --> |defines| D[JSONRPCRequest\nJSONRPCResponse\nJSONRPCError] E["agentex.lib.types.acp\n(back-compat shim)"] -->|re-exports from| A F["agentex.lib.types.json_rpc\n(back-compat shim)"] -->|re-exports from| C G[FastACP / BaseACPServer\nTemporalACP / Workflows\nCLI Templates] -->|new imports| A G -->|new imports| C H[Legacy consumers] -->|still works| E H -->|still works| FReviews (3): Last reviewed commit: "release: 0.12.0" | Re-trigger Greptile