Skip to content

Commit 53ebd40

Browse files
authored
Prepare for v3.0.6 (#1998)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent 6e56d3f commit 53ebd40

4 files changed

Lines changed: 24 additions & 9 deletions

File tree

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 3.0.6 (2026-08-05)
4+
### Feature
5+
- Support the Text data type in DML, result decoding, and BulkWriter
6+
- Add the FMINDEX scalar index type
7+
- Support client-side bloom filter blobs for bloom_match filters
8+
9+
### Improvement
10+
- Refine schema and session-timestamp caching across clients, iterators, collection DDL, and global-cluster failover
11+
- Redact authentication secrets from diagnostic output
12+
13+
### Bug
14+
- Release completed iterator cache state to avoid memory retention
15+
- Refresh cached schemas when the allow_insert_auto_id collection property changes
16+
- Use array max capacity when converting V2 iterator field metadata
17+
318
## milvus-sdk-java 3.0.5 (2026-07-24)
419
### Feature
520
- Support adding scalar, struct, and function fields to existing Milvus 3.0 collections

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The following table shows compatibilities between Milvus and Java SDK.
2323
| 2.4.x | 2.4.11 |
2424
| 2.5.x | 2.5.15 |
2525
| 2.6.x | 2.6.22 |
26-
| 3.0.x | 3.0.5 |
26+
| 3.0.x | 3.0.6 |
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.5</version>
38+
<version>3.0.6</version>
3939
</dependency>
4040
```
4141

4242
- Gradle/Groovy
4343

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

4848
- Gradle/Kotlin
4949

5050
```kotlin
51-
implementation("io.milvus:milvus-sdk-java:3.0.5")
51+
implementation("io.milvus:milvus-sdk-java:3.0.6")
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.5</version>
63+
<version>3.0.6</version>
6464
</dependency>
6565
```
6666

6767
- Gradle/Groovy
6868

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

7373
- Gradle/Kotlin
7474

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

7979
### 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>3.0.5</revision>
45+
<revision>3.0.6</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
@@ -129,7 +129,7 @@
129129
</dependencyManagement>
130130

131131
<properties>
132-
<revision>3.0.5</revision>
132+
<revision>3.0.6</revision>
133133
<maven.compiler.source>8</maven.compiler.source>
134134
<maven.compiler.target>8</maven.compiler.target>
135135
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)