Skip to content

Commit

Permalink
fix lost require middleware (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
lihsai0 authored Aug 4, 2023
1 parent 59f7b38 commit dfa6893
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 7.10.1 (2023-08-04)
* 修复部分 API 调用中间件合并失败(#417

## 7.10.0 (2023-06-20)
* 对象存储,新增请求中间件逻辑,方便拓展请求逻辑
* 对象存储,新增备用 UC 域名用于查询区域域名
Expand Down
1 change: 1 addition & 0 deletions autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ function classLoader($class)
spl_autoload_register('classLoader');

require_once __DIR__ . '/src/Qiniu/functions.php';
require_once __DIR__ . '/src/Qiniu/Http/Middleware/Middleware.php';
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"Qiniu\\": "src/Qiniu"
},
"files": [
"src/Qiniu/functions.php"
"src/Qiniu/functions.php",
"src/Qiniu/Http/Middleware/Middleware.php"
]
}
}
2 changes: 1 addition & 1 deletion src/Qiniu/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

final class Config
{
const SDK_VER = '7.10.0';
const SDK_VER = '7.10.1';

const BLOCK_SIZE = 4194304; //4*1024*1024 分块上传块大小,该参数为接口规格,不能修改

Expand Down

0 comments on commit dfa6893

Please sign in to comment.