diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b31c139b..db2ecd7ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## milvus-sdk-java 2.6.1 (2025-07-14) +### Bug +- Fix a bug of SearchResultsWrapper.getRowRecords() that returns wrong data for output fields + +### Improvement +- Deprecate topK for search/hybridSearch/iterator, replaced with limit +- Refine collection schema cache +- Avoid exception when search result is empty +- BulkWriter supports Int8Vector + +## milvus-sdk-java 2.5.11 (2025-07-14) +### Bug +- Fix a bug of SearchResultsWrapper.getRowRecords() that returns wrong data for output fields +- Fix a bug of flush that timestamp is not correctly passed + +### Improvement +- Deprecate topK for search/hybridSearch/iterator, replaced with limit +- Refine collection schema cache +- Avoid exception when search result is empty +- Support jsonPath index +- Support run analyzer by collection and Field + ## milvus-sdk-java 2.6.0 (2025-06-13) ### Feature - Support jsonPath index @@ -9,7 +31,7 @@ - Support Int8Vector ### Bug -- Fix a bug of flush() +- Fix a bug of flush that timestamp is not correctly passed ## milvus-sdk-java 2.5.10 (2025-06-05) ### Feature diff --git a/README.md b/README.md index f87d99543..0a7161cf2 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.10 | -| 2.6.x | 2.6.0 | +| 2.5.x | 2.5.11 | +| 2.6.x | 2.6.1 | ### 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.0 + 2.6.1 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java:2.6.0' + implementation 'io.milvus:milvus-sdk-java:2.6.1' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java:2.6.0") + implementation("io.milvus:milvus-sdk-java:2.6.1") ``` 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.0 + 2.6.1 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.0' + implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.1' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.0") + implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.1") ``` ### Examples diff --git a/docker-compose.yml b/docker-compose.yml index baaede566..ab4ede9be 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,7 +32,7 @@ services: standalone: container_name: milvus-javasdk-test-standalone - image: milvusdb/milvus:master-20250706-d0976450 + image: milvusdb/milvus:v2.6.0-rc1 command: ["milvus", "run", "standalone"] environment: ETCD_ENDPOINTS: etcd:2379 @@ -77,7 +77,7 @@ services: standaloneslave: container_name: milvus-javasdk-test-slave-standalone - image: milvusdb/milvus:master-20250706-d0976450 + image: milvusdb/milvus:v2.6.0-rc1 command: ["milvus", "run", "standalone"] environment: ETCD_ENDPOINTS: etcdslave:2379 diff --git a/examples/pom.xml b/examples/pom.xml index 4f74ab123..f426c885b 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -42,7 +42,7 @@ - 2.6.0 + 2.6.1 UTF-8 diff --git a/pom.xml b/pom.xml index d0e77ef26..131ee8f4c 100644 --- a/pom.xml +++ b/pom.xml @@ -68,7 +68,7 @@ - 2.6.0 + 2.6.1 8 8 UTF-8 diff --git a/sdk-core/src/test/java/io/milvus/TestUtils.java b/sdk-core/src/test/java/io/milvus/TestUtils.java index deb56fcf9..401e278d9 100644 --- a/sdk-core/src/test/java/io/milvus/TestUtils.java +++ b/sdk-core/src/test/java/io/milvus/TestUtils.java @@ -11,7 +11,7 @@ public class TestUtils { private int dimension = 256; private static final Random RANDOM = new Random(); - public static final String MilvusDockerImageID = "milvusdb/milvus:master-20250706-d0976450"; + public static final String MilvusDockerImageID = "milvusdb/milvus:v2.6.0-rc1"; public TestUtils(int dimension) { this.dimension = dimension;