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
4fd88a7 to
ec4fe29
Compare
ec4fe29 to
6734f5a
Compare
6734f5a to
60b9522
Compare
60b9522 to
a2300a6
Compare
a2300a6 to
2daf3af
Compare
2daf3af to
1ebc247
Compare
1ebc247 to
b07c6b6
Compare
b07c6b6 to
eb278d3
Compare
eb278d3 to
0fa796b
Compare
0fa796b to
d8de1b9
Compare
d8de1b9 to
45d292f
Compare
45d292f to
77b0817
Compare
77b0817 to
a26f3a0
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-24)
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 automated release PR bumps the SDK to v0.11.0 and removes the
task_idfield from the Spans API (create, update, list endpoints and theSpanmodel) to align with the updated OpenAPI spec. It also makes the bootstrap script more robust by using${SKIP_BREW:-}instead of a bare$SKIP_BREW, which prevents an unbound-variable error in strict shells.Confidence Score: 5/5
Safe to merge — changes are generated from the updated OpenAPI spec, consistently applied across types, resources, and tests.
All task_id removals are consistent across the model, param types, resource methods, and tests. No logic errors or security concerns were found. The bootstrap script fix is a straightforward improvement. No P0/P1 findings.
No files require special attention.
Important Files Changed
Sequence Diagram
sequenceDiagram participant Client participant SpansResource participant API Client->>SpansResource: create(trace_id, input, output, parent_id) Note over SpansResource: task_id removed in v0.11.0 SpansResource->>API: POST /spans Client->>SpansResource: update(span_id, trace_id, start_time, parent_id) Note over SpansResource: task_id removed in v0.11.0 SpansResource->>API: PATCH /spans Client->>SpansResource: list(trace_id, order_by, page_number) Note over SpansResource: task_id filter removed in v0.11.0 SpansResource->>API: GET /spans API-->>SpansResource: SpanListResponse SpansResource-->>Client: SpanListResponseReviews (28): Last reviewed commit: "release: 0.11.0" | Re-trigger Greptile