Pymilvus

Latest version: v2.5.4

Safety actively analyzes 702367 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 13

2.4.13

What's Changed
* fix: [2.4] await conn.describe_collection in async client's query by brcarry in https://github.com/milvus-io/pymilvus/pull/2501
* enhance: [2.4]add alter properties example by JsDove in https://github.com/milvus-io/pymilvus/pull/2506
* fix: grant ManualCompact api doesn't work (2396) by weiliu1031 in https://github.com/milvus-io/pymilvus/pull/2508
* fix: [2.4] fix privilege typo by shaoting-huang in https://github.com/milvus-io/pymilvus/pull/2511
* enhance: Enable resource group api in milvus client (2513) by weiliu1031 in https://github.com/milvus-io/pymilvus/pull/2515


**Full Changelog**: https://github.com/milvus-io/pymilvus/compare/v2.4.12...v2.4.13

2.4.12

What's Changed
* fix: [2.4] RuntimeWarning: coroutine 'Channel.close' was never awaited when closing async client by brcarry in https://github.com/milvus-io/pymilvus/pull/2498


**Full Changelog**: https://github.com/milvus-io/pymilvus/compare/v2.4.11...v2.4.12

2.4.11

New Features

Support AsyncIO (EXPERIMENTAL)
* feat: asyncio support by brcarry in https://github.com/milvus-io/pymilvus/pull/2459

Introducing the native asyncio client in PyMilvus: `AsyncMilvusClient`. While only a subset of APIs is currently supported, this marks a significant step forward for PyMilvus. Enjoy exploring it!

python
import asyncio

from pymilvus import MilvusClient, AsyncMilvusClient, DataType


async def main():
URI = "./milvus.db"
async_client = AsyncMilvusClient(uri=URI)
await async_client.create_collection("async_example", dimension=768)
await async_client.drop_collection("async_example")


if __name__ == "__main__":
asyncio.run(main())

Other new features
* enhance: grant/revoke v2 optional db and collection params by shaoting-huang in https://github.com/milvus-io/pymilvus/pull/2392
* feat: support recalls field in SearchResult by chasingegg in https://github.com/milvus-io/pymilvus/pull/2389
* feature: support milvus-client iterator by MrPresent-Han in https://github.com/milvus-io/pymilvus/pull/2465
* enhance: add use_database by czs007 in https://github.com/milvus-io/pymilvus/pull/2493

Enhancements
* extend unlimted offset for query iterator(2418) by MrPresent-Han in https://github.com/milvus-io/pymilvus/pull/2420
* enhance: alterindex & altercollection supports altering properties by JsDove in https://github.com/milvus-io/pymilvus/pull/2423
* enhance: rbac privilege group and grant v2 examples by shaoting-huang in https://github.com/milvus-io/pymilvus/pull/2426
* enhance: alterdatabase support delete property by JsDove in https://github.com/milvus-io/pymilvus/pull/2439
* enhance: add search_group_by example for milvus-client(2481) by MrPresent-Han in https://github.com/milvus-io/pymilvus/pull/2483
* fix: Support hybrid search with expression template by xiaocai2333 in https://github.com/milvus-io/pymilvus/pull/2490
* enhance: Add example for milvus client about expression template by xiaocai2333 in https://github.com/milvus-io/pymilvus/pull/2445
* enhance: createdatabase support properties by JsDove in https://github.com/milvus-io/pymilvus/pull/2450
* enhance: refine search_group_by_example(2481) by MrPresent-Han in https://github.com/milvus-io/pymilvus/pull/2485

Bug fixes
* fix: Unify logger and correct logging settings (2397) by XuanYang-cn in https://github.com/milvus-io/pymilvus/pull/2402
* fix: fix list aliases rpc call and grant/revoke v2 by shaoting-huang in https://github.com/milvus-io/pymilvus/pull/2404
* fix: Add is_clustering params for get_compaction_plans in orm by xiaocai2333 in https://github.com/milvus-io/pymilvus/pull/2429
* fix: fix describe database return type by JsDove in https://github.com/milvus-io/pymilvus/pull/2453
* fix: resolve conflicts and update connections.py by brcarry in https://github.com/milvus-io/pymilvus/pull/2462
* fix: add `authorization_interceptor` and `db_interceptor` to async channel by brcarry in https://github.com/milvus-io/pymilvus/pull/2472
* fix: ensure `create_index` and `load_collection` are fully completed by brcarry in https://github.com/milvus-io/pymilvus/pull/2477


**Full Changelog**: https://github.com/milvus-io/pymilvus/compare/v2.4.10...v2.4.11

2.4.10

What's Changed
* Corrected grammar and consistency in error messages (2289) by czs007 in https://github.com/milvus-io/pymilvus/pull/2330
* enhance: Update the template expression proto to improve transmission efficiency by xiaocai2333 in https://github.com/milvus-io/pymilvus/pull/2336
* Use filter_params for milvus client by xiaocai2333 in https://github.com/milvus-io/pymilvus/pull/2321
* fix insertto avoid describe collection on every insert call by zhengbuqian in https://github.com/milvus-io/pymilvus/pull/2348
* Remove unnecessary invoke of describe_collection() by yhmo in https://github.com/milvus-io/pymilvus/pull/2346
* fix: Add upper limit for grpcio to 1.67.1 by XuanYang-cn in https://github.com/milvus-io/pymilvus/pull/2360
* Multi cherry picks from master branch by XuanYang-cn in https://github.com/milvus-io/pymilvus/pull/2349
* fix: cannot pass consistency level for delete by XuanYang-cn in https://github.com/milvus-io/pymilvus/pull/2351
* Add default values to Pop to prevent exceptions by czs007 in https://github.com/milvus-io/pymilvus/pull/2374
* enhance: Enhance log messages when Connect with server failed by XuanYang-cn in https://github.com/milvus-io/pymilvus/pull/2378
* enhance: Prepare 2.4.10 release by XuanYang-cn in https://github.com/milvus-io/pymilvus/pull/2380


**Full Changelog**: https://github.com/milvus-io/pymilvus/compare/v2.4.9...v2.4.10

2.4.9

What's Changed
* Improve embedding retrieval performance by yhmo in https://github.com/milvus-io/pymilvus/pull/2290
* fix: Passing messages to code in ParamError (2304) by XuanYang-cn in https://github.com/milvus-io/pymilvus/pull/2305
* Supports filling elements through templates for expression by xiaocai2333 in https://github.com/milvus-io/pymilvus/pull/2308


**Full Changelog**: https://github.com/milvus-io/pymilvus/compare/v2.4.8...v2.4.9

2.4.8

What's Changed
* fix: upsert rows when set autoid==true fail(2286) by smellthemoon in https://github.com/milvus-io/pymilvus/pull/2287
* Upgrade the bulkWriter cloud API call from v1 to v2 by lentitude2tk in https://github.com/milvus-io/pymilvus/pull/2246
* enhance: Enable bulkwriter to support import v2 (2295) by bigsheeper in https://github.com/milvus-io/pymilvus/pull/2296


**Full Changelog**: https://github.com/milvus-io/pymilvus/compare/v2.4.7...v2.4.8

Page 2 of 13

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.