Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.12.0"
".": "0.13.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 49
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-fd1562786a889e981d7d9b30d7f4b29d3d2ea11a8c30e19b919fae07ea355ccd.yml
openapi_spec_hash: 1d83645e7d7bc1b6ccfc1ecc7cca656a
config_hash: 9957eb067ae655fc584c6a1fbe82540c
config_hash: 95ffbc5d87b528d727a944596d7cf051
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.13.0 (2025-06-25)

Full Changelog: [v0.12.0...v0.13.0](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.12.0...v0.13.0)

### Features

* **api:** update via SDK Studio ([b7cc224](https://github.com/mixedbread-ai/mixedbread-python/commit/b7cc224de89f90dd3f6e0806ad3406da9c36b794))

## 0.12.0 (2025-06-25)

Full Changelog: [v0.11.0...v0.12.0](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.11.0...v0.12.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mixedbread"
version = "0.12.0"
version = "0.13.0"
description = "The official Python library for the Mixedbread API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions src/mixedbread/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def __init__(
@property
@override
def qs(self) -> Querystring:
return Querystring(array_format="comma")
return Querystring(array_format="repeat")

@property
@override
Expand Down Expand Up @@ -539,7 +539,7 @@ def __init__(
@property
@override
def qs(self) -> Querystring:
return Querystring(array_format="comma")
return Querystring(array_format="repeat")

@property
@override
Expand Down
2 changes: 1 addition & 1 deletion src/mixedbread/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "mixedbread"
__version__ = "0.12.0" # x-release-please-version
__version__ = "0.13.0" # x-release-please-version
4 changes: 2 additions & 2 deletions tests/api_resources/vector_stores/test_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def test_method_list_with_all_params(self, client: Mixedbread) -> None:
limit=1000,
cursor="cursor",
include_total=True,
statuses=["pending"],
statuses=["pending", "in_progress"],
)
assert_matches_type(SyncCursor[VectorStoreFile], file, path=["response"])

Expand Down Expand Up @@ -445,7 +445,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncMixedbread)
limit=1000,
cursor="cursor",
include_total=True,
statuses=["pending"],
statuses=["pending", "in_progress"],
)
assert_matches_type(AsyncCursor[VectorStoreFile], file, path=["response"])

Expand Down