diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0bc943803..d09f875bb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,27 @@
# Changelog
+## milvus-sdk-java 2.6.5 (2025-09-30)
+### Feature
+- Support Struct type field
+- Support Timestamptz type field
+- Support Goemetry type field
+- Add MilvusClientV2.updateReplicateConfiguration() for new CDC server
+
+### Improvement
+- 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,
+- Increase ClientPool default value of maxTotal from 50 to 1000, maxTotalPerKey from 10 to 50, maxIdlePerKey from 5 to 10
+
+### Bug
+- Fix a bug of delete() that databaseName of DeleteReq doesn't work
+
+## milvus-sdk-java 2.5.14 (2025-09-30)
+### Improvement
+- 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,
+- Increase ClientPool default value of maxTotal from 50 to 1000, maxTotalPerKey from 10 to 50, maxIdlePerKey from 5 to 10
+
+### Bug
+- Fix a bug of delete() that databaseName of DeleteReq doesn't work
+
## milvus-sdk-java 2.6.4 (2025-09-17)
### Feature
- Support MINHASH_LSH/IVF_RABITQ index type
@@ -16,6 +38,15 @@
- Fix a defect of MilvusClientV2.query() that always requires an empty filter expression
- Fix a bug of QueryIterator that offset value cannot exceed 16384
+## milvus-sdk-java 2.5.13 (2025-09-17)
+### Feature
+- Support passing request-id and unixmsec to server for MilvusClientV2
+- MilvusClientPool supports different ConnectConfig for different key
+
+### Bug
+- Fix a defect of MilvusClientV2.query() that always requires an empty filter expression
+- Fix a bug of QueryIterator that offset value cannot exceed 16384
+
## milvus-sdk-java 2.6.3 (2025-08-20)
### Improvement
- Support stageManager & stageFileManager
diff --git a/README.md b/README.md
index 79eca681c..21e3d4f94 100644
--- a/README.md
+++ b/README.md
@@ -21,8 +21,8 @@ The following table shows compatibilities between Milvus and Java SDK.
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
| 2.3.x | 2.3.11 |
| 2.4.x | 2.4.11 |
-| 2.5.x | 2.5.12 |
-| 2.6.x | 2.6.4 |
+| 2.5.x | 2.5.14 |
+| 2.6.x | 2.6.5 |
### Install Java SDK
@@ -34,20 +34,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
io.milvus
milvus-sdk-java
- 2.6.4
+ 2.6.5
```
- Gradle/Groovy
```groovy
- implementation 'io.milvus:milvus-sdk-java:2.6.4'
+ implementation 'io.milvus:milvus-sdk-java:2.6.5'
```
- Gradle/Kotlin
```kotlin
- implementation("io.milvus:milvus-sdk-java:2.6.4")
+ implementation("io.milvus:milvus-sdk-java:2.6.5")
```
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.
io.milvus
milvus-sdk-java-bulkwriter
- 2.6.4
+ 2.6.5
```
- Gradle/Groovy
```groovy
- implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.4'
+ implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.5'
```
- Gradle/Kotlin
```kotlin
- implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.4")
+ implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.5")
```
### Examples
diff --git a/examples/pom.xml b/examples/pom.xml
index 484fd0da0..126659f52 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -42,7 +42,7 @@
- 2.6.4
+ 2.6.5
UTF-8
diff --git a/pom.xml b/pom.xml
index 9f9688d72..bb1fefde3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -82,7 +82,7 @@
- 2.6.4
+ 2.6.5
8
8
UTF-8