release: 0.12.0#369
Open
stainless-app[bot] wants to merge 3 commits into
Open
Conversation
ee2b10f to
97dae2a
Compare
97dae2a to
4bbaa85
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-26)
Full Changelog: v0.11.4...v0.12.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 bumps the SDK from v0.11.4 to v0.12.0, adding a
cleaned_attimestamp field to all task response types and cleaning up the runtime dependency list.cleaned_atfield: Added asOptional[datetime] = Noneconsistently acrossTask,TaskListResponseItem,TaskRetrieveResponse, andTaskRetrieveByNameResponse— fully backward-compatible.tornado,datadog,tzlocal,tzdata,ipykernel,anthropic,pytest,pytest-asyncio) from the maindependencieslist. Source-code verification confirms none are imported outside test files;pytest/pytest-asyncioremain in[tool.rye] dev-dependencies.mcp[cli]is simplified tomcpsince the CLI extras aren't used.excluderules in[tool.hatch.build.targets.wheel]prevent internal test files from shipping to PyPI.Confidence Score: 5/5
Safe to merge — all changes are additive or cleanup with no impact on existing behaviour.
The
cleaned_atfield is optional with aNonedefault on all four response types, making it fully backward-compatible. Every package removed from the runtimedependencieslist was verified to have zero imports insrc/;pytestandpytest-asyncioremain available under[tool.rye] dev-dependencies. The wheel exclusion rules are additive and do not affect installed behaviour.No files require special attention.
Important Files Changed
cleaned_at: Optional[datetime] = Nonefield — backward-compatible addition aligned with the other task type files.cleaned_at: Optional[datetime] = NonetoTaskListResponseItem, consistent with the other task response types.cleaned_at: Optional[datetime] = NonetoTaskRetrieveResponse, consistent with the other task response types.cleaned_at: Optional[datetime] = NonetoTaskRetrieveByNameResponse, consistent with the other task response types.Entity Relationship Diagram
%%{init: {'theme': 'neutral'}}%% erDiagram Task { string id PK datetime cleaned_at "NEW - Optional" datetime created_at string name dict params string status string status_reason dict task_metadata datetime updated_at } TaskRetrieveResponse { string id PK datetime cleaned_at "NEW - Optional" datetime created_at string name } TaskRetrieveByNameResponse { string id PK datetime cleaned_at "NEW - Optional" datetime created_at string name } TaskListResponseItem { string id PK datetime cleaned_at "NEW - Optional" datetime created_at string name } Task ||--o{ TaskRetrieveResponse : "mirrors" Task ||--o{ TaskRetrieveByNameResponse : "mirrors" Task ||--o{ TaskListResponseItem : "mirrors"Reviews (2): Last reviewed commit: "release: 0.12.0" | Re-trigger Greptile