File tree Expand file tree Collapse file tree 4 files changed +17
-9
lines changed Expand file tree Collapse file tree 4 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 1+ ** 2023-12-11**
2+
3+ v8.5.0
4+
5+ 新增:对象存储,支持归档直读存储
6+
7+ 修复:对象存储,批量操作支持自动查询 rs 服务域名
8+
9+ 修复:对象存储,上传策略中文件大小、过期时间的属性类型与服务端不一致
10+
111** 2023-03-28**
212
313v8.4.0
Original file line number Diff line number Diff line change 2828 <PostBuildEvent >
2929 </PostBuildEvent >
3030 <ProjectId >Qiniu</ProjectId >
31- <Version >8.4 .0</Version >
31+ <Version >8.5 .0</Version >
3232 <Authors >Rong Zhou, Qiniu SDK</Authors >
3333 <Company >Shanghai Qiniu Information Technology Co., Ltd.</Company >
3434 <Description >Qiniu Resource (Cloud) Storage SDK for C#</Description >
Original file line number Diff line number Diff line change @@ -37,6 +37,6 @@ public class QiniuCSharpSDK
3737 /// <summary>
3838 /// SDK版本号
3939 /// </summary>
40- public const string VERSION = "8.4 .0" ;
40+ public const string VERSION = "8.5 .0" ;
4141
4242}
Original file line number Diff line number Diff line change @@ -267,9 +267,8 @@ public void SetObjectLifecycleTest()
267267 10 ,
268268 20 ,
269269 30 ,
270- 40 ) ;
271- // 40,
272- // 15);
270+ 40 ,
271+ 15 ) ;
273272 if ( ret . Code != ( int ) HttpCode . OK )
274273 {
275274 Assert . Fail ( "deleteAfterDays error: " + ret . ToString ( ) ) ;
@@ -281,7 +280,7 @@ public void SetObjectLifecycleTest()
281280 Assert . Fail ( "stat error: " + statRet . ToString ( ) ) ;
282281 }
283282 Assert . True ( statRet . Result . TransitionToIa > 0 ) ;
284- // Assert.True(statRet.Result.TransitionToArchiveIr > 0);
283+ Assert . True ( statRet . Result . TransitionToArchiveIr > 0 ) ;
285284 Assert . True ( statRet . Result . TransitionToArchive > 0 ) ;
286285 Assert . True ( statRet . Result . TransitionToDeepArchive > 0 ) ;
287286 Assert . True ( statRet . Result . Expiration > 0 ) ;
@@ -321,9 +320,8 @@ public void SetObjectLifecycleCondTest()
321320 10 ,
322321 20 ,
323322 30 ,
324- 40 ) ;
325- // 40,
326- // 15);
323+ 40 ,
324+ 15 ) ;
327325 if ( ret . Code != ( int ) HttpCode . OK )
328326 {
329327 Assert . Fail ( "deleteAfterDays error: " + ret . ToString ( ) ) ;
You can’t perform that action at this time.
0 commit comments