Skip to content

Bump the vdb group in /api with 16 updates#8

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/api/vdb-f868f925fb
Open

Bump the vdb group in /api with 16 updates#8
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/api/vdb-f868f925fb

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 26, 2026

Copy link
Copy Markdown

Bumps the vdb group in /api with 16 updates:

Package From To
xinference-client 2.7.0 2.11.0
mysql-connector-python 9.6.0 9.7.0
alibabacloud-gpdb20160503 5.2.0 5.5.0
clickhouse-connect 0.15.1 1.3.0
pymochow 2.4.0 2.4.1
chromadb 0.5.20 1.5.9
clickzetta-connector-python 0.8.104 0.8.109
couchbase 4.6.0 4.6.2
elasticsearch 8.14.0 9.4.1
opensearch-py 3.1.0 3.2.0
pymilvus 2.6.12 3.0.0
pyobvector 0.2.25 0.2.28
oracledb 3.4.2 4.0.1
qdrant-client 1.9.0 1.18.0
tablestore 6.4.4 6.4.6
weaviate-client 4.20.5 4.22.0

Updates xinference-client from 2.7.0 to 2.11.0

Release notes

Sourced from xinference-client's releases.

v2.11.0

What's new in 2.11.0 (2026-06-19)

These are the changes in inference-client v2.11.0.

Others

Full Changelog: xorbitsai/inference-client@v2.10.0...v2.11.0

v2.10.0

What's new in 2.10.0 (2026-06-06)

These are the changes in inference-client v2.10.0.

Others

Full Changelog: xorbitsai/inference-client@v2.9.0...v2.10.0

v2.9.0

What's new in 2.9.0 (2026-05-23)

These are the changes in inference-client v2.9.0.

Others

Full Changelog: xorbitsai/inference-client@v2.8.0...v2.9.0

v2.8.0

What's new in 2.8.0 (2026-05-09)

These are the changes in inference-client v2.8.0.

Others

Full Changelog: xorbitsai/inference-client@v2.7.0...v2.8.0

Commits

Updates mysql-connector-python from 9.6.0 to 9.7.0

Changelog

Sourced from mysql-connector-python's changelog.

v9.7.0

This release contains no functional changes.

Commits

Updates alibabacloud-gpdb20160503 from 5.2.0 to 5.5.0

Commits

Updates clickhouse-connect from 0.15.1 to 1.3.0

Release notes

Sourced from clickhouse-connect's releases.

v1.3.0

This release adds structured error codes on raised exceptions, Windows ARM64 wheels, and a set of bug fixes for the DB API cursor and server-side bind parameters.

Highlights

Features

  • Structured error fields on exceptions. Server errors now expose a numeric code attribute with the ClickHouse error code and a name attribute with the symbolic name such as UNKNOWN_TABLE on DatabaseError and OperationalError. Callers can branch on exc.code instead of parsing the message string. code is set even when show_clickhouse_errors is disabled. Both default to None when unavailable, such as on transport errors. Closes #786.
  • Windows ARM64 wheels. Wheels are now built and published for win_arm64 on CPython 3.10 through 3.14, including the free-threaded 3.14 build. Closes #785.

Bug Fixes

  • Large query parameter payloads are now automatically sent as form data in the request body instead of the URL query string, so a large IN list or a high-dimensional vector embedding no longer produces a URL that intermediaries like nginx, AWS ALB, or CloudFront reject with HTTP 414. Queries using binary parameter binds are never promoted automatically and only use form encoding when form_encode_query_params=True is set. Applies to both sync and async clients. Closes #740.
  • DB API Cursor.executemany no longer raises AttributeError when rows are passed as sequences instead of mappings. PEP 249 allows sequence rows, and consumers like Airflow's DbApiHook.insert_rows(executemany=True) pass tuples.
  • uuid.UUID, IPv4Address, and IPv6Address values nested inside Array, Tuple, or Map server-side bind parameters are now quoted, fixing IN lists of UUIDs bound to {name:Array(String)} being rejected by the server. Closes #791.
  • A datetime parameter whose name genuinely ends in _64 is no longer renamed when the query binds that exact name, fixing placeholders like {param_64:DateTime64(6)} being left unbound. SQLAlchemy hit this with server_side_params=True once a statement reached 64 anonymous parameters. The documented _64 convention still works as before. Closes #790.

