chore: release main#464
Open
stainless-app[bot] wants to merge 2 commits into
Open
Conversation
…t in workflow templates
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.21.0
0.21.0 (2026-07-17)
Full Changelog: agentex-client-v0.20.0...agentex-client-v0.21.0
Features
agentex-sdk: 0.21.0
0.21.0 (2026-07-17)
Full Changelog: agentex-sdk-v0.20.0...agentex-sdk-v0.21.0
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.
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 is a Stainless-generated release PR bumping both
agentex-clientandagentex-sdkfrom0.20.0to0.21.0. The only functional change is a CI runner-selection improvement; all other files are version/changelog bookkeeping.ci.yml): theruns-onternary in all three jobs (lint, the publish job, andtest) is widened from an exact repo-name match (github.repository == 'stainless-sdks/agentex-sdk-python') to a prefix match (startsWith(github.repository, 'stainless-sdks/')) so that private/production mirrors in the same org also use the faster depot runner.pyproject.toml,adk/pyproject.toml,src/agentex/_version.py, and.release-please-manifest.jsonare all consistently updated to0.21.0.CHANGELOG.mdandadk/CHANGELOG.mdboth receive a new0.21.0entry describing the changes.Confidence Score: 5/5
All changes are safe to merge — the CI change is a straightforward generalization of an existing condition and all version numbers are consistent across every affected file.
The only non-trivial change is the
startsWithwidening inci.yml. It is strictly more permissive than the old exact-match check and maintains the same default (ubuntu-latest) for all non-stainless-sdks/repositories, so there is no regression risk.No files require special attention.
Important Files Changed
startsWith(github.repository, 'stainless-sdks/')) across all three jobs, enabling private/production forks to use the depot runner.agentex-clientfrom 0.20.0 to 0.21.0, consistent with the release manifest and _version.py.agentex-sdkfrom 0.20.0 to 0.21.0, in sync with the client package."0.20.0"to"0.21.0", consistent with all other version files."0.21.0"— matches pyproject.toml files and _version.py.agentex-client.agentex-sdk, noting it's a version-sync-only chore release.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[GitHub Event: push / pull_request] --> B{startsWith repo\n'stainless-sdks/'?} B -- Yes --> C[depot-ubuntu-24.04\nfaster CI runner] B -- No --> D[ubuntu-latest\nstandard runner] C --> E[lint job] C --> F[publish job] C --> G[test job] D --> E D --> F D --> G%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%% flowchart TD A[GitHub Event: push / pull_request] --> B{startsWith repo\n'stainless-sdks/'?} B -- Yes --> C[depot-ubuntu-24.04\nfaster CI runner] B -- No --> D[ubuntu-latest\nstandard runner] C --> E[lint job] C --> F[publish job] C --> G[test job] D --> E D --> F D --> GReviews (1): Last reviewed commit: "chore: release main" | Re-trigger Greptile