Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
dca474e
perf(client): optimize file structure copying in multipart requests
stainless-app[bot] Apr 28, 2026
486dfed
chore(tests): bump steady to v0.22.1
stainless-app[bot] Apr 17, 2026
9ec1600
chore(internal): more robust bootstrap script
stainless-app[bot] Apr 22, 2026
d47d9f0
fix(api): correct prompt_cache_retention enum value from in-memory to…
stainless-app[bot] Apr 22, 2026
b1dbe6a
codegen metadata
stainless-app[bot] Apr 22, 2026
f8b24de
codegen metadata
stainless-app[bot] Apr 22, 2026
9ee4825
fix: use correct field name format for multipart file arrays
stainless-app[bot] Apr 27, 2026
4f776df
docs(api): add rate limit and vector store info to files create
stainless-app[bot] Apr 27, 2026
1e89d8b
feat: support setting headers via env
stainless-app[bot] Apr 27, 2026
b141a20
docs(api): update files rate limit documentation
stainless-app[bot] Apr 27, 2026
6864a10
codegen metadata
stainless-app[bot] Apr 28, 2026
7dd042f
codegen metadata
stainless-app[bot] Apr 28, 2026
fefc96e
codegen metadata
stainless-app[bot] Apr 28, 2026
3443c6b
codegen metadata
stainless-app[bot] Apr 28, 2026
b8b176a
feat(api): add support for Admin API Keys per endpoint
stainless-app[bot] Apr 29, 2026
f029eb9
fix(api): support admin api key auth
apcha-oai Apr 29, 2026
42a31a7
fix(api): resolve python auth type checks
apcha-oai Apr 29, 2026
62607f6
fix(api): preserve python api key attribute type
apcha-oai Apr 29, 2026
d055539
fix: require bearer auth for stream helpers
apcha-oai Apr 30, 2026
0d27f9d
fix: preserve selected auth credentials
apcha-oai Apr 30, 2026
22e01a8
fix: avoid bearer fallback for admin auth
apcha-oai Apr 30, 2026
a0626ba
fix: allow explicit Azure auth headers
apcha-oai Apr 30, 2026
839ba12
ci: pin trigger-release-please github action
stainless-app[bot] Apr 30, 2026
e55631c
fix(types): correct timestamp types to int in Response model
stainless-app[bot] Apr 29, 2026
2b67cc7
codegen metadata
stainless-app[bot] Apr 29, 2026
d0ac311
codegen metadata
stainless-app[bot] Apr 29, 2026
f6bb9c7
feat(api): manual updates
stainless-app[bot] Apr 29, 2026
4d34e85
codegen metadata
stainless-app[bot] Apr 30, 2026
dbd7bd8
Merge pull request #1876 from stainless-sdks/apcha/fix-bearer-auth-re…
apcha-oai Apr 30, 2026
7da4b88
fix(types): correct created_at and completed_at to float in Response
stainless-app[bot] Apr 30, 2026
c1870f1
feat(api): manual updates
stainless-app[bot] Apr 30, 2026
12ad57b
chore(internal): reformat pyproject.toml
stainless-app[bot] May 4, 2026
4ae1138
feat(api): admin API updates
stainless-app[bot] May 1, 2026
2d232ee
feat(api): add external_key_id to projects, email/metadata params to …
stainless-app[bot] May 1, 2026
9ca2686
codegen metadata
stainless-app[bot] May 1, 2026
cf2980f
codegen metadata
stainless-app[bot] May 1, 2026
d90443b
release: 2.34.0
stainless-app[bot] May 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- uses: stainless-api/trigger-release-please@bb6677c5a04578eec1ccfd9e1913b5b78ed64c61 # v1
- uses: stainless-api/trigger-release-please@bb6677c5a04578eec1ccfd9e1913b5b78ed64c61 # v1.4.0
id: release
with:
repo: ${{ github.event.repository.full_name }}
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.33.0"
".": "2.34.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 152
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-64c6ba619ccbf87e56b4f464230d04401fd78ad924d2606176309d19ca281af5.yml
openapi_spec_hash: 5e4f2073040a12c26ce58e86a72fe47e
config_hash: 50c98d8869a8cfdee2ab7dc664c4b6fe
configured_endpoints: 233
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai/openai-21ecab7aeb61612b9da5e52ea4c0cb75a33d443d975022934b9305e97d1a7d62.yml
openapi_spec_hash: cfc868a0bb3567183510c9b5629c510f
config_hash: dd484e2cc01206d26516338d0f4596b0
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,51 @@
# Changelog