Installation

pip install --upgrade clickhouse-connect

Full Changelog: ClickHouse/clickhouse-connect@v1.2.0...v1.3.0

v1.2.0

clickhouse-connect 1.2.0

This release adds opt-in server-side bind parameters for the SQLAlchemy dialect, a token_provider client option for refreshable access tokens, and custom HTTP headers on client creation. It also ships a batch of SQLAlchemy reflection and type fixes along with several correctness fixes in query parameter handling and DSN parsing.

⚠️ Upgrade note: literal % in a DSN

The dsn passed to create_client / create_async_client now percent-decodes the username, password, and database. This lets you supply credentials that contain reserved characters in URL-encoded form, so pass%20word decodes to pass word.

If your DSN contains a literal %, you must now escape it as %25. A DSN credential like pa%ss will otherwise be misread. This is the one behavior change in this release that can affect existing setups, so check your connection strings before upgrading. A DSN with a username and no password now also sends an empty password rather than the literal string None. Closes #713.

Highlights

New features

  • Server-side bind parameters for SQLAlchemy. Opt in with create_engine(url, server_side_params=True). The dialect then emits ClickHouse native {name:Type} / {name:Array(Type)} placeholders instead of client-side string interpolation. Off by default. Closes #735.
  • token_provider client option. Sync and async. It accepts a callable that returns an access token string. The callable is invoked once for the initial token and again to fetch a fresh token whenever the server rejects the current one on an authentication failure, retrying the request once. Mutually exclusive with access_token and username/password.
  • Custom HTTP headers. A new headers option on create_client / create_async_client attaches custom headers to every request, including the initialization queries sent during client creation. Useful for HTTP gateways that require auth headers such as Cloudflare Access service tokens.

Bug fixes

  • A datetime bound to a server-side {name:DateTime64(...)} placeholder now keeps its sub-second precision instead of being truncated to seconds. The declared parameter type drives this, so no _64 name suffix or manual DT64Param wrapper is needed, and it applies through Array and Tuple hints. Plain DateTime binds are unchanged. Closes #739.
  • bytes / bytearray query parameters now render as ClickHouse string literals, each byte as \xHH, instead of the Python repr. This fixes inserts into FixedString / String columns through the SQLAlchemy dialect. Closes #777.
  • Strip -- line comments that have no following space when classifying queries, so a DDL with a leading --sql-style comment is routed as a command instead of raising StreamFailureError. Closes #499.

SQLAlchemy improvements

... (truncated)

Changelog

Sourced from clickhouse-connect's changelog.

1.3.0, 2026-06-11

Improvements

  • Build and publish Windows ARM64 win_arm64 wheels for CPython 3.10 through 3.14, including the free-threaded 3.14 build. Closes #785.
  • Server errors now expose structured fields on the raised exception. DatabaseError and OperationalError carry a numeric code attribute with the ClickHouse error code and a name attribute with the symbolic name such as UNKNOWN_TABLE, so callers can branch on exc.code instead of parsing the message string. code is set even when show_clickhouse_errors is disabled. name is only set when error detail is enabled. Both default to None when unavailable, such as on transport errors. Closes #786.

Bug Fixes

  • DB API Cursor.executemany no longer raises AttributeError: 'tuple' object has no attribute 'keys' when rows are passed as sequences instead of mappings. The bulk insert optimization assumed every row was a dict, but PEP 249 allows seq_of_parameters to contain sequences, and cursor.execute already accepted positional parameters. Sequence rows now use the same bulk insert path, taking column names from the INSERT statement when present. This fixes consumers like Airflow's DbApiHook.insert_rows(executemany=True), which passes tuples.
  • Large query parameter payloads are now automatically sent as form data in the request body instead of the URL query string. Server-side bind parameters were urlencoded into the request URL, so a large IN list or a high-dimensional vector embedding could produce a URL that HTTP intermediaries such as nginx, AWS ALB, and CloudFront reject with HTTP 414. The client now routes parameters to the POST body once their encoded length passes a threshold, which keeps the URL small. Setting form_encode_query_params=True still forces form encoding for all queries. Queries using binary parameter binds are never promoted automatically and only use form encoding when the flag is set. This does not change the server's per-value size limit, which is governed by http_max_field_value_size. Applies to both sync and async clients. Closes #740.
  • uuid.UUID, IPv4Address, and IPv6Address values nested inside Array, Tuple, or Map server-side bind parameters are now quoted, matching client-side parameter formatting. Previously they rendered unquoted, so an IN list of UUIDs bound to {name:Array(String)} (as produced by SQLAlchemy Column.in_ with server_side_params=True) was rejected by the server with Code: 26 ... cannot be parsed as Array(String). Closes #791.
  • A datetime parameter whose name genuinely ends in _64 is no longer renamed when the query binds that exact name. bind_query treated any trailing _64 as a DateTime64 precision hint and stripped it before looking at the query, so a placeholder like {param_64:DateTime64(6)} was left unbound and the server rejected the query. SQLAlchemy hits this with server_side_params=True once a statement reaches 64 anonymous parameters. The suffix is now only treated as a hint when the full name does not appear as a placeholder in the query, which leaves the documented _64 convention working as before. Closes #790.

