Skip to content

Commit 609693c

Browse files
authored
Prepare for v2.6.1 (#438)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent bcfc5e9 commit 609693c

3 files changed

Lines changed: 46 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
# Changelog
22

3+
## milvus-sdk-cpp 2.6.1 (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+
- Support Multi-language Analyzers
9+
- Support partial update
10+
11+
### Improvement
12+
- Pass collection_name/description to CreateCollectionRequest instead of CollectionSchema
13+
- Pass num_shards to CreateCollectionRequest instead of CollectionSchema
14+
- DescribeIndex/DropIndex support both field_name and index_name
15+
- Add multi-vector methods for SearchRequest/SubSearchRequest
16+
- Refine the request classes to reduce duplicate source code
17+
- SearchResult can return recalls if enable_recall_calculation is true for zilliz cloud instance
18+
- Add a method AddTypeParam() for FieldSchema class
19+
20+
### Bug
21+
- AlterIndexProperties/DropIndexProperties cannot handle field_name, use index_name as input
22+
- Fix a bug that CreateIndexRequest sync mode is not correctly work to wait index
23+
- Fix a bug that SearchRequest.AddSparseVector() miss sparse vector when the size is unequal to the first vector
24+
- Fix a bug that search response might treat collection name as primary key name
25+
26+
## milvus-sdk-cpp 2.5.4 (2026-01-20)
27+
### Feature
28+
- Add CreateSimpleCollectionRequest for quickly creating a simple collection
29+
- Add Get() interface
30+
- Compatible with zilliz cloud instance, support connecting with uri
31+
32+
### Improvement
33+
- Pass collection_name/description to CreateCollectionRequest instead of CollectionSchema
34+
- Pass num_shards to CreateCollectionRequest instead of CollectionSchema
35+
- DescribeIndex/DropIndex support both field_name and index_name
36+
- Add multi-vector methods for SearchRequest/SubSearchRequest
37+
- Refine the request classes to reduce duplicate source code
38+
- SearchResult can return recalls if enable_recall_calculation is true for zilliz cloud instance
39+
40+
### Bug
41+
- AlterIndexProperties/DropIndexProperties cannot handle field_name, use index_name as input
42+
- Fix a bug that CreateIndexRequest sync mode is not correctly work to wait index
43+
- Fix a bug that SearchRequest.AddSparseVector() miss sparse vector when the size is unequal to the first vector
44+
- Fix a bug that search response might treat collection name as primary key name
45+
346
## milvus-sdk-cpp 2.6.0 (2025-12-22)
447
### Feature
548
- Support Int8Vector field

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ 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 |
20-
| 2.6.x | v2.6.0 |
19+
| 2.5.x | v2.5.4 |
20+
| 2.6.x | v2.6.1 |
2121

2222

2323
## 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.6.0}
28+
MILVUS_SDK_VERSION=${MILVUS_SDK_VERSION:-v2.6.1}
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)