Преглед на файлове

Prepare for v2.4.3 (#1031)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
groot преди 8 месеца
родител
ревизия
d9372d9e64
променени са 5 файла, в които са добавени 23 реда и са изтрити 9 реда
  1. 14 0
      CHANGELOG.md
  2. 5 5
      README.md
  3. 2 2
      examples/pom.xml
  4. 1 1
      pom.xml
  5. 1 1
      src/main/milvus-proto

+ 14 - 0
CHANGELOG.md

@@ -1,4 +1,18 @@
 # Changelog
+## milvus-sdk-java 2.4.3 (2024-08-09)
+
+### Feature
+- Implement database related interfaces including createDatabase/dropDatabase/alterDatabase for MilvusClientV2
+- Implement getServerVersion interface for MilvusClientV2
+- Provide client/connection pool for V1 and V2
+
+### Improvement
+- Implement retry machinery for MilvusClientV2
+
+### Bug
+- Fix thread-safe bug of insert/upsert interfaces for MilvusClientV2
+- Fix a bug of describeCollection that collection properties not returned for MilvusClientV2
+
 ## milvus-sdk-java 2.4.2 (2024-07-11)
 
 ### Feature

+ 5 - 5
README.md

@@ -19,8 +19,8 @@ The following table shows compatibilities between Milvus and Java SDK.
 |      2.1       |   2.1.0-beta4    |
 | 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.6       |
-|     2.4.x      |      2.4.2       |
+|     2.3.x      |      2.3.9       |
+|     2.4.x      |      2.4.3       |
 
 ### Install Java SDK
 
@@ -32,20 +32,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.4.2</version>
+            <version>2.4.3</version>
         </dependency>
        ```
 
    - Gradle/Groovy
 
         ```groovy
-        implementation 'io.milvus:milvus-sdk-java:2.4.2'
+        implementation 'io.milvus:milvus-sdk-java:2.4.3'
         ```
 
    - Gradle/Kotlin
 
         ```kotlin
-        implementation("io.milvus:milvus-sdk-java:2.4.2")
+        implementation("io.milvus:milvus-sdk-java:2.4.3")
         ```
         
 ### Examples

+ 2 - 2
examples/pom.xml

@@ -25,7 +25,7 @@
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>2.4.2</version>
+    <version>2.4.3</version>
 
     <build>
         <plugins>
@@ -64,7 +64,7 @@
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.4.2</version>
+            <version>2.4.3</version>
 
             <exclusions>
                 <exclusion>

+ 1 - 1
pom.xml

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

+ 1 - 1
src/main/milvus-proto

@@ -1 +1 @@
-Subproject commit 073886363680921ac3659c0ead9e7408219ce29b
+Subproject commit 5d85129b6803469fd76efae71d20546098e3d850