From b7ab345c7bf1bce28d2047d036a4bf0973e34dbf Mon Sep 17 00:00:00 2001 From: groot Date: Tue, 31 Dec 2024 17:20:49 +0800 Subject: [PATCH] Prepare for v2.5.3 (#1274) Signed-off-by: yhmo --- CHANGELOG.md | 11 +++++++++++ README.md | 16 ++++++++-------- examples/pom.xml | 6 +++--- pom.xml | 2 +- 4 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f3d8f6d3..9c185aabe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## milvus-sdk-java 2.5.3 (2024-12-31) +### Feature +- Support alterCollectionField interface for V2 +- Support refreshLoad/getPartitionStats interfaces for V2 +- Support dropIndexProperties/dropDatabaseProperties/dropCollectionProperties for V2 +- Support resource group interfaces for V2 + +### Improvement +- Return recall rate in search result for V2 +- QueryIterator/SearchIterator support retry + ## milvus-sdk-java 2.5.2 (2024-12-11) ### Improvement - Split milvus Java SDK to two packages to reduce dependency complexity diff --git a/README.md b/README.md index 7486a5af7..14ee80991 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ The following table shows compatibilities between Milvus and Java SDK. | 2.2.0 ~ 2.2.8 | 2.2.0 ~ 2.2.5 | | >= 2.2.9 | 2.2.7 ~ 2.2.15 | | 2.3.x | 2.3.11 | -| 2.4.x | 2.4.8 | -| 2.5.x | 2.5.2 | +| 2.4.x | 2.4.10 | +| 2.5.x | 2.5.3 | ### 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.2 + 2.5.3 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java:2.5.2' + implementation 'io.milvus:milvus-sdk-java:2.5.3' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java:2.5.2") + implementation("io.milvus:milvus-sdk-java:2.5.3") ``` 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.2 + 2.5.3 ``` - Gradle/Groovy ```groovy - implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.2' + implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.3' ``` - Gradle/Kotlin ```kotlin - implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.2") + implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.3") ``` ### Examples diff --git a/examples/pom.xml b/examples/pom.xml index e6ba86b08..a7e390349 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -25,7 +25,7 @@ io.milvus milvus-sdk-java-examples - 2.5.2 + 2.5.3 @@ -64,12 +64,12 @@ io.milvus milvus-sdk-java - 2.5.2 + 2.5.3 io.milvus milvus-sdk-java-bulkwriter - 2.5.2 + 2.5.3 org.tensorflow diff --git a/pom.xml b/pom.xml index 4bc85c471..5bb483260 100644 --- a/pom.xml +++ b/pom.xml @@ -67,7 +67,7 @@ - 2.5.2 + 2.5.3 8 8 UTF-8