Browse Source

Update changelog (#982)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
groot 1 year ago
parent
commit
5653eda9c6
4 changed files with 22 additions and 7 deletions
  1. 15 0
      CHANGELOG.md
  2. 4 4
      README.md
  3. 2 2
      examples/pom.xml
  4. 1 1
      pom.xml

+ 15 - 0
CHANGELOG.md

@@ -1,4 +1,19 @@
 # Changelog
 # Changelog
+## milvus-sdk-java 2.3.8 (2024-07-11)
+
+### Feature
+- Support SearchIterator/QueryIterator for MilvusClientV2
+- Optimize DescribeIndex interface of MilvusClientV2
+- Optimize DescribeCollection interface of MilvusClientV2
+- Support enableVirtualStyleEndpoint for BulkWriter
+
+### Bug
+- Fix a bug of max_capacity range
+
+### Break changes
+- Replace FastJSON by Gson according to issue [#878](https://github.com/milvus-io/milvus-sdk-java/issues/878). InsertParam.withRows()/UpsertParam.withRows()/InsertReq.data() are redefined.
+- Rename "distance" to "score" for search result. SearchResp.distance() of V2 is renamed to be score().
+
 
 
 ## milvus-sdk-java 2.3.7 (2024-05-11)
 ## milvus-sdk-java 2.3.7 (2024-05-11)
 
 

+ 4 - 4
README.md

@@ -19,7 +19,7 @@ The following table shows compatibilities between Milvus and Java SDK.
 |     2.1      |   2.1.0-beta4    |
 |     2.1      |   2.1.0-beta4    |
 |     2.2.0 ~ 2.2.8      |  2.2.0 ~ 2.2.5   |
 |     2.2.0 ~ 2.2.8      |  2.2.0 ~ 2.2.5   |
 |     >= 2.2.9      |  2.2.7 ~ 2.2.15  |
 |     >= 2.2.9      |  2.2.7 ~ 2.2.15  |
-|     2.3.x      |      2.3.7       |
+|     2.3.x      |      2.3.8       |
 
 
 ### Install Java SDK
 ### Install Java SDK
 
 
@@ -31,20 +31,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
         <dependency>
         <dependency>
             <groupId>io.milvus</groupId>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.3.7</version>
+            <version>2.3.8</version>
         </dependency>
         </dependency>
        ```
        ```
 
 
    - Gradle/Groovy
    - Gradle/Groovy
 
 
         ```groovy
         ```groovy
-        implementation 'io.milvus:milvus-sdk-java:2.3.7'
+        implementation 'io.milvus:milvus-sdk-java:2.3.8'
         ```
         ```
 
 
    - Gradle/Kotlin
    - Gradle/Kotlin
 
 
         ```kotlin
         ```kotlin
-        implementation("io.milvus:milvus-sdk-java:2.3.7")
+        implementation("io.milvus:milvus-sdk-java:2.3.8")
         ```
         ```
         
         
 ### Examples
 ### Examples

+ 2 - 2
examples/pom.xml

@@ -25,7 +25,7 @@
 
 
     <groupId>io.milvus</groupId>
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>2.3.7</version>
+    <version>2.3.8</version>
 
 
     <build>
     <build>
         <plugins>
         <plugins>
@@ -64,7 +64,7 @@
         <dependency>
         <dependency>
             <groupId>io.milvus</groupId>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.3.7</version>
+            <version>2.3.8</version>
         </dependency>
         </dependency>
         <dependency>
         <dependency>
             <groupId>org.slf4j</groupId>
             <groupId>org.slf4j</groupId>

+ 1 - 1
pom.xml

@@ -25,7 +25,7 @@
 
 
     <groupId>io.milvus</groupId>
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java</artifactId>
     <artifactId>milvus-sdk-java</artifactId>
-    <version>2.3.7</version>
+    <version>2.3.8</version>
     <packaging>jar</packaging>
     <packaging>jar</packaging>
 
 
     <name>io.milvus:milvus-sdk-java</name>
     <name>io.milvus:milvus-sdk-java</name>