File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
QiniuSDK/Http/Request/HttpClient/CFNetwork Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11#Changelog
2+ ## 8.5.0 (2022-10-25)
3+ - 优化分片上传 ctx 超时检测
4+ - QNDnsDelegate 代理函数名调整 lookup: 调整为 query:【不兼容变更】
5+ - 移除雾存储区域:华东一区
6+ - 增加亚太-首尔和华东浙江 2 区固定 Region
7+ - 处理网络检测阶段可能出现的并发异常
8+
29## 8.4.4 (2022-06-02)
310- HappyDns 依赖升至 [ v1.0.2] ( https://github.com/qiniu/happy-dns-objc/releases/tag/v1.0.2 )
411
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = 'Qiniu'
3- s . version = '8.4.4 '
3+ s . version = '8.5.0 '
44 s . summary = 'Qiniu Resource Storage SDK for iOS and Mac'
55 s . homepage = 'https://github.com/qiniu/objc-sdk'
66 s . social_media_url = 'http://weibo.com/qiniutek'
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ + (instancetype)shared {
5656 dispatch_once (&onceToken, ^{
5757 pool = [[QNCFHttpThreadPool alloc ] init ];
5858 pool.threadLiveTime = 60 ;
59- pool.maxOperationPerThread = 6 ;
59+ pool.maxOperationPerThread = 1 ;
6060 pool.pool = [NSMutableArray array ];
6161 [pool addThreadLiveChecker ];
6262 });
Original file line number Diff line number Diff line change 1414通过 CocoaPods
1515
1616``` ruby
17- pod " Qiniu" , " ~> 8.4.4 "
17+ pod " Qiniu" , " ~> 8.5.0 "
1818```
1919
2020通过 Swift Package Manager (Xcode 11+)
@@ -26,7 +26,7 @@ File -> Swift Packages -> Add Package Dependency,输入库链接,选择相
2626库对接:
2727let package = Package(
2828 dependencies: [
29- .package(url: "https://github.com/qiniu/objc-sdk", from: "8.4.4 ")
29+ .package(url: "https://github.com/qiniu/objc-sdk", from: "8.5.0 ")
3030 ],
3131 // ...
3232)
@@ -37,6 +37,7 @@ let package = Package(
3737
3838| Qiniu SDK 版本 | 最低 iOS版本 | 最低 OS X 版本 | Notes |
3939| :--------------------------------------: | :------: | :--------: | :-----------: |
40+ | 8.5.x | iOS 7 | OS X 10.15 | Xcode 最低版本 11 |
4041| 8.4.x | iOS 7 | OS X 10.15 | Xcode 最低版本 11 |
4142| 8.3.x | iOS 7 | OS X 10.15 | Xcode 最低版本 11 |
4243| 8.2.x | iOS 7 | OS X 10.15 | Xcode 最低版本 11 |
You can’t perform that action at this time.
0 commit comments