From b30971234f4bc98cfa0fad7c8b335c2b0ab87720 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 22 Aug 2025 05:27:28 +0000 Subject: [PATCH 1/6] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 1ac23eea..63c721ad 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 49 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-7c2a2a34f9dcbbc872b3b3a920ad90e64f2313cb45150bc54b66cf49da5c847f.yml -openapi_spec_hash: 458f00057a397021bab7b374f0191f18 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-40639c878f8afb52cc3836e1ee0634572b1ab7ae38eec890029c761a469d8c6c.yml +openapi_spec_hash: 7fb8b083a410ec343d80fc37384d65d9 config_hash: 22524d9aa927566851636768f6a861cd From c4ae55998996b4a58bc386a7fd2df527d169c0b0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 22 Aug 2025 07:31:45 +0000 Subject: [PATCH 2/6] chore: update github action --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 508f13bb..3d5672b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: run: ./scripts/lint build: - if: github.repository == 'stainless-sdks/mixedbread-python' && (github.event_name == 'push' || github.event.pull_request.head.repo.fork) + if: github.event_name == 'push' || github.event.pull_request.head.repo.fork timeout-minutes: 10 name: build permissions: @@ -61,12 +61,14 @@ jobs: run: rye build - name: Get GitHub OIDC Token + if: github.repository == 'stainless-sdks/mixedbread-python' id: github-oidc uses: actions/github-script@v6 with: script: core.setOutput('github_token', await core.getIDToken()); - name: Upload tarball + if: github.repository == 'stainless-sdks/mixedbread-python' env: URL: https://pkg.stainless.com/s AUTH: ${{ steps.github-oidc.outputs.github_token }} From e4051b0acd4a6bd5be2ba88b882142d9b34c9173 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 25 Aug 2025 11:27:25 +0000 Subject: [PATCH 3/6] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 63c721ad..252dd5ab 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 49 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-40639c878f8afb52cc3836e1ee0634572b1ab7ae38eec890029c761a469d8c6c.yml -openapi_spec_hash: 7fb8b083a410ec343d80fc37384d65d9 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-c950bdc025566e8000354aef54c6f1c6c4ecbd92f9b6aca231701b8bebdf917e.yml +openapi_spec_hash: d76b267c95385a291cdb9401a9bdb95e config_hash: 22524d9aa927566851636768f6a861cd From b9cdd3fa837aad4a4f860f250298843424797f5b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 05:59:17 +0000 Subject: [PATCH 4/6] chore(internal): change ci workflow machines --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d5672b0..592b71b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: permissions: contents: read id-token: write - runs-on: depot-ubuntu-24.04 + runs-on: ${{ github.repository == 'stainless-sdks/mixedbread-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} steps: - uses: actions/checkout@v4 From 2a6db66daa688b9971785f8bccec32dcc068569d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 08:29:22 +0000 Subject: [PATCH 5/6] fix: avoid newer type syntax --- src/mixedbread/_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixedbread/_models.py b/src/mixedbread/_models.py index b8387ce9..92f7c10b 100644 --- a/src/mixedbread/_models.py +++ b/src/mixedbread/_models.py @@ -304,7 +304,7 @@ def model_dump( exclude_none=exclude_none, ) - return cast(dict[str, Any], json_safe(dumped)) if mode == "json" else dumped + return cast("dict[str, Any]", json_safe(dumped)) if mode == "json" else dumped @override def model_dump_json( From 8bd262c8e793c011657be12c27f0fc09afe325a2 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 08:29:45 +0000 Subject: [PATCH 6/6] release: 0.28.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ pyproject.toml | 2 +- src/mixedbread/_version.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8935e932..a6fc929e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.28.0" + ".": "0.28.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 07150aaf..b04977a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.28.1 (2025-08-27) + +Full Changelog: [v0.28.0...v0.28.1](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.28.0...v0.28.1) + +### Bug Fixes + +* avoid newer type syntax ([2a6db66](https://github.com/mixedbread-ai/mixedbread-python/commit/2a6db66daa688b9971785f8bccec32dcc068569d)) + + +### Chores + +* **internal:** change ci workflow machines ([b9cdd3f](https://github.com/mixedbread-ai/mixedbread-python/commit/b9cdd3fa837aad4a4f860f250298843424797f5b)) +* update github action ([c4ae559](https://github.com/mixedbread-ai/mixedbread-python/commit/c4ae55998996b4a58bc386a7fd2df527d169c0b0)) + ## 0.28.0 (2025-08-21) Full Changelog: [v0.27.0...v0.28.0](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.27.0...v0.28.0) diff --git a/pyproject.toml b/pyproject.toml index a60f88e7..e8a36dfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mixedbread" -version = "0.28.0" +version = "0.28.1" description = "The official Python library for the Mixedbread API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/mixedbread/_version.py b/src/mixedbread/_version.py index f6fccb29..12cfe033 100644 --- a/src/mixedbread/_version.py +++ b/src/mixedbread/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "mixedbread" -__version__ = "0.28.0" # x-release-please-version +__version__ = "0.28.1" # x-release-please-version