Skip to content

Commit eeda240

Browse files
authored
Prepare for 2.4.8 (#1162)
Signed-off-by: yhmo <[email protected]>
1 parent 8671dca commit eeda240

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# 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+
212
## milvus-sdk-java 2.4.7 (2024-10-25)
313

414
### Improvement

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following table shows compatibilities between Milvus and Java SDK.
2020
| 2.2.0 ~ 2.2.8 | 2.2.0 ~ 2.2.5 |
2121
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
2222
| 2.3.x | 2.3.11 |
23-
| 2.4.x | 2.4.7 |
23+
| 2.4.x | 2.4.8 |
2424

2525
### Install Java SDK
2626

@@ -32,20 +32,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
3232
<dependency>
3333
<groupId>io.milvus</groupId>
3434
<artifactId>milvus-sdk-java</artifactId>
35-
<version>2.4.7</version>
35+
<version>2.4.8</version>
3636
</dependency>
3737
```
3838

3939
- Gradle/Groovy
4040

4141
```groovy
42-
implementation 'io.milvus:milvus-sdk-java:2.4.7'
42+
implementation 'io.milvus:milvus-sdk-java:2.4.8'
4343
```
4444

4545
- Gradle/Kotlin
4646

4747
```kotlin
48-
implementation("io.milvus:milvus-sdk-java:2.4.7")
48+
implementation("io.milvus:milvus-sdk-java:2.4.8")
4949
```
5050
5151
### Examples

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<groupId>io.milvus</groupId>
2727
<artifactId>milvus-sdk-java-examples</artifactId>
28-
<version>2.4.7</version>
28+
<version>2.4.8</version>
2929

3030
<build>
3131
<plugins>
@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>io.milvus</groupId>
6666
<artifactId>milvus-sdk-java</artifactId>
67-
<version>2.4.7</version>
67+
<version>2.4.8</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>org.tensorflow</groupId>

pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<groupId>io.milvus</groupId>
2727
<artifactId>milvus-sdk-java</artifactId>
28-
<version>2.4.7</version>
28+
<version>2.4.8</version>
2929
<packaging>jar</packaging>
3030

3131
<name>io.milvus:milvus-sdk-java</name>
@@ -395,6 +395,8 @@
395395
<version>${maven.javadoc.plugin.version}</version>
396396
<configuration>
397397
<javadocExecutable>/usr/bin/javadoc</javadocExecutable>
398+
<additionalOptions>-Xdoclint:none</additionalOptions>
399+
<additionalJOption>-Xdoclint:none</additionalJOption>
398400
</configuration>
399401
<executions>
400402
<execution>

0 commit comments

Comments
 (0)