Skip to content

Commit 5fb5022

Browse files
authored
Prepare for v2.5.4 (#436)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent f84e3e1 commit 5fb5022

3 files changed

Lines changed: 23 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
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
@@ -13,7 +33,7 @@
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)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ MAKE_CLEAN="OFF"
2525
RUN_FORMAT="ON"
2626
RUN_CPPLINT="OFF"
2727
BUILD_COVERAGE="OFF"
28-
MILVUS_SDK_VERSION=${MILVUS_SDK_VERSION:-v2.5.3}
28+
MILVUS_SDK_VERSION=${MILVUS_SDK_VERSION:-v2.5.4}
2929
DO_INSTALL="OFF"
3030
CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX:-/usr/local}
3131
BUILD_SHARED_LIBS=${BUILD_SHARED_LIBS:-ON}

0 commit comments

Comments
 (0)