Skip to content

Commit

Permalink
chore(release): v4.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sdjdd committed Apr 21, 2023
1 parent 48ba942 commit 676758d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 4.15.0 (2023-04-21)

### Features

- 国际节点支持通过 stream 构建文件(需要手动设置文件大小)
```js
const stats = fs.statSync('my_file');
const stream = fs.createReadStream('my_file');
const file = new AV.File('my_file', stream);
file.metaData('size', stats.size);
file.save();
```

## 4.14.0 (2022-12-15)

### Features
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "leancloud-storage",
"version": "4.14.0",
"version": "4.15.0",
"main": "./dist/node/entry/index.js",
"description": "LeanCloud JavaScript SDK.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = '4.14.0';
module.exports = '4.15.0';

0 comments on commit 676758d

Please sign in to comment.