-
Notifications
You must be signed in to change notification settings - Fork 1
release: 0.3.0 #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
stainless-app
merged 45 commits into
main
from
release-please--branches--main--changes--next
Jun 10, 2025
Merged
release: 0.3.0 #62
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
f8a2a44
feat(api): manual updates (#61)
stainless-app[bot] a422668
codegen metadata
stainless-app[bot] a62be8a
feat(client): allow passing `NotGiven` for body (#63)
stainless-app[bot] f29b9ba
feat(api): manual updates (#64)
stainless-app[bot] ce1db49
chore(internal): properly set __pydantic_private__ (#66)
stainless-app[bot] cfce519
docs: update URLs from stainlessapi.com to stainless.com (#67)
stainless-app[bot] 65a92c5
chore(docs): update client docstring (#68)
stainless-app[bot] 69a6bde
chore(internal): remove unused http client options forwarding (#69)
stainless-app[bot] 317e72c
chore(internal): codegen related update (#70)
stainless-app[bot] 5166c0c
chore(internal): remove extra empty newlines (#71)
stainless-app[bot] a8f27cc
chore(internal): codegen related update (#72)
stainless-app[bot] 64be852
chore(internal): bump rye to 0.44.0 (#73)
stainless-app[bot] e2efe2b
fix(types): handle more discriminated union shapes (#74)
stainless-app[bot] 2a3ae1d
fix(ci): ensure pip is always available (#75)
stainless-app[bot] fc6ffe9
fix(ci): remove publishing patch (#76)
stainless-app[bot] ad69954
chore: fix typos (#77)
stainless-app[bot] 1240746
codegen metadata
stainless-app[bot] 140ac8b
chore(internal): remove trailing character (#78)
stainless-app[bot] 7de371c
chore(internal): variable name and test updates (#79)
stainless-app[bot] 62166e9
chore(internal): slight transform perf improvement (#80)
stainless-app[bot] 7b5fc94
chore(tests): improve enum examples (#81)
stainless-app[bot] c99fbf1
chore(internal): expand CI branch coverage
stainless-app[bot] f9fb625
chore(internal): reduce CI branch coverage
stainless-app[bot] 655645b
fix(perf): skip traversing types for NotGiven values
stainless-app[bot] 4a25116
fix(perf): optimize some hot paths
stainless-app[bot] d924d39
chore(internal): update pyright settings
stainless-app[bot] 48341b1
chore(client): minor internal fixes
stainless-app[bot] 9073aa6
chore(internal): bump pyright version
stainless-app[bot] 4615096
chore(internal): base client updates
stainless-app[bot] 55f3b64
chore(internal): update models test
stainless-app[bot] 9112f34
chore(ci): add timeout thresholds for CI jobs
stainless-app[bot] 702e260
chore(internal): import reformatting
stainless-app[bot] 4a852b4
chore(internal): fix list file params
stainless-app[bot] fba2a60
chore(internal): refactor retries to not use recursion
stainless-app[bot] 6b28a69
fix(pydantic v1): more robust ModelField.annotation check
stainless-app[bot] 759ff42
chore(internal): minor formatting changes
stainless-app[bot] 0067daf
chore(internal): codegen related update
stainless-app[bot] e00a169
chore(ci): only use depot for staging repos
stainless-app[bot] a4e4e7a
chore: broadly detect json family of content-type headers
stainless-app[bot] 416c2ef
feat(api): manual updates
stainless-app[bot] 2717e93
feat(api): manual updates
stainless-app[bot] 530d80c
feat(api): manual updates
stainless-app[bot] 72320f5
feat(api): manual updates
stainless-app[bot] 640479a
feat(api): manual updates
stainless-app[bot] 2510cb9
release: 0.3.0
stainless-app[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: broadly detect json family of content-type headers
- Loading branch information
commit a4e4e7a6c31a7109c129cd21ea86921c212af657
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
endswith("json")
check is case-sensitive and could miss headers in uppercase or mixed case (e.g., "application/JSON"). Normalize withcontent_type.lower().endswith("json")
.Copilot uses AI. Check for mistakes.