diff --git a/CHANGELOG.md b/CHANGELOG.md index 0238cff88..12747ec6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## milvus-sdk-java 2.6.8 (2025-11-21) +### Improvement +- Adding exception handling on connection for MilvusClientV2 +- BulkWriter supports Struct/Geometry field +- Add db_name parameter for listImportJobs() + +### Bug +- Fox a OutOfBound bug for SearchIteratorV2 + ## milvus-sdk-java 2.6.7 (2025-11-03) ### Improvement - Remove Lombok dependency diff --git a/README.md b/README.md index 887cd4da4..fc88acc45 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The following table shows compatibilities between Milvus and Java SDK. | 2.3.x | 2.3.11 | | 2.4.x | 2.4.11 | | 2.5.x | 2.5.14 | -| 2.6.x | 2.6.7 | +| 2.6.x | 2.6.8 | ### 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.7 + 2.6.8 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java:2.6.7' + implementation 'io.milvus:milvus-sdk-java:2.6.8' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java:2.6.7") + implementation("io.milvus:milvus-sdk-java:2.6.8") ``` 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.7 + 2.6.8 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.7' + implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.8' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.7") + implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.8") ``` ### Examples diff --git a/examples/pom.xml b/examples/pom.xml index cbfe65916..0066574b4 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -42,7 +42,7 @@ - 2.6.7 + 2.6.8 UTF-8 diff --git a/pom.xml b/pom.xml index e10a413b9..4b668192e 100644 --- a/pom.xml +++ b/pom.xml @@ -82,7 +82,7 @@ - 2.6.7 + 2.6.8 8 8 UTF-8