Skip to content

Commit b2c6d0a

Browse files
authored
Prepare for v2.5.7 (#1369)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent 34500d3 commit b2c6d0a

4 files changed

Lines changed: 35 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
# Changelog
22

3-
## milvus-sdk-java 2.5.6 (2025-3-20)
3+
## milvus-sdk-java 2.5.7 (2025-04-09)
4+
### Bug
5+
- Fix a compatible bug with milvus v2.5.8 that QueryResp.QueryResult doesn't return primary key
6+
- Fix a bug of nullable Array field that null value should be returned instead of an empty list
7+
8+
### Improvement
9+
- Add proxy setting for connection to milvus
10+
- Support offset parameter for hybridSearch() interface
11+
- Add options parameter for bulkImport() interface
12+
13+
## milvus-sdk-java 2.5.6 (2025-03-20)
414
### Improvement
515
- Optimize MilvusClientV2 search/query to support databaseName
616
- Add SearchIteratorV2 to get better performance and recall compare to old SearchIterator
717
- Add sync parameter for loadCollection/loadPartitions/createIndex
818

9-
## milvus-sdk-java 2.5.5 (2025-3-07)
19+
## milvus-sdk-java 2.5.5 (2025-03-07)
1020
### Feature
1121
- Support HNSW_PQ/HNSW_SQ/HNSW_PRQ
1222
- Support describeReplicas() interface
@@ -17,7 +27,7 @@
1727
- LoadPartitions support replicas
1828
- Optimize BulkWriter to reduce memory usage
1929

20-
## milvus-sdk-java 2.5.4 (2025-1-09)
30+
## milvus-sdk-java 2.5.4 (2025-01-09)
2131
### Improvement
2232
- HybridSearch supports full text search
2333

@@ -59,6 +69,18 @@
5969
- QueryIterator/SearchIterator supports mvcc
6070
- ClientPool throws exception if fail to create/get clients
6171

72+
## milvus-sdk-java 2.4.11 (2025-04-09)
73+
### Bug
74+
- Fix a bug that consistency level is missed for createCollection()
75+
- Return shards_num for describeCollection()
76+
77+
## milvus-sdk-java 2.4.10 (2024-12-31)
78+
### Feature
79+
- Support alterCollectionField interface for V2
80+
- Support refreshLoad/getPartitionStats interfaces for V2
81+
- Support dropIndexProperties/dropDatabaseProperties/dropCollectionProperties for V2
82+
- Support resource group interfaces for V2
83+
-
6284
## milvus-sdk-java 2.4.9 (2024-11-26)
6385

6486
### Feature

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The following table shows compatibilities between Milvus and Java SDK.
2020
| 2.2.0 ~ 2.2.8 | 2.2.0 ~ 2.2.5 |
2121
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
2222
| 2.3.x | 2.3.11 |
23-
| 2.4.x | 2.4.10 |
24-
| 2.5.x | 2.5.6 |
23+
| 2.4.x | 2.4.11 |
24+
| 2.5.x | 2.5.7 |
2525

2626
### Install Java SDK
2727

@@ -33,20 +33,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
3333
<dependency>
3434
<groupId>io.milvus</groupId>
3535
<artifactId>milvus-sdk-java</artifactId>
36-
<version>2.5.6</version>
36+
<version>2.5.7</version>
3737
</dependency>
3838
```
3939

4040
- Gradle/Groovy
4141

4242
```groovy
43-
implementation 'io.milvus:milvus-sdk-java:2.5.6'
43+
implementation 'io.milvus:milvus-sdk-java:2.5.7'
4444
```
4545

4646
- Gradle/Kotlin
4747

4848
```kotlin
49-
implementation("io.milvus:milvus-sdk-java:2.5.6")
49+
implementation("io.milvus:milvus-sdk-java:2.5.7")
5050
```
5151

5252
From v2.5.2, milvus Java SDK is split into two packages: milvus-sdk-java and milvus-sdk-java-bulkwriter, because BulkWriter requires quite a lot of dependencies. If you don't need BulkWriter tool, you can ignore the milvus-sdk-java-bulkwriter package.
@@ -58,20 +58,20 @@ To use BulkWriter, import milvus-sdk-java-bulkwriter to your project.
5858
<dependency>
5959
<groupId>io.milvus</groupId>
6060
<artifactId>milvus-sdk-java-bulkwriter</artifactId>
61-
<version>2.5.6</version>
61+
<version>2.5.7</version>
6262
</dependency>
6363
```
6464

6565
- Gradle/Groovy
6666

6767
```groovy
68-
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.6'
68+
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.7'
6969
```
7070

7171
- Gradle/Kotlin
7272

7373
```kotlin
74-
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.6")
74+
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.7")
7575
```
7676

7777
### Examples

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</build>
4343

4444
<properties>
45-
<revision>2.5.6</revision>
45+
<revision>2.5.7</revision>
4646
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4747
</properties>
4848

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
</distributionManagement>
6868

6969
<properties>
70-
<revision>2.5.6</revision>
70+
<revision>2.5.7</revision>
7171
<maven.compiler.source>8</maven.compiler.source>
7272
<maven.compiler.target>8</maven.compiler.target>
7373
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)