Skip to content

Commit

Permalink
Prepare for v2.4.4 (#1069)
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <yihua.mo@zilliz.com>
  • Loading branch information
yhmo authored Sep 19, 2024
1 parent a72b19a commit adab80a
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 12 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changelog
## milvus-sdk-java 2.4.4 (2024-09-19)

### Improvement
- Upgrade the bulkWriter cloud API call from v1 to v2
- Improve usability of AlterCollectionReq & CreateCollectionReq
- Check connection when MilvusClientV2 is initialized
- Support customized SSLContext for MilvusClientV2
- Reduce time-consuming log of search/insert/upsert for MilvusClientV1

### Bug
- Fix a bug or QueryIterator with special expression

## milvus-sdk-java 2.4.3 (2024-08-09)

### Feature
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.9 |
| 2.4.x | 2.4.3 |
| 2.3.x | 2.3.10 |
| 2.4.x | 2.4.4 |

### Install Java SDK

Expand All @@ -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.3</version>
<version>2.4.4</version>
</dependency>
```

- Gradle/Groovy

```groovy
implementation 'io.milvus:milvus-sdk-java:2.4.3'
implementation 'io.milvus:milvus-sdk-java:2.4.4'
```

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java:2.4.3")
implementation("io.milvus:milvus-sdk-java:2.4.4")
```
### Examples
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:

standalone:
container_name: milvus-javasdk-test-standalone
image: milvusdb/milvus:v2.4.7
image: milvusdb/milvus:v2.4.11
command: ["milvus", "run", "standalone"]
environment:
ETCD_ENDPOINTS: etcd:2379
Expand Down Expand Up @@ -77,7 +77,7 @@ services:

standaloneslave:
container_name: milvus-javasdk-test-slave-standalone
image: milvusdb/milvus:v2.4.7
image: milvusdb/milvus:v2.4.11
command: ["milvus", "run", "standalone"]
environment:
ETCD_ENDPOINTS: etcdslave:2379
Expand Down
4 changes: 2 additions & 2 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java-examples</artifactId>
<version>2.4.3</version>
<version>2.4.4</version>

<build>
<plugins>
Expand Down Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.4.3</version>
<version>2.4.4</version>

<exclusions>
<exclusion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.4.3</version>
<version>2.4.4</version>
<packaging>jar</packaging>

<name>io.milvus:milvus-sdk-java</name>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/milvus/client/MilvusClientDockerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class MilvusClientDockerTest {
private static final Random RANDOM = new Random();

@Container
private static final MilvusContainer milvus = new MilvusContainer("milvusdb/milvus:v2.4.7");
private static final MilvusContainer milvus = new MilvusContainer("milvusdb/milvus:v2.4.11");

@BeforeAll
public static void setUp() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class MilvusClientV2DockerTest {
private static final Random RANDOM = new Random();

@Container
private static final MilvusContainer milvus = new MilvusContainer("milvusdb/milvus:v2.4.7");
private static final MilvusContainer milvus = new MilvusContainer("milvusdb/milvus:v2.4.11");

@BeforeAll
public static void setUp() {
Expand Down

0 comments on commit adab80a

Please sign in to comment.