From a948f91014d2f7e203a3fba83890b11f0a009ac6 Mon Sep 17 00:00:00 2001 From: yhmo Date: Mon, 1 Dec 2025 15:25:25 +0800 Subject: [PATCH 1/2] Prepare for v2.6.10 Signed-off-by: yhmo --- CHANGELOG.md | 11 +++++++++++ README.md | 16 ++++++++-------- examples/pom.xml | 2 +- pom.xml | 2 +- 4 files changed, 21 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e4acc31c..af2a0cb26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## milvus-sdk-java 2.6.10 (2025-12-01) +### Breaking Change +- Rename "Stage" to "Volume" for BulkWriter + +### Bug +- Fix a bug that FunctionType.TextEmbedding is not correctly converted for describeCollection() + +## milvus-sdk-java 2.5.15 (2025-12-01) +### Breaking Change +- Rename "Stage" to "Volume" for BulkWriter + ## milvus-sdk-java 2.6.9 (2025-11-28) ### Improvement - Add timezone parameter for query/search/QueryIterator/SearchIterator diff --git a/README.md b/README.md index 7e8094e36..b5d766ead 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.14 | -| 2.6.x | 2.6.9 | +| 2.5.x | 2.5.15 | +| 2.6.x | 2.6.10 | ### 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.9 + 2.6.10 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java:2.6.9' + implementation 'io.milvus:milvus-sdk-java:2.6.10' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java:2.6.9") + implementation("io.milvus:milvus-sdk-java:2.6.10") ``` 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.9 + 2.6.10 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.9' + implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.10' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.9") + implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.10") ``` ### Examples diff --git a/examples/pom.xml b/examples/pom.xml index cc6d958c0..fc8ab8bac 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -42,7 +42,7 @@ - 2.6.9 + 2.6.10 UTF-8 diff --git a/pom.xml b/pom.xml index 95061da86..740549743 100644 --- a/pom.xml +++ b/pom.xml @@ -82,7 +82,7 @@ - 2.6.9 + 2.6.10 8 8 UTF-8 From 6f0e3cab7159c7a1b38bba295315a581083a3927 Mon Sep 17 00:00:00 2001 From: yhmo Date: Mon, 1 Dec 2025 15:27:07 +0800 Subject: [PATCH 2/2] Prepare for v2.6.10 Signed-off-by: yhmo --- sdk-core/src/main/milvus-proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk-core/src/main/milvus-proto b/sdk-core/src/main/milvus-proto index f0057758f..99dbd46f1 160000 --- a/sdk-core/src/main/milvus-proto +++ b/sdk-core/src/main/milvus-proto @@ -1 +1 @@ -Subproject commit f0057758f33685962ac3668dfd5ccadacfadb4c3 +Subproject commit 99dbd46f10b7f11907a2a967185c8178292d3239