Skip to content

Commit 2cec3f0

Browse files
authored
Prepare for v2.5.9 (#1401)
Signed-off-by: yhmo <[email protected]>
1 parent 8796b82 commit 2cec3f0

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

CHANGELOG.md

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

3+
## milvus-sdk-java 2.5.9 (2025-05-09)
4+
### Feature
5+
- Support runAnalyzer() interface
6+
7+
### Bug
8+
- Fix a bug that index property was not correctly passed
9+
- Fix an exception to LocalBulkWriter in Java 24 env
10+
11+
### Improvement
12+
- Add dbName for DescribeIndexReq
13+
- Bump protobuf/protoc version from 3.24.0 to 3.25.5
14+
- Bump Gson version from 2.10.0 to 2.13.1
15+
- describeCollection returns collection createUtcTime
16+
- Add a static method CreateSchema() to replace non-static method createSchema() in MilvusClientV2
17+
318
## milvus-sdk-java 2.5.8 (2025-04-25)
419
### Feature
520
- Support getPersistentSegmentInfo/getQuerySegmentInfo interfaces for V2

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.8 |
24+
| 2.5.x | 2.5.9 |
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.8</version>
36+
<version>2.5.9</version>
3737
</dependency>
3838
```
3939

4040
- Gradle/Groovy
4141

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

4646
- Gradle/Kotlin
4747

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

6565
- Gradle/Groovy
6666

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

7171
- Gradle/Kotlin
7272

7373
```kotlin
74-
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.8")
74+
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.9")
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.8</revision>
45+
<revision>2.5.9</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
@@ -68,7 +68,7 @@
6868
</distributionManagement>
6969

7070
<properties>
71-
<revision>2.5.8</revision>
71+
<revision>2.5.9</revision>
7272
<maven.compiler.source>8</maven.compiler.source>
7373
<maven.compiler.target>8</maven.compiler.target>
7474
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)