Skip to content

Commit 7702301

Browse files
committed
publish v7.0.7
1 parent 2996814 commit 7702301

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## CHANGE LOG
22

3+
### v7.0.7
4+
- 给form upload添加默认的crc32校验以避免网络层面的字节反转导致上传内容不正确
5+
- 修复resume upload在上传小文件的时候出现的上传失败情况
6+
37
### v7.0.6
48
- 修复时间戳防盗链算法中对文件名的urlencode不兼容问题
59
- 发布index.d.ts文件

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qiniu",
3-
"version": "7.0.6",
3+
"version": "7.0.7",
44
"description": "Node wrapper for Qiniu Resource (Cloud) Storage API",
55
"main": "index.js",
66
"directories": {

qiniu/storage/form.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ FormUploader.prototype.putStream = function(uploadToken, key, fsStream,
8383
createMultipartForm(uploadToken, key, fsStream,
8484
putExtra,
8585
function(postForm) {
86-
console.log("uploading");
8786
putReq(that.config, postForm, callbackFunc);
8887
});
8988
});

0 commit comments

Comments
 (0)