Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix lost require middleware #418

Merged
merged 2 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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