Skip to content

Commit af53b61

Browse files
authored
Prepare for v2.5.13 (#1602)
Signed-off-by: yhmo <[email protected]>
1 parent 32f6df0 commit af53b61

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

CHANGELOG.md

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

3+
## milvus-sdk-java 2.5.13 (2025-09-17)
4+
### Feature
5+
- Support passing request-id and unixmsec to server for MilvusClientV2
6+
- MilvusClientPool supports different ConnectConfig for different key
7+
8+
### Bug
9+
- Fix a defect of MilvusClientV2.query() that always requires an empty filter expression
10+
- Fix a bug of QueryIterator that offset value cannot exceed 16384
11+
312
## milvus-sdk-java 2.5.12 (2025-08-14)
413
### Improvement
514
- Alias interface support database

README.md

Lines changed: 7 additions & 7 deletions
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.11 |
24-
| 2.5.x | 2.5.12 |
24+
| 2.5.x | 2.5.13 |
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.12</version>
36+
<version>2.5.13</version>
3737
</dependency>
3838
```
3939

4040
- Gradle/Groovy
4141

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

4646
- Gradle/Kotlin
4747

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

6565
- Gradle/Groovy
6666

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

7171
- Gradle/Kotlin
7272

7373
```kotlin
74-
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.12")
74+
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.13")
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.12</revision>
45+
<revision>2.5.13</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
@@ -82,7 +82,7 @@
8282
</repositories>
8383

8484
<properties>
85-
<revision>2.5.12</revision>
85+
<revision>2.5.13</revision>
8686
<maven.compiler.source>8</maven.compiler.source>
8787
<maven.compiler.target>8</maven.compiler.target>
8888
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)