## 2.34.0 (2026-05-04)

Full Changelog: [v2.33.0...v2.34.0](https://github.com/openai/openai-python/compare/v2.33.0...v2.34.0)

### Features

* **api:** add external_key_id to projects, email/metadata params to users, update types ([2d232ee](https://github.com/openai/openai-python/commit/2d232eebb2fe021bb21f2576b17d1d588f81a608))
* **api:** add support for Admin API Keys per endpoint ([b8b176a](https://github.com/openai/openai-python/commit/b8b176af84172f27d2fde8dca062ca4c41f94bf7))
* **api:** admin API updates ([4ae1138](https://github.com/openai/openai-python/commit/4ae1138ae1f76e81a2267e4deb45b435c10774d5))
* **api:** manual updates ([c1870f1](https://github.com/openai/openai-python/commit/c1870f1b881bb914e4e62a6c8b08d4c2b9a6fd54))
* **api:** manual updates ([f6bb9c7](https://github.com/openai/openai-python/commit/f6bb9c7d7bdcc45425d37722358bed097e83d493))
* support setting headers via env ([1e89d8b](https://github.com/openai/openai-python/commit/1e89d8b56aba12f99a8ef2b1b78fdee84751275a))


### Bug Fixes

* allow explicit Azure auth headers ([a0626ba](https://github.com/openai/openai-python/commit/a0626babf0548fb03cf3c2d054da116dd6466701))
* **api:** correct prompt_cache_retention enum value from in-memory to in_memory ([d47d9f0](https://github.com/openai/openai-python/commit/d47d9f0f79c612c4d14005a0a3cf44e1968c9bff))
* **api:** preserve python api key attribute type ([62607f6](https://github.com/openai/openai-python/commit/62607f61c542ed559ef114849e31307c0c290286))
* **api:** resolve python auth type checks ([42a31a7](https://github.com/openai/openai-python/commit/42a31a7efb6784633108c1a73e1779ed79ab8bed))
* **api:** support admin api key auth ([f029eb9](https://github.com/openai/openai-python/commit/f029eb937f976110c1a67b9342525a38a214072e))
* avoid bearer fallback for admin auth ([22e01a8](https://github.com/openai/openai-python/commit/22e01a8cf791a143ecc576f46de50eee9b3c2147))
* preserve selected auth credentials ([0d27f9d](https://github.com/openai/openai-python/commit/0d27f9dbd3b2ae82b2e8c2eeb9e7e78f3edecdf1))
* require bearer auth for stream helpers ([d055539](https://github.com/openai/openai-python/commit/d0555390bcf4a704c10d318c7de2fe006750c3d0))
* **types:** correct created_at and completed_at to float in Response ([7da4b88](https://github.com/openai/openai-python/commit/7da4b88c1985028f7ee9a98b919e71f863f979f0))
* **types:** correct timestamp types to int in Response model ([e55631c](https://github.com/openai/openai-python/commit/e55631c868b1d0b720fda0abdbc342787cd95e2c))
* use correct field name format for multipart file arrays ([9ee4825](https://github.com/openai/openai-python/commit/9ee482576c2bd6b33b6cf7458c37ab2e7d5bc725))


### Performance Improvements

* **client:** optimize file structure copying in multipart requests ([dca474e](https://github.com/openai/openai-python/commit/dca474e5beac7cc8e05855f042c3227843030c1b))


### Chores

* **internal:** more robust bootstrap script ([9ec1600](https://github.com/openai/openai-python/commit/9ec1600d48fda10abb144b2a62d07c5abd7e9ab1))
* **internal:** reformat pyproject.toml ([12ad57b](https://github.com/openai/openai-python/commit/12ad57b8da5b5c0615641af273d4bbf2981d6bf7))
* **tests:** bump steady to v0.22.1 ([486dfed](https://github.com/openai/openai-python/commit/486dfedfec8484bb00318b0ea798c2260f7a720c))


### Documentation

* **api:** add rate limit and vector store info to files create ([4f776df](https://github.com/openai/openai-python/commit/4f776df78d757fdbf25662c4be98b5c98183aaaf))
* **api:** update files rate limit documentation ([b141a20](https://github.com/openai/openai-python/commit/b141a20e948b5af3b8fbe4261798c191d2857b4a))

## 2.33.0 (2026-04-28)

Full Changelog: [v2.32.0...v2.33.0](https://github.com/openai/openai-python/compare/v2.32.0...v2.33.0)
Expand Down
Loading
Loading