Skip to content

Commit 9e1b746

Browse files
authored
Prepare for v2.5.6 (#1340)
Signed-off-by: yhmo <[email protected]>
1 parent 9244246 commit 9e1b746

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## milvus-sdk-java 2.5.6 (2025-3-20)
4+
### Improvement
5+
- Optimize MilvusClientV2 search/query to support databaseName
6+
- Add SearchIteratorV2 to get better performance and recall compare to old SearchIterator
7+
- Add sync parameter for loadCollection/loadPartitions/createIndex
8+
39
## milvus-sdk-java 2.5.5 (2025-3-07)
410
### Feature
511
- Support HNSW_PQ/HNSW_SQ/HNSW_PRQ

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following table shows compatibilities between Milvus and Java SDK.
2121
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
2222
| 2.3.x | 2.3.11 |
2323
| 2.4.x | 2.4.10 |
24-
| 2.5.x | 2.5.5 |
24+
| 2.5.x | 2.5.6 |
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.5</version>
36+
<version>2.5.6</version>
3737
</dependency>
3838
```
3939

4040
- Gradle/Groovy
4141

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

4646
- Gradle/Kotlin
4747

4848
```kotlin
49-
implementation("io.milvus:milvus-sdk-java:2.5.5")
49+
implementation("io.milvus:milvus-sdk-java:2.5.6")
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.5</version>
61+
<version>2.5.6</version>
6262
</dependency>
6363
```
6464

6565
- Gradle/Groovy
6666

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

7171
- Gradle/Kotlin
7272

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

7777
### Examples

examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</build>
4343

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

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
</distributionManagement>
6868

6969
<properties>
70-
<revision>2.5.5</revision>
70+
<revision>2.5.6</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)