Skip to content

Commit 9b90f70

Browse files
authored
Prepare for v3.0.3 (#1931)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent c50efee commit 9b90f70

923 files changed

Lines changed: 47575 additions & 3319 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

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

3+
## milvus-sdk-java 3.0.3 (2026-06-29)
4+
### Feature
5+
- Support AddFunctionField/DropCollectionField/DropFunctionField interfaces
6+
- BulkWriter support binary/float16/int8 vectors in Struct field
7+
8+
### Improvement
9+
- Improve volume upload interaction
10+
- Align getCollectionStats/getPartitionStats with PyMilvus
11+
- Align search response with PyMilvus
12+
13+
### Bug
14+
- Fix a bug for LexicalHighlighter
15+
16+
## milvus-sdk-java 2.6.22 (2026-06-26)
17+
### Improvement
18+
- Improve volume upload interaction
19+
- Align describeUser/describeRole with PyMilvus
20+
- Align getCollectionStats/getPartitionStats with PyMilvus
21+
- Align search response with PyMilvus
22+
23+
### Bug
24+
- Fix a bug for LexicalHighlighter
25+
326
## milvus-sdk-java 3.0.2 (2026-06-18)
427
### Feature
528
- Support dumpMessages interface for MilvusClientV2

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ The following table shows compatibilities between Milvus and Java SDK.
2222
| 2.3.x | 2.3.11 |
2323
| 2.4.x | 2.4.11 |
2424
| 2.5.x | 2.5.15 |
25-
| 2.6.x | 2.6.19 |
26-
| 3.0.x | 3.0.2 |
25+
| 2.6.x | 2.6.22 |
26+
| 3.0.x | 3.0.3 |
2727

2828
### Install Java SDK
2929

@@ -35,20 +35,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
3535
<dependency>
3636
<groupId>io.milvus</groupId>
3737
<artifactId>milvus-sdk-java</artifactId>
38-
<version>3.0.2</version>
38+
<version>3.0.3</version>
3939
</dependency>
4040
```
4141

4242
- Gradle/Groovy
4343

4444
```groovy
45-
implementation 'io.milvus:milvus-sdk-java:3.0.2'
45+
implementation 'io.milvus:milvus-sdk-java:3.0.3'
4646
```
4747

4848
- Gradle/Kotlin
4949

5050
```kotlin
51-
implementation("io.milvus:milvus-sdk-java:3.0.2")
51+
implementation("io.milvus:milvus-sdk-java:3.0.3")
5252
```
5353

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

6767
- Gradle/Groovy
6868

6969
```groovy
70-
implementation 'io.milvus:milvus-sdk-java-bulkwriter:3.0.2'
70+
implementation 'io.milvus:milvus-sdk-java-bulkwriter:3.0.3'
7171
```
7272

7373
- Gradle/Kotlin
7474

7575
```kotlin
76-
implementation("io.milvus:milvus-sdk-java-bulkwriter:3.0.2")
76+
implementation("io.milvus:milvus-sdk-java-bulkwriter:3.0.3")
7777
```
7878

7979
### Examples

doc/allclasses-index.html

Lines changed: 1069 additions & 648 deletions
Large diffs are not rendered by default.

doc/allclasses.html

Lines changed: 106 additions & 2 deletions
Large diffs are not rendered by default.

doc/allpackages-index.html

Lines changed: 67 additions & 51 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)