Skip to content

Commit 3b8a911

Browse files
authored
Prepare for v2.6.14 (#1760)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent 293b377 commit 3b8a911

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed

CHANGELOG.md

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

3+
## milvus-sdk-java 2.6.14 (2026-02-12)
4+
### Feature
5+
- Support AISAQ index type
6+
- Support element_filter for struct field
7+
8+
### Improvement
9+
- Change keepAliveTimeMs from 55s to 10s, keepAliveTimeoutMs from 20s to 5s, and enable keepAliveWithoutCalls by default in both ConnectParam (V1) and ConnectConfig (V2).
10+
11+
### Bug
12+
- Fix a bug in ClientPool where the RPC channel was not properly closed
13+
314
## milvus-sdk-java 2.6.13 (2026-01-21)
415
### Feature
516
- Support search by id

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ 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.13 |
25+
| 2.6.x | 2.6.14 |
2626

2727
### Install Java SDK
2828

@@ -34,20 +34,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
3434
<dependency>
3535
<groupId>io.milvus</groupId>
3636
<artifactId>milvus-sdk-java</artifactId>
37-
<version>2.6.13</version>
37+
<version>2.6.14</version>
3838
</dependency>
3939
```
4040

4141
- Gradle/Groovy
4242

4343
```groovy
44-
implementation 'io.milvus:milvus-sdk-java:2.6.13'
44+
implementation 'io.milvus:milvus-sdk-java:2.6.14'
4545
```
4646

4747
- Gradle/Kotlin
4848

4949
```kotlin
50-
implementation("io.milvus:milvus-sdk-java:2.6.13")
50+
implementation("io.milvus:milvus-sdk-java:2.6.14")
5151
```
5252

5353
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.
@@ -59,20 +59,20 @@ To use BulkWriter, import milvus-sdk-java-bulkwriter to your project.
5959
<dependency>
6060
<groupId>io.milvus</groupId>
6161
<artifactId>milvus-sdk-java-bulkwriter</artifactId>
62-
<version>2.6.13</version>
62+
<version>2.6.14</version>
6363
</dependency>
6464
```
6565

6666
- Gradle/Groovy
6767

6868
```groovy
69-
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.13'
69+
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.14'
7070
```
7171

7272
- Gradle/Kotlin
7373

7474
```kotlin
75-
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.13")
75+
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.14")
7676
```
7777

7878
### 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.6.13</revision>
45+
<revision>2.6.14</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
@@ -82,7 +82,7 @@
8282
</repositories>
8383

8484
<properties>
85-
<revision>2.6.13</revision>
85+
<revision>2.6.14</revision>
8686
<maven.compiler.source>8</maven.compiler.source>
8787
<maven.compiler.target>8</maven.compiler.target>
8888
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)