File tree 4 files changed +7
-2
lines changed
4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 7.10.1 (2023-08-04)
4
+ * 修复部分 API 调用中间件合并失败(#417 )
5
+
3
6
## 7.10.0 (2023-06-20)
4
7
* 对象存储,新增请求中间件逻辑,方便拓展请求逻辑
5
8
* 对象存储,新增备用 UC 域名用于查询区域域名
Original file line number Diff line number Diff line change @@ -16,3 +16,4 @@ function classLoader($class)
16
16
spl_autoload_register ('classLoader ' );
17
17
18
18
require_once __DIR__ . '/src/Qiniu/functions.php ' ;
19
+ require_once __DIR__ . '/src/Qiniu/Http/Middleware/Middleware.php ' ;
Original file line number Diff line number Diff line change 31
31
"Qiniu\\ " : " src/Qiniu"
32
32
},
33
33
"files" : [
34
- " src/Qiniu/functions.php"
34
+ " src/Qiniu/functions.php" ,
35
+ " src/Qiniu/Http/Middleware/Middleware.php"
35
36
]
36
37
}
37
38
}
Original file line number Diff line number Diff line change 3
3
4
4
final class Config
5
5
{
6
- const SDK_VER = '7.10.0 ' ;
6
+ const SDK_VER = '7.10.1 ' ;
7
7
8
8
const BLOCK_SIZE = 4194304 ; //4*1024*1024 分块上传块大小,该参数为接口规格,不能修改
9
9
You can’t perform that action at this time.
0 commit comments