File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## milvus-sdk-cpp 2.5.4 (2026-01-20)
4+ ### Feature
5+ - Add CreateSimpleCollectionRequest for quickly creating a simple collection
6+ - Add Get() interface
7+ - Compatible with zilliz cloud instance, support connecting with uri
8+
9+ ### Improvement
10+ - Pass collection_name/description to CreateCollectionRequest instead of CollectionSchema
11+ - Pass num_shards to CreateCollectionRequest instead of CollectionSchema
12+ - DescribeIndex/DropIndex support both field_name and index_name
13+ - Add multi-vector methods for SearchRequest/SubSearchRequest
14+ - Refine the request classes to reduce duplicate source code
15+ - SearchResult can return recalls if enable_recall_calculation is true for zilliz cloud instance
16+
17+ ### Bug
18+ - AlterIndexProperties/DropIndexProperties cannot handle field_name, use index_name as input
19+ - Fix a bug that CreateIndexRequest sync mode is not correctly work to wait index
20+ - Fix a bug that SearchRequest.AddSparseVector() miss sparse vector when the size is unequal to the first vector
21+ - Fix a bug that search response might treat collection name as primary key name
22+
323## milvus-sdk-cpp 2.5.3 (2025-12-22)
424### Feature
525- Support CreateCollection with indexes
1333- GetLoadState returns loading progress percent
1434- Change default value of enable_dynamic_schema from false to true
1535
16- ## Bug
36+ ### Bug
1737- Fix a bug that DescribeIndex() always returns all indexes no matter field_name is specified or not
1838
1939## milvus-sdk-cpp 2.5.2 (2025-12-04)
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ The following collection shows Milvus versions and recommended milvus-cpp-sdk ve
1616| :-----:| :-----:|
1717| 2.3.x | 2.3(branch) |
1818| 2.4.x | v2.4.1 |
19- | 2.5.x | v2.5.3 |
19+ | 2.5.x | v2.5.4 |
2020
2121
2222## Installation
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ MAKE_CLEAN="OFF"
2525RUN_FORMAT=" ON"
2626RUN_CPPLINT=" OFF"
2727BUILD_COVERAGE=" OFF"
28- MILVUS_SDK_VERSION=${MILVUS_SDK_VERSION:- v2.5.3 }
28+ MILVUS_SDK_VERSION=${MILVUS_SDK_VERSION:- v2.5.4 }
2929DO_INSTALL=" OFF"
3030CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX:-/ usr/ local}
3131BUILD_SHARED_LIBS=${BUILD_SHARED_LIBS:- ON}
You can’t perform that action at this time.
0 commit comments