File tree Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## milvus-sdk-java 2.4.8 (2024-10-31)
3
+
4
+ ### Improvement
5
+ - Fix a conflict bug with Gson v2.11.0
6
+ - Support group by for hybrid search
7
+
8
+ ### Bug
9
+ - Fix a dimension check error for binary vector
10
+ - Fix a null pointer bug for query iterator
11
+
2
12
## milvus-sdk-java 2.4.7 (2024-10-25)
3
13
4
14
### Improvement
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ The following table shows compatibilities between Milvus and Java SDK.
20
20
| 2.2.0 ~ 2.2.8 | 2.2.0 ~ 2.2.5 |
21
21
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
22
22
| 2.3.x | 2.3.11 |
23
- | 2.4.x | 2.4.7 |
23
+ | 2.4.x | 2.4.8 |
24
24
25
25
### Install Java SDK
26
26
@@ -32,20 +32,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
32
32
<dependency>
33
33
<groupId>io.milvus</groupId>
34
34
<artifactId>milvus-sdk-java</artifactId>
35
- <version>2.4.7 </version>
35
+ <version>2.4.8 </version>
36
36
</dependency>
37
37
```
38
38
39
39
- Gradle/Groovy
40
40
41
41
```groovy
42
- implementation 'io.milvus:milvus-sdk-java:2.4.7 '
42
+ implementation 'io.milvus:milvus-sdk-java:2.4.8 '
43
43
```
44
44
45
45
- Gradle/Kotlin
46
46
47
47
```kotlin
48
- implementation("io.milvus:milvus-sdk-java:2.4.7 ")
48
+ implementation("io.milvus:milvus-sdk-java:2.4.8 ")
49
49
```
50
50
51
51
### Examples
Original file line number Diff line number Diff line change 25
25
26
26
<groupId >io.milvus</groupId >
27
27
<artifactId >milvus-sdk-java-examples</artifactId >
28
- <version >2.4.7 </version >
28
+ <version >2.4.8 </version >
29
29
30
30
<build >
31
31
<plugins >
64
64
<dependency >
65
65
<groupId >io.milvus</groupId >
66
66
<artifactId >milvus-sdk-java</artifactId >
67
- <version >2.4.7 </version >
67
+ <version >2.4.8 </version >
68
68
</dependency >
69
69
<dependency >
70
70
<groupId >org.tensorflow</groupId >
Original file line number Diff line number Diff line change 25
25
26
26
<groupId >io.milvus</groupId >
27
27
<artifactId >milvus-sdk-java</artifactId >
28
- <version >2.4.7 </version >
28
+ <version >2.4.8 </version >
29
29
<packaging >jar</packaging >
30
30
31
31
<name >io.milvus:milvus-sdk-java</name >
395
395
<version >${maven.javadoc.plugin.version} </version >
396
396
<configuration >
397
397
<javadocExecutable >/usr/bin/javadoc</javadocExecutable >
398
+ <additionalOptions >-Xdoclint:none</additionalOptions >
399
+ <additionalJOption >-Xdoclint:none</additionalJOption >
398
400
</configuration >
399
401
<executions >
400
402
<execution >
You can’t perform that action at this time.
0 commit comments