Merged
Conversation
Contributor
Author
Release version edited manuallyThe Pull Request version has been manually set to If you instead want to use the version number |
0157871 to
4c1123a
Compare
danielmillerp
approved these changes
Mar 31, 2026
Contributor
Author
|
🤖 Release is at https://github.com/scaleapi/scale-agentex-python/releases/tag/v0.9.7 🌻 |
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.9.7 (2026-03-30)
Full Changelog: v0.9.6...v0.9.7
Features
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
Automated release PR bumping version from 0.9.6 to 0.9.7. The feature content adds 7 new task lifecycle operations to the ADK:
cancel,complete,fail,terminate,timeout,update, andquery_workflow. These are implemented across all three layers of the architecture (module → service → Temporal activities), following the established dual-path pattern where calls are routed through Temporal activities when inside a workflow context, or directly to the service layer otherwise.TaskStatusTransitionParams,UpdateTaskParams, andQueryWorkflowParamsPydantic models for activity serializationget_all_activitiesfor Temporal worker discoveryconftest.pymocks langchain/langgraph side-effect imports for isolated ADK testingConfidence Score: 4/5
This PR is safe to merge — it adds well-tested, pattern-consistent new functionality with no breaking changes.
All new code follows existing architectural patterns exactly. The three-layer structure (module/service/activity) is consistently applied. Tests cover all new operations across all layers including edge cases. No security or logic issues found. Score is 4 rather than 5 only because the new methods add significant surface area that depends on correct API client behavior (not tested with integration tests).
No files require special attention. src/agentex/lib/core/services/adk/tasks.py and src/agentex/lib/adk/_modules/tasks.py contain the bulk of new logic but follow established patterns.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A["TasksModule<br/>(cancel/complete/fail/terminate/timeout/update/query_workflow)"] --> B{in_temporal_workflow?} B -->|Yes| C["ActivityHelpers.execute_activity<br/>(serialized params)"] B -->|No| D["TasksService<br/>(direct call)"] C --> E["TasksActivities<br/>(Temporal activity definitions)"] E --> D D --> F["AsyncAgentex Client<br/>(tasks.cancel / tasks.complete / etc.)"] D --> G["AsyncTracer<br/>(span tracking + heartbeat)"]Reviews (1): Last reviewed commit: "release: 0.9.7" | Re-trigger Greptile