diff --git a/CHANGELOG.md b/CHANGELOG.md index c920c3a99..1d720b5e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 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.5.10 (2025-06-05) ### Feature - Support dropCollectionFieldProperties interface diff --git a/README.md b/README.md index cc46ba1bf..a8afe9b2a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ 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.5.x | 2.5.11 | ### Install Java SDK @@ -33,20 +33,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project. io.milvus milvus-sdk-java - 2.5.10 + 2.5.11 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java:2.5.10' + implementation 'io.milvus:milvus-sdk-java:2.5.11' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java:2.5.10") + implementation("io.milvus:milvus-sdk-java:2.5.11") ``` 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. @@ -58,20 +58,20 @@ To use BulkWriter, import milvus-sdk-java-bulkwriter to your project. io.milvus milvus-sdk-java-bulkwriter - 2.5.10 + 2.5.11 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.10' + implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.11' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.10") + implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.11") ``` ### Examples diff --git a/docker-compose.yml b/docker-compose.yml index 5789515d9..d7da61407 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,7 +32,7 @@ services: standalone: container_name: milvus-javasdk-test-standalone - image: milvusdb/milvus:v2.5.13 + image: milvusdb/milvus:v2.5.14 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:v2.5.13 + image: milvusdb/milvus:v2.5.14 command: ["milvus", "run", "standalone"] environment: ETCD_ENDPOINTS: etcdslave:2379 diff --git a/examples/pom.xml b/examples/pom.xml index 691f0b250..29af6f9ce 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -42,7 +42,7 @@ - 2.5.10 + 2.5.11 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 d00ada2a7..35da07ef8 100644 --- a/sdk-core/src/test/java/io/milvus/TestUtils.java +++ b/sdk-core/src/test/java/io/milvus/TestUtils.java @@ -10,8 +10,7 @@ public class TestUtils { private int dimension = 256; private static final Random RANDOM = new Random(); - - public static final String MilvusDockerImageID = "milvusdb/milvus:v2.5.13"; + public static final String MilvusDockerImageID = "milvusdb/milvus:v2.5.14"; public TestUtils(int dimension) { this.dimension = dimension;