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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## milvus-sdk-java 3.0.3 (2026-06-29)
### Feature
- Support AddFunctionField/DropCollectionField/DropFunctionField interfaces
- BulkWriter support binary/float16/int8 vectors in Struct field

### Improvement
- Improve volume upload interaction
- Align getCollectionStats/getPartitionStats with PyMilvus
- Align search response with PyMilvus

### Bug
- Fix a bug for LexicalHighlighter

## milvus-sdk-java 2.6.22 (2026-06-26)
### Improvement
- Improve volume upload interaction
- Align describeUser/describeRole with PyMilvus
- Align getCollectionStats/getPartitionStats with PyMilvus
- Align search response with PyMilvus

### Bug
- Fix a bug for LexicalHighlighter

## milvus-sdk-java 3.0.2 (2026-06-18)
### Feature
- Support dumpMessages interface for MilvusClientV2
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ The following table shows compatibilities between Milvus and Java SDK.
| 2.3.x | 2.3.11 |
| 2.4.x | 2.4.11 |
| 2.5.x | 2.5.15 |
| 2.6.x | 2.6.19 |
| 3.0.x | 3.0.2 |
| 2.6.x | 2.6.22 |
| 3.0.x | 3.0.3 |

### Install Java SDK

Expand All @@ -35,20 +35,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>3.0.2</version>
<version>3.0.3</version>
</dependency>
```

- Gradle/Groovy

```groovy
implementation 'io.milvus:milvus-sdk-java:3.0.2'
implementation 'io.milvus:milvus-sdk-java:3.0.3'
```

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java:3.0.2")
implementation("io.milvus:milvus-sdk-java:3.0.3")
```

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 @@ -60,20 +60,20 @@ To use BulkWriter, import milvus-sdk-java-bulkwriter to your project.
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java-bulkwriter</artifactId>
<version>3.0.2</version>
<version>3.0.3</version>
</dependency>
```

- Gradle/Groovy

```groovy
implementation 'io.milvus:milvus-sdk-java-bulkwriter:3.0.2'
implementation 'io.milvus:milvus-sdk-java-bulkwriter:3.0.3'
```

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java-bulkwriter:3.0.2")
implementation("io.milvus:milvus-sdk-java-bulkwriter:3.0.3")
```

### Examples
Expand Down
1,717 changes: 1,069 additions & 648 deletions doc/allclasses-index.html

Large diffs are not rendered by default.

108 changes: 106 additions & 2 deletions doc/allclasses.html

Large diffs are not rendered by default.

118 changes: 67 additions & 51 deletions doc/allpackages-index.html

Large diffs are not rendered by default.

Loading
Loading