Browse Source

Update readme (#701)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
groot 1 year ago
parent
commit
6bc4304e9f
2 changed files with 24 additions and 5 deletions
  1. 19 0
      CHANGELOG.md
  2. 5 5
      README.md

+ 19 - 0
CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 # Changelog
 
 
+## milvus-sdk-java 2.3.3 (2023-11-08)
+
+### Feature
+
+- Support resource group interfaces
+
 ## milvus-sdk-java 2.3.2 (2023-10-25)
 ## milvus-sdk-java 2.3.2 (2023-10-25)
 
 
 ### Feature
 ### Feature
@@ -35,6 +41,19 @@
 - No longer support index: ANNOY, RHNSW_FLAT, RHNSW_PQ, RHNSW_SQ
 - No longer support index: ANNOY, RHNSW_FLAT, RHNSW_PQ, RHNSW_SQ
 - No longer support metric: TANIMOTO, SUPERSTRUCTURE, SUBSTRUCTURE
 - No longer support metric: TANIMOTO, SUPERSTRUCTURE, SUBSTRUCTURE
 
 
+
+## milvus-sdk-java 2.2.15 (2023-11-08)
+
+### Feature
+
+- Support resource group interfaces
+
+### Improvement
+
+- Fix a bug that high-level search API can only return the first vector's results
+- Upgrade dependencies to fix some vulnerabilities
+- Support insert dynamic values by column-based
+
 ## milvus-sdk-java 2.2.14 (2023-09-15)
 ## milvus-sdk-java 2.2.14 (2023-09-15)
 
 
 ### Improvement
 ### Improvement

+ 5 - 5
README.md

@@ -18,8 +18,8 @@ The following table shows compatibilities between Milvus and Java SDK.
 |     2.0      |      2.0.4       |
 |     2.0      |      2.0.4       |
 |     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.14       |
-|     2.3.x      |      2.3.2      |
+|     >= 2.2.9      |      2.2.7 ~ 2.2.15       |
+|     2.3.x      |      2.3.3      |
 
 
 ### 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.2</version>
+            <version>2.3.3</version>
         </dependency>
         </dependency>
        ```
        ```
 
 
    - Gradle/Groovy
    - Gradle/Groovy
 
 
         ```groovy
         ```groovy
-        implementation 'io.milvus:milvus-sdk-java:2.3.2'
+        implementation 'io.milvus:milvus-sdk-java:2.3.3'
         ```
         ```
 
 
    - Gradle/Kotlin
    - Gradle/Kotlin
 
 
         ```kotlin
         ```kotlin
-        implementation("io.milvus:milvus-sdk-java:2.3.2")
+        implementation("io.milvus:milvus-sdk-java:2.3.3")
         ```
         ```
         
         
 ### Examples
 ### Examples