Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
Signed-off-by: ryjiang <[email protected]>
  • Loading branch information
shanghaikid committed Nov 26, 2024
1 parent 6d2aa43 commit edde8d3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ The following table shows the recommended `@zilliz/milvus2-sdk-node` versions fo

| Milvus version | Node sdk version | Installation |
| :------------: | :--------------: | :----------------------------------------- |
| v2.4.0+ | **latest** | `yarn add @zilliz/milvus2-sdk-node@latest` |
| v2.5.0+ | **latest** | `yarn add @zilliz/milvus2-sdk-node@latest` |
| v2.4.0+ | v2.4.9 | `yarn add @zilliz/[email protected]` |
| v2.3.0+ | v2.3.5 | `yarn add @zilliz/[email protected]` |
| v2.2.0+ | v2.3.5 | `yarn add @zilliz/[email protected]` |

Expand Down Expand Up @@ -46,17 +47,21 @@ yarn add @zilliz/milvus2-sdk-node
```

## Milvus TLS Guide

Please refer to [this doc](https://github.com/milvus-io/milvus-sdk-node/tree/main/test/cert).

## What's new in v2.4.4
### API renamed:

### API renamed:

- `loadCollectionSync` -> `loadCollection`
- `loadCollection` -> `loadCollectionAsync`
- `loadCollectionSync` = `loadCollectionSync`

So now you can just call `loadCollection` other than `loadCollectionSync` to load your collection like other language SDK.
So now you can just call `loadCollection` other than `loadCollectionSync` to load your collection like other language SDK.

### Support passing certificate file buffer for the TLS connection:

```javascript
new MilvusClient({
address: 'localhost:19530',
Expand Down

0 comments on commit edde8d3

Please sign in to comment.