Skip to content

Commit fdc3dd1

Browse files
authored
Prepare for v2.4.1 (#897)
Signed-off-by: yhmo <[email protected]>
1 parent fe9a588 commit fdc3dd1

File tree

6 files changed

+28
-11
lines changed

6 files changed

+28
-11
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## milvus-sdk-java 2.4.1 (2024-05-11)
3+
4+
### Bug
5+
6+
- Unable to connect Zilliz cloud new severless instances
7+
- SearchIterator cannot work for Varchar type primary key
8+
- Fix some minor bugs of SearchIterator
9+
210
## milvus-sdk-java 2.4.0 (2024-04-22)
311

412
### Feature
@@ -15,6 +23,15 @@
1523
- Upgrade dependencies to fix some CVEs
1624
- Provide new methods withFloatVectors/withBinaryVectors/withFloat16Vectors/withBFloat16Vectors/withSparseFloatVectors for SearchParam to explicitly input different type vectors
1725

26+
27+
## milvus-sdk-java 2.3.7 (2024-05-11)
28+
29+
### Bug
30+
31+
- Unable to connect Zilliz cloud new severless instances
32+
- SearchIterator cannot work for Varchar type primary key
33+
- Fix some minor bugs of SearchIterator
34+
1835
## milvus-sdk-java 2.3.6 (2024-04-22)
1936

2037
### Feature

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ The following table shows compatibilities between Milvus and Java SDK.
1919
| 2.1 | 2.1.0-beta4 |
2020
| 2.2.0 ~ 2.2.8 | 2.2.0 ~ 2.2.5 |
2121
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
22-
| 2.3.x | 2.3.6 |
23-
| 2.4.x | 2.4.0 |
22+
| 2.3.x | 2.3.7 |
23+
| 2.4.x | 2.4.1 |
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.0</version>
35+
<version>2.4.1</version>
3636
</dependency>
3737
```
3838

3939
- Gradle/Groovy
4040

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

4545
- Gradle/Kotlin
4646

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

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232

3333
standalone:
3434
container_name: milvus-javasdk-test-standalone
35-
image: milvusdb/milvus:v2.4.0-20240416-ffb6edd4-amd64
35+
image: milvusdb/milvus:v2.4.1
3636
command: ["milvus", "run", "standalone"]
3737
environment:
3838
ETCD_ENDPOINTS: etcd:2379
@@ -77,7 +77,7 @@ services:
7777

7878
standaloneslave:
7979
container_name: milvus-javasdk-test-slave-standalone
80-
image: milvusdb/milvus:v2.4.0-20240416-ffb6edd4-amd64
80+
image: milvusdb/milvus:v2.4.1
8181
command: ["milvus", "run", "standalone"]
8282
environment:
8383
ETCD_ENDPOINTS: etcdslave:2379

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.0</version>
28+
<version>2.4.1</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.0</version>
67+
<version>2.4.1</version>
6868

6969
<exclusions>
7070
<exclusion>

pom.xml

Lines changed: 1 addition & 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.0</version>
28+
<version>2.4.1</version>
2929
<packaging>jar</packaging>
3030

3131
<name>io.milvus:milvus-sdk-java</name>

src/test/java/io/milvus/client/MilvusClientDockerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class MilvusClientDockerTest {
6969
private static final int dimension = 128;
7070

7171
@Container
72-
private static final MilvusContainer milvus = new MilvusContainer("milvusdb/milvus:v2.4.0-20240416-ffb6edd4-amd64");
72+
private static final MilvusContainer milvus = new MilvusContainer("milvusdb/milvus:v2.4.1");
7373

7474
@BeforeAll
7575
public static void setUp() {

0 commit comments

Comments
 (0)