Skip to content

Commit 019de90

Browse files
authored
Prepare for v2.6.2 (#1543)
Signed-off-by: yhmo <[email protected]>
1 parent 30774ff commit 019de90

File tree

4 files changed

+34
-10
lines changed

4 files changed

+34
-10
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## milvus-sdk-java 2.6.2 (2025-08-14)
4+
### Improvement
5+
- Alias interface support database
6+
- Allows upsert when autoid=true for MilvusClientV1
7+
- Support more Rerank types for hybridSearch(), including decay and model rerank
8+
- Support ignoring growing segments for MilvusClientV2.query()
9+
- Use cached collection schema for query by ids to avoid calling describe_collection()
10+
- Add objectUrls parameter for bulkimport interfaces
11+
- Add a method to return the current used database name for MilvusClientV2
12+
### Bug
13+
- Fix a bug of Function.multiAnalyzerParams
14+
- Fix a bug of FunctionType.TEXTEMBEDDING
15+
16+
## milvus-sdk-java 2.5.12 (2025-08-14)
17+
### Improvement
18+
- Alias interface support database
19+
- Allows upsert when autoid=true for MilvusClientV1
20+
- Support ignoring growing segments for MilvusClientV2.query()
21+
- Use cached collection schema for query by ids to avoid calling describe_collection()
22+
- Add objectUrls parameter for bulkimport interfaces
23+
- Add a method to return the current used database name for MilvusClientV2
24+
### Bug
25+
- Fix a bug of Function.multiAnalyzerParams
26+
327
## milvus-sdk-java 2.6.1 (2025-07-15)
428
### Feature
529
- Support uploading file to Zilliz Cloud Stage for BulkWriter

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ The following table shows compatibilities between Milvus and Java SDK.
2121
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
2222
| 2.3.x | 2.3.11 |
2323
| 2.4.x | 2.4.11 |
24-
| 2.5.x | 2.5.11 |
25-
| 2.6.x | 2.6.1 |
24+
| 2.5.x | 2.5.12 |
25+
| 2.6.x | 2.6.2 |
2626

2727
### Install Java SDK
2828

@@ -34,20 +34,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
3434
<dependency>
3535
<groupId>io.milvus</groupId>
3636
<artifactId>milvus-sdk-java</artifactId>
37-
<version>2.6.1</version>
37+
<version>2.6.2</version>
3838
</dependency>
3939
```
4040

4141
- Gradle/Groovy
4242

4343
```groovy
44-
implementation 'io.milvus:milvus-sdk-java:2.6.1'
44+
implementation 'io.milvus:milvus-sdk-java:2.6.2'
4545
```
4646

4747
- Gradle/Kotlin
4848

4949
```kotlin
50-
implementation("io.milvus:milvus-sdk-java:2.6.1")
50+
implementation("io.milvus:milvus-sdk-java:2.6.2")
5151
```
5252

5353
From v2.5.2, milvus Java SDK is split into two packages: milvus-sdk-java and milvus-sdk-java-bulkwriter, because BulkWriter requires quite a lot of dependencies. If you don't need BulkWriter tool, you can ignore the milvus-sdk-java-bulkwriter package.
@@ -59,20 +59,20 @@ To use BulkWriter, import milvus-sdk-java-bulkwriter to your project.
5959
<dependency>
6060
<groupId>io.milvus</groupId>
6161
<artifactId>milvus-sdk-java-bulkwriter</artifactId>
62-
<version>2.6.1</version>
62+
<version>2.6.2</version>
6363
</dependency>
6464
```
6565

6666
- Gradle/Groovy
6767

6868
```groovy
69-
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.1'
69+
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.2'
7070
```
7171

7272
- Gradle/Kotlin
7373

7474
```kotlin
75-
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.1")
75+
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.2")
7676
```
7777

7878
### Examples

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</build>
4343

4444
<properties>
45-
<revision>2.6.1</revision>
45+
<revision>2.6.2</revision>
4646
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4747
</properties>
4848

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
</repositories>
8383

8484
<properties>
85-
<revision>2.6.1</revision>
85+
<revision>2.6.2</revision>
8686
<maven.compiler.source>8</maven.compiler.source>
8787
<maven.compiler.target>8</maven.compiler.target>
8888
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)