Skip to content

Commit b7ab345

Browse files
authored
Prepare for v2.5.3 (#1274)
Signed-off-by: yhmo <[email protected]>
1 parent 157ac2b commit b7ab345

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

CHANGELOG.md

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

3+
## milvus-sdk-java 2.5.3 (2024-12-31)
4+
### Feature
5+
- Support alterCollectionField interface for V2
6+
- Support refreshLoad/getPartitionStats interfaces for V2
7+
- Support dropIndexProperties/dropDatabaseProperties/dropCollectionProperties for V2
8+
- Support resource group interfaces for V2
9+
10+
### Improvement
11+
- Return recall rate in search result for V2
12+
- QueryIterator/SearchIterator support retry
13+
314
## milvus-sdk-java 2.5.2 (2024-12-11)
415
### Improvement
516
- Split milvus Java SDK to two packages to reduce dependency complexity

README.md

+8-8
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.8 |
24-
| 2.5.x | 2.5.2 |
23+
| 2.4.x | 2.4.10 |
24+
| 2.5.x | 2.5.3 |
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.2</version>
36+
<version>2.5.3</version>
3737
</dependency>
3838
```
3939

4040
- Gradle/Groovy
4141

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

4646
- Gradle/Kotlin
4747

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

6565
- Gradle/Groovy
6666

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

7171
- Gradle/Kotlin
7272

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

7777
### Examples

examples/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<groupId>io.milvus</groupId>
2727
<artifactId>milvus-sdk-java-examples</artifactId>
28-
<version>2.5.2</version>
28+
<version>2.5.3</version>
2929

3030
<build>
3131
<plugins>
@@ -64,12 +64,12 @@
6464
<dependency>
6565
<groupId>io.milvus</groupId>
6666
<artifactId>milvus-sdk-java</artifactId>
67-
<version>2.5.2</version>
67+
<version>2.5.3</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>io.milvus</groupId>
7171
<artifactId>milvus-sdk-java-bulkwriter</artifactId>
72-
<version>2.5.2</version>
72+
<version>2.5.3</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>org.tensorflow</groupId>

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.2</revision>
70+
<revision>2.5.3</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)