Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## milvus-sdk-java 2.5.9 (2025-05-09)
### Feature
- Support runAnalyzer() interface

### Bug
- Fix a bug that index property was not correctly passed
- Fix an exception to LocalBulkWriter in Java 24 env

### Improvement
- Add dbName for DescribeIndexReq
- Bump protobuf/protoc version from 3.24.0 to 3.25.5
- Bump Gson version from 2.10.0 to 2.13.1
- describeCollection returns collection createUtcTime
- Add a static method CreateSchema() to replace non-static method createSchema() in MilvusClientV2

## milvus-sdk-java 2.5.8 (2025-04-25)
### Feature
- Support getPersistentSegmentInfo/getQuerySegmentInfo interfaces for V2
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The following table shows compatibilities between Milvus and Java SDK.
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
| 2.3.x | 2.3.11 |
| 2.4.x | 2.4.11 |
| 2.5.x | 2.5.8 |
| 2.5.x | 2.5.9 |

### Install Java SDK

Expand All @@ -33,20 +33,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.5.8</version>
<version>2.5.9</version>
</dependency>
```

- Gradle/Groovy

```groovy
implementation 'io.milvus:milvus-sdk-java:2.5.8'
implementation 'io.milvus:milvus-sdk-java:2.5.9'
```

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java:2.5.8")
implementation("io.milvus:milvus-sdk-java:2.5.9")
```

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.
Expand All @@ -58,20 +58,20 @@ To use BulkWriter, import milvus-sdk-java-bulkwriter to your project.
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java-bulkwriter</artifactId>
<version>2.5.8</version>
<version>2.5.9</version>
</dependency>
```

- Gradle/Groovy

```groovy
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.8'
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.9'
```

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.8")
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.9")
```

### Examples
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</build>

<properties>
<revision>2.5.8</revision>
<revision>2.5.9</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</distributionManagement>

<properties>
<revision>2.5.8</revision>
<revision>2.5.9</revision>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Loading