1.2.0, 2026-06-08

Improvements

  • SQLAlchemy: opt-in server-side bind parameters via create_engine(url, server_side_params=True). The dialect then emits ClickHouse native {name:Type} / {name:Array(Type)} placeholders instead of client-side string interpolation. Off by default. Closes #735.
  • Added a token_provider client option (sync and async). It accepts a callable returning an access token string; the callable is invoked once for the initial token and again to fetch a fresh token whenever the server rejects the current one (authentication failure), retrying the request once. Mutually exclusive with access_token and username/password.
  • Added a headers option to create_client/create_async_client for attaching custom HTTP headers to every request, including the initialization queries sent during client creation. Useful for HTTP gateways that require auth headers such as Cloudflare Access service tokens.

Bug Fixes

  • A datetime bound to a server-side {name:DateTime64(...)} placeholder now keeps its sub-second precision instead of being truncated to seconds. The declared parameter type drives this, so no _64 name suffix or manual DT64Param wrapper is needed, and it applies through Array and Tuple hints. Plain DateTime binds are unchanged. Closes #739.
  • Strip -- line comments that have no following space when classifying queries, so a DDL with a leading --sql-style comment is routed as a command instead of raising StreamFailureError. Closes #499.
  • SQLAlchemy: implement reflection on the dialect itself so MetaData.reflect() and Inspector.get_multi_columns() work.
  • SQLAlchemy: UDT-based types (UUID, IPv4/IPv6, JSON, Nested, geometry types, AggregateFunction, etc.) now return concrete python_type classes instead of None, matching SQLAlchemy's TypeEngine.python_type contract.
  • SQLAlchemy: Array now subclasses sqlalchemy.types.ARRAY and exposes item_type.
  • bytes/bytearray query parameters now render as ClickHouse string literals (each byte as \xHH) instead of the Python repr, fixing inserts into FixedString/String columns through the SQLAlchemy dialect. Closes #777.
  • The dsn passed to create_client/create_async_client now percent-decodes the username, password, and database, so credentials containing reserved characters can be supplied URL-encoded (pass%20word becomes pass word). A literal % in a DSN must now be written as %25. A DSN with a username and no password now sends an empty password rather than the literal string None. Closes #713.

1.1.1, 2026-05-27

Bug Fixes

  • Async client: ping() now routes through the configured proxy, matching _raw_request. Previously the proxy was omitted, so ping() falsely returned False on networks where the server was only reachable via the proxy. Closes #757.
  • Fix query("SHOW ROW POLICIES")/query("SHOW POLICIES") by routing these non-tabular statements without appending FORMAT Native. Empty row-policy SHOW command results now return "" instead of QuerySummary. Closes #761.
  • Async client: retry stale keep-alive resets surfaced by aiohttp as ClientOSError or ClientConnectionResetError, fixing large async inserts on killed pooled connections. Closes #763.
  • Async client: do not retry aiohttp timeout, connector, or fingerprint errors as these can indicate the request was already delivered or a config issue, not a stale connection.
  • Sync client: also retry stale keep-alive BrokenPipeError (in addition to ConnectionResetError), matching the async behavior.

1.1.0, 2026-05-26

