Open
Conversation
91abc1a to
de14ac0
Compare
de14ac0 to
e88491a
Compare
e88491a to
3432a16
Compare
3432a16 to
d09931b
Compare
d09931b to
caf0668
Compare
caf0668 to
1bb322c
Compare
1bb322c to
e423419
Compare
e423419 to
8a63a77
Compare
8a63a77 to
9ccf90e
Compare
9ccf90e to
dc63a90
Compare
dc63a90 to
9dc2cc1
Compare
9dc2cc1 to
89702a7
Compare
89702a7 to
341713c
Compare
341713c to
4fd88a7
Compare
77b0817 to
a26f3a0
Compare
a26f3a0 to
78f998a
Compare
78f998a to
48d5770
Compare
48d5770 to
761063a
Compare
761063a to
799e5c4
Compare
799e5c4 to
b530469
Compare
b530469 to
6e03177
Compare
6e03177 to
076baf0
Compare
076baf0 to
2ccb107
Compare
2ccb107 to
f1414d0
Compare
f1414d0 to
5063e11
Compare
5063e11 to
b5ef88a
Compare
b5ef88a to
71cab5d
Compare
71cab5d to
f1892a8
Compare
f1892a8 to
a7cb354
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.11.0 (2026-04-25)
Full Changelog: v0.10.2...v0.11.0
Features
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 an automated Stainless SDK release PR bumping the version from
0.10.2to0.11.0. The primary API change is the removal of thetask_idfield from span-related operations (create,update,list) across all type definitions, resource methods, and tests, along with a minor bootstrap script hardening using${SKIP_BREW:-}instead of$SKIP_BREW.Confidence Score: 5/5
Safe to merge — automated SDK release with consistent field removals and no logic issues.
All changes are generated by Stainless and consistently remove task_id across types, resources, and tests. The bootstrap script improvement is strictly defensive. No logic errors, security concerns, or breaking inconsistencies found.
No files require special attention.
Important Files Changed
Sequence Diagram
sequenceDiagram participant Client participant SpansResource participant API note over SpansResource: v0.11.0 — task_id removed Client->>SpansResource: create(name, trace_id, parent_id, ...) SpansResource->>API: POST /spans {name, trace_id, parent_id} API-->>Client: Span Client->>SpansResource: update(span_id, ..., trace_id, ...) SpansResource->>API: PATCH /spans/{id} {trace_id, ...} API-->>Client: Span Client->>SpansResource: list(trace_id, ...) SpansResource->>API: GET /spans?trace_id=... API-->>Client: SpanListResponseReviews (42): Last reviewed commit: "release: 0.11.0" | Re-trigger Greptile