Skip to content

Commit 07143ec

Browse files
authored
Prepare for v2.6.5 (#1634)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent de4202d commit 07143ec

File tree

4 files changed

+41
-10
lines changed

4 files changed

+41
-10
lines changed

CHANGELOG.md

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

3+
## milvus-sdk-java 2.6.5 (2025-09-30)
4+
### Feature
5+
- Support Struct type field
6+
- Support Timestamptz type field
7+
- Support Goemetry type field
8+
- Add MilvusClientV2.updateReplicateConfiguration() for new CDC server
9+
10+
### Improvement
11+
- Add parameter "databaseName" for the following requests: GetCollectionStatsReq, GetLoadStateReq, HasCollectionReq, ListCollectionsReq, ReleaseCollectionReq, RenameCollectionReq, DropIndexReq, ListIndexesReq, CreatePartitionReq, DropPartitionReq, GetPartitinStatsReq, HasPartitionReq, ListPartitionsReq, LoadPartitionsReq, ReleasePartitionsReq, CompactReq, FlushReq, GetPErsistentSegmentInfoReq, GetQuerySegmentInfoReq,
12+
- Increase ClientPool default value of maxTotal from 50 to 1000, maxTotalPerKey from 10 to 50, maxIdlePerKey from 5 to 10
13+
14+
### Bug
15+
- Fix a bug of delete() that databaseName of DeleteReq doesn't work
16+
17+
## milvus-sdk-java 2.5.14 (2025-09-30)
18+
### Improvement
19+
- Add parameter "databaseName" for the following requests: GetCollectionStatsReq, GetLoadStateReq, HasCollectionReq, ListCollectionsReq, ReleaseCollectionReq, RenameCollectionReq, DropIndexReq, ListIndexesReq, CreatePartitionReq, DropPartitionReq, GetPartitinStatsReq, HasPartitionReq, ListPartitionsReq, LoadPartitionsReq, ReleasePartitionsReq, CompactReq, FlushReq, GetPErsistentSegmentInfoReq, GetQuerySegmentInfoReq,
20+
- Increase ClientPool default value of maxTotal from 50 to 1000, maxTotalPerKey from 10 to 50, maxIdlePerKey from 5 to 10
21+
22+
### Bug
23+
- Fix a bug of delete() that databaseName of DeleteReq doesn't work
24+
325
## milvus-sdk-java 2.6.4 (2025-09-17)
426
### Feature
527
- Support MINHASH_LSH/IVF_RABITQ index type
@@ -16,6 +38,15 @@
1638
- Fix a defect of MilvusClientV2.query() that always requires an empty filter expression
1739
- Fix a bug of QueryIterator that offset value cannot exceed 16384
1840

41+
## milvus-sdk-java 2.5.13 (2025-09-17)
42+
### Feature
43+
- Support passing request-id and unixmsec to server for MilvusClientV2
44+
- MilvusClientPool supports different ConnectConfig for different key
45+
46+
### Bug
47+
- Fix a defect of MilvusClientV2.query() that always requires an empty filter expression
48+
- Fix a bug of QueryIterator that offset value cannot exceed 16384
49+
1950
## milvus-sdk-java 2.6.3 (2025-08-20)
2051
### Improvement
2152
- Support stageManager & stageFileManager

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ The following table shows compatibilities between Milvus and Java SDK.
2121
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
2222
| 2.3.x | 2.3.11 |
2323
| 2.4.x | 2.4.11 |
24-
| 2.5.x | 2.5.12 |
25-
| 2.6.x | 2.6.4 |
24+
| 2.5.x | 2.5.14 |
25+
| 2.6.x | 2.6.5 |
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.4</version>
37+
<version>2.6.5</version>
3838
</dependency>
3939
```
4040

4141
- Gradle/Groovy
4242

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

4747
- Gradle/Kotlin
4848

4949
```kotlin
50-
implementation("io.milvus:milvus-sdk-java:2.6.4")
50+
implementation("io.milvus:milvus-sdk-java:2.6.5")
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.4</version>
62+
<version>2.6.5</version>
6363
</dependency>
6464
```
6565

6666
- Gradle/Groovy
6767

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

7272
- Gradle/Kotlin
7373

7474
```kotlin
75-
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.4")
75+
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.5")
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.4</revision>
45+
<revision>2.6.5</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.4</revision>
85+
<revision>2.6.5</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)