Compatibility

  • Async client now requires aiohttp>=3.9.0. This is required to support TLS SNI override via server_host_name, because aiohttp added the per-request server_hostname option in 3.9.
  • SQLAlchemy: the alembic extra now requires alembic>=1.16 (previously >=1.9) so the documented IF EXISTS / IF NOT EXISTS Alembic operation kwargs are available.

Bug Fixes

  • SQLAlchemy: op.add_column(..., clickhouse_settings={...}) now works through the public Alembic operations API, and rendered AddColumnOp migrations preserve extra ClickHouse kwargs.
  • SQLAlchemy: Alembic migrations now handle comments with ClickHouse-compatible syntax. Column comments on CREATE TABLE / ADD COLUMN no longer emit rejected COMMENT ON COLUMN statements; table comments are now emitted in generated DDL, reflected for no-op autogenerate, and changed or dropped with ALTER TABLE ... MODIFY COMMENT.
  • Async client: server_host_name now also overrides the TLS SNI / certificate hostname, matching the sync client. Previously the async path only applied it to the HTTP Host header, so connecting to host A while presenting SNI B (the 0.x pool_mgr=urllib3.PoolManager(server_hostname=...) pattern, useful for ClickHouse Cloud VPC endpoints reached via external DNS) was not expressible against the new aiohttp-based client. Both _raw_request and ping() now pass ssl=self._ssl_context, server_hostname=self.server_host_name per request when an SSL context is in use. Closes #752.
  • Drain the full retries budget on connection-error retries in _raw_request instead of only retrying once. Previously both the sync and async clients gated network-error retries on attempts == 1, so two consecutive aiohttp.ServerDisconnectedErrors (or ConnectionResetErrors on the sync path) surfaced as OperationalError even when query_retries would have allowed another attempt. Read paths now drain query_retries; insert/command paths still get one retry (retries=0 callers). Sync raw_query and raw_stream (the foundation for query_arrow / query_arrow_stream) now also pass query_retries so they match their async counterparts. Adds a 0.1 * attempts backoff between connection-error retries to match the 429/503/504 branch. Closes #754.
  • quote_identifier now re-escapes inputs that start and end with ` or " but contain unescaped inner occurrences of the same quote character, instead of passing them through unchanged. Validly pre-quoted identifiers like backslash or doubled-quote escaping still pass through untouched. Closes #737.
  • SQLAlchemy: quote string-valued engine and operation settings as ClickHouse string literals when rendering SETTINGS clauses. Previously settings like MergeTree(settings={"storage_policy": "hot_cold"}) or op.add_column(..., clickhouse_settings={"mutations_sync": "2"}) emitted unquoted SQL (storage_policy = hot_cold), which ClickHouse rejected. Numeric and boolean settings are unchanged.

... (truncated)

Commits
  • e6e5fd4 1.3.0 release prep (#796)
  • 72a0ae7 Fix dbapi Cursor.executemany crashing on sequence rows (#795)
  • aaddb19 expose ClickHouse error code and name on raised exceptions (#788)
  • 89cadee fix _64 param-name suffix stripping when the full name is a query placeholder...
  • 98c1106 fix uuid and ip address bind parameters rendering unquoted inside containers ...
  • 4976348 auto-promote large query parameters to form body (#789)
  • 9c7bae4 add windows arm64 wheel builds (#787)
  • 895e974 avoid qemu in wheel builds (#784)
  • 3bcbcc9 v1.2.0 release prep (#783)
  • 6e54147 Add client-level HTTP headers (#776)
  • Additional commits viewable in compare view

Updates pymochow from 2.4.0 to 2.4.1

Updates chromadb from 0.5.20 to 1.5.9

Release notes

Sourced from chromadb's releases.

1.5.9

Version: 1.5.9 Git ref: refs/tags/1.5.9 Build Date: 2026-05-05T05:55 PIP Package: chroma-1.5.9.tar.gz Github Container Registry Image: :1.5.9 DockerHub Image: :1.5.9

What's Changed

... (truncated)

Commits

Updates clickzetta-connector-python from 0.8.104 to 0.8.109

Updates couchbase from 4.6.0 to 4.6.2

Commits
  • ea89ab3 Update C++ core
  • 4204653 PYCBC-1779: Remove asyncio.QueueEmpty exception blocks
  • 289fd60 PYCBC-1778: Fix KV range scan consistent_with and ScanResult.expiry_time
  • 60ee58b PYCBC-1774: Add cancellation/close support to the C-extension streaming result
  • d92f378 PYCBC-1773: Streaming operations do not handle asyncio.CancelledError / BaseE...
  • 7d0b99a PYCBC-1771: txcouchbase: Cleanup ObservableRequestHandler context manager cre...
  • 0260c24 PYCBC-1767: Use nullcontext when using no-op observability
  • 0d86ab2 PYCBC-1770: Collection Management create_collection and drop_collection have ...
  • fab7f52 PYCBC-1765: Threshold Logging Optimizations
  • 6362669 PYCBC-1764 - Improve how client handles KV operations across the C-extension ...
  • Additional commits viewable in compare view

Updates elasticsearch from 8.14.0 to 9.4.1

Release notes

Sourced from elasticsearch's releases.

9.4.1

Enhancements

  • Optional backoff delay strategy for retries (Fixes #197) (#3430)
  • Sanitize index names in ES|QL query builder (Fixes #3422) (#3425)

DSL

  • Added flat_index_threshold attribute to DenseVectorIndexOptions type
  • Added field attribute to InnerHits type
  • Added embedding attribute to QueryVectorBuilder type

9.4.0

Enhancements

  • ES|QL updates for 9.4 and Serverless (#3384)
  • Added server_mode parameter to the client’s constructor

API

  • Added inference.embedding API
  • Added inference.put_fireworksai API
  • Added project.create_many_routing, project.create_routing, project.delete_routing, project.get_many_routing and project.get_routing APIs
  • Added security.clone_api_key API
  • Added group_by parameter to reindex_rethrottle API
  • Added return_intermediate_results parameter to async_search.get API
  • Added project_routing and time_zone parameters to esql.async_query and esql.query APIs
  • Removed master_timeout parameter from searchable_snapshots.cache_stats API
  • Added name parameter to streams.logs_enable and streams.logs_disable APIs
  • Added should_parse_recursively parameter to text_structure.find_field_structure, text_structure.find_message_structure and text_structure.find_structure APIs

DSL

  • Data stream support (#3413)
  • Handle document attributes that have a name collision with a method (#3364)
  • Added es_name parameter to mapped_field function
  • Added _es_name parameter to all subclasses of Field
  • Added script attribute to MultiTermLookup type
  • Added lookup attribute to QueryVectorBuilder type

9.3.0

Enhancements

  • Add pack_dense_vector helper function to pack dense vectors for efficient uploading (#3219)
  • New and updated ES|QL functions in the ES|QL query builder for 9.3 and Serverless (#3266)

API

  • Added cat.circuit_breaker API
  • Added experimental esql.get_view, esql.put_view and esql.delete_view APIs

... (truncated)

Commits

Updates opensearch-py from 3.1.0 to 3.2.0

Release notes

Sourced from opensearch-py's releases.

v3.2.0

What's Changed

New Contributors

Full Changelog: opensearch-project/opensearch-py@v3.1.0...v3.2.0

Changelog

Sourced from opensearch-py's changelog.

[3.2.0]

Added

  • Add dependency on opensearch-protobufs to provide client libraries for gRPC transport (#977)
  • Add ML Commons plugin documentation (#992)

Updated APIs

Changed

Deprecated

Removed

Fixed

  • Fixed AWSV4Signer.sign() not passing custom headers to AWSRequest, causing x-amz-* headers to be excluded from SigV4 signature (#1034)
  • Fixed AWSV4Signer.sign() not setting X-Amz-Content-SHA256 before SigV4Auth.add_auth(), causing the header to be absent from SignedHeaders in the Authorization header. The fix uses a guarded assignment that preserves caller-provided values (e.g., UNSIGNED-PAYLOAD, precomputed hashes) (#1038, #1039)
  • Fixed the linkchecker CI step (#987)

Security

Dependencies

  • Bump pytest-asyncio from <=1.2.0 to <=1.3.0 (#984)
  • Bump actions/checkout from 5 to 6 (#986)
  • Bump codecov/codecov-action from 4 to 5 (#985)
  • Bump actions/upload-artifact from 5 to 6 (#989)
  • Bump actions/download-artifact from 6 to 7 (#988)
  • Bump peter-evans/create-pull-request from 7 to 8 (#990)
  • Bump opensearch-protobufs from 0.19.0 to 1.2.0 (#1000)
Commits
  • 8991792 fix(signer): Include X-Amz-Content-SHA256 in SignedHeaders (#1038) (#1039)
  • d8a8c57 Fix AWSV4Signer.sign() not passing headers to AWSRequest (#1035)
  • 6551595 Bump opensearch protobufs - 1.2.0. (#1000)
  • 94ae310 Fix CI failures due to API spec updates (#1007)
  • 1ce5b46 fix(docs): use keyword arguments in security API examples (#1004)
  • 9b6d240 Bump peter-evans/create-pull-request from 7 to 8 (#990)
  • 02c5dcc Bump actions/download-artifact from 6 to 7 (#988)
  • fa8a862 Bump actions/upload-artifact from 5 to 6 (#989)
  • f5ef694 Updated opensearch-py to reflect the latest OpenSearch API spec (2026-01-22) ...
  • 10ab792 ci: fix mypy type ignore for untyped decorator in tests (#993)
  • Additional commits viewable in compare view

Updates pymilvus from 2.6.12 to 3.0.0

Release notes

Sourced from pymilvus's releases.

PyMilvus v3.0.0 Release Notes

PyMilvus 3.0.0 for Milvus 3.0.0beta

PyMilvus v2.6.16 Release Notes

What's Changed

Features and enhancements

  • Add element-level search support (source #3208; 2.6 #3491).
  • Add dump_messages suppor...

    Description has been truncated

Bumps the vdb group in /api with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [xinference-client](https://github.com/xorbitsai/inference-client) | `2.7.0` | `2.11.0` |
| [mysql-connector-python](https://github.com/mysql/mysql-connector-python) | `9.6.0` | `9.7.0` |
| [alibabacloud-gpdb20160503](https://github.com/aliyun/alibabacloud-python-sdk) | `5.2.0` | `5.5.0` |
| [clickhouse-connect](https://github.com/ClickHouse/clickhouse-connect) | `0.15.1` | `1.3.0` |
| [pymochow](http://bce.baidu.com) | `2.4.0` | `2.4.1` |
| [chromadb](https://github.com/chroma-core/chroma) | `0.5.20` | `1.5.9` |
| clickzetta-connector-python | `0.8.104` | `0.8.109` |
| [couchbase](https://github.com/couchbase/couchbase-python-client) | `4.6.0` | `4.6.2` |
| [elasticsearch](https://github.com/elastic/elasticsearch-py) | `8.14.0` | `9.4.1` |
| [opensearch-py](https://github.com/opensearch-project/opensearch-py) | `3.1.0` | `3.2.0` |
| [pymilvus](https://github.com/milvus-io/pymilvus) | `2.6.12` | `3.0.0` |
| [pyobvector](https://github.com/oceanbase/pyobvector) | `0.2.25` | `0.2.28` |
| [oracledb](https://github.com/oracle/python-oracledb) | `3.4.2` | `4.0.1` |
| [qdrant-client](https://github.com/qdrant/qdrant-client) | `1.9.0` | `1.18.0` |
| [tablestore](https://github.com/aliyun/aliyun-tablestore-python-sdk) | `6.4.4` | `6.4.6` |
| [weaviate-client](https://github.com/weaviate/weaviate-python-client) | `4.20.5` | `4.22.0` |


Updates `xinference-client` from 2.7.0 to 2.11.0
- [Release notes](https://github.com/xorbitsai/inference-client/releases)
- [Commits](xorbitsai/inference-client@v2.7.0...v2.11.0)

Updates `mysql-connector-python` from 9.6.0 to 9.7.0
- [Changelog](https://github.com/mysql/mysql-connector-python/blob/trunk/CHANGES.txt)
- [Commits](mysql/mysql-connector-python@9.6.0...9.7.0)

Updates `alibabacloud-gpdb20160503` from 5.2.0 to 5.5.0
- [Changelog](https://github.com/aliyun/alibabacloud-python-sdk/blob/master/docmind-api-20220711/ChangeLog.md)
- [Commits](https://github.com/aliyun/alibabacloud-python-sdk/commits)

Updates `clickhouse-connect` from 0.15.1 to 1.3.0
- [Release notes](https://github.com/ClickHouse/clickhouse-connect/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-connect/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-connect@v0.15.1...v1.3.0)

Updates `pymochow` from 2.4.0 to 2.4.1

Updates `chromadb` from 0.5.20 to 1.5.9
- [Release notes](https://github.com/chroma-core/chroma/releases)
- [Changelog](https://github.com/chroma-core/chroma/blob/main/RELEASE_PROCESS.md)
- [Commits](chroma-core/chroma@0.5.20...1.5.9)

Updates `clickzetta-connector-python` from 0.8.104 to 0.8.109

Updates `couchbase` from 4.6.0 to 4.6.2
- [Commits](couchbase/couchbase-python-client@4.6.0...4.6.2)

Updates `elasticsearch` from 8.14.0 to 9.4.1
- [Release notes](https://github.com/elastic/elasticsearch-py/releases)
- [Commits](elastic/elasticsearch-py@v8.14.0...v9.4.1)

Updates `opensearch-py` from 3.1.0 to 3.2.0
- [Release notes](https://github.com/opensearch-project/opensearch-py/releases)
- [Changelog](https://github.com/opensearch-project/opensearch-py/blob/main/CHANGELOG.md)
- [Commits](opensearch-project/opensearch-py@v3.1.0...v3.2.0)

Updates `pymilvus` from 2.6.12 to 3.0.0
- [Release notes](https://github.com/milvus-io/pymilvus/releases)
- [Commits](milvus-io/pymilvus@v2.6.12...v3.0.0)

Updates `pyobvector` from 0.2.25 to 0.2.28
- [Release notes](https://github.com/oceanbase/pyobvector/releases)
- [Changelog](https://github.com/oceanbase/pyobvector/blob/main/RELEASE_NOTES.md)
- [Commits](oceanbase/pyobvector@release-v0.2.25...release-v0.2.28)

Updates `oracledb` from 3.4.2 to 4.0.1
- [Release notes](https://github.com/oracle/python-oracledb/releases)
- [Commits](oracle/python-oracledb@v3.4.2...v4.0.1)

Updates `qdrant-client` from 1.9.0 to 1.18.0
- [Release notes](https://github.com/qdrant/qdrant-client/releases)
- [Commits](qdrant/qdrant-client@v1.9.0...v1.18.0)

Updates `tablestore` from 6.4.4 to 6.4.6
- [Release notes](https://github.com/aliyun/aliyun-tablestore-python-sdk/releases)
- [Changelog](https://github.com/aliyun/aliyun-tablestore-python-sdk/blob/master/CHANGELOG.md)
- [Commits](https://github.com/aliyun/aliyun-tablestore-python-sdk/commits)

Updates `weaviate-client` from 4.20.5 to 4.22.0
- [Release notes](https://github.com/weaviate/weaviate-python-client/releases)
- [Changelog](https://github.com/weaviate/weaviate-python-client/blob/main/docs/changelog.rst)
- [Commits](weaviate/weaviate-python-client@v4.20.5...v4.22.0)

---
updated-dependencies:
- dependency-name: xinference-client
  dependency-version: 2.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vdb
- dependency-name: mysql-connector-python
  dependency-version: 9.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vdb
- dependency-name: alibabacloud-gpdb20160503
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vdb
- dependency-name: clickhouse-connect
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: vdb
- dependency-name: pymochow
  dependency-version: 2.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: vdb
- dependency-name: chromadb
  dependency-version: 1.5.9
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: vdb
- dependency-name: clickzetta-connector-python
  dependency-version: 0.8.109
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: vdb
- dependency-name: couchbase
  dependency-version: 4.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: vdb
- dependency-name: elasticsearch
  dependency-version: 9.4.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: vdb
- dependency-name: opensearch-py
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vdb
- dependency-name: pymilvus
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: vdb
- dependency-name: pyobvector
  dependency-version: 0.2.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: vdb
- dependency-name: oracledb
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: vdb
- dependency-name: qdrant-client
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vdb
- dependency-name: tablestore
  dependency-version: 6.4.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: vdb
- dependency-name: weaviate-client
  dependency-version: 4.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vdb
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jun 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code

Development

Successfully merging this pull request may close these issues.

0 participants