File tree 4 files changed +17
-9
lines changed
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
+
1
11
** 2023-03-28**
2
12
3
13
v8.4.0
Original file line number Diff line number Diff line change 28
28
<PostBuildEvent >
29
29
</PostBuildEvent >
30
30
<ProjectId >Qiniu</ProjectId >
31
- <Version >8.4 .0</Version >
31
+ <Version >8.5 .0</Version >
32
32
<Authors >Rong Zhou, Qiniu SDK</Authors >
33
33
<Company >Shanghai Qiniu Information Technology Co., Ltd.</Company >
34
34
<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
37
37
/// <summary>
38
38
/// SDK版本号
39
39
/// </summary>
40
- public const string VERSION = "8.4 .0" ;
40
+ public const string VERSION = "8.5 .0" ;
41
41
42
42
}
Original file line number Diff line number Diff line change @@ -267,9 +267,8 @@ public void SetObjectLifecycleTest()
267
267
10 ,
268
268
20 ,
269
269
30 ,
270
- 40 ) ;
271
- // 40,
272
- // 15);
270
+ 40 ,
271
+ 15 ) ;
273
272
if ( ret . Code != ( int ) HttpCode . OK )
274
273
{
275
274
Assert . Fail ( "deleteAfterDays error: " + ret . ToString ( ) ) ;
@@ -281,7 +280,7 @@ public void SetObjectLifecycleTest()
281
280
Assert . Fail ( "stat error: " + statRet . ToString ( ) ) ;
282
281
}
283
282
Assert . True ( statRet . Result . TransitionToIa > 0 ) ;
284
- // Assert.True(statRet.Result.TransitionToArchiveIr > 0);
283
+ Assert . True ( statRet . Result . TransitionToArchiveIr > 0 ) ;
285
284
Assert . True ( statRet . Result . TransitionToArchive > 0 ) ;
286
285
Assert . True ( statRet . Result . TransitionToDeepArchive > 0 ) ;
287
286
Assert . True ( statRet . Result . Expiration > 0 ) ;
@@ -321,9 +320,8 @@ public void SetObjectLifecycleCondTest()
321
320
10 ,
322
321
20 ,
323
322
30 ,
324
- 40 ) ;
325
- // 40,
326
- // 15);
323
+ 40 ,
324
+ 15 ) ;
327
325
if ( ret . Code != ( int ) HttpCode . OK )
328
326
{
329
327
Assert . Fail ( "deleteAfterDays error: " + ret . ToString ( ) ) ;
You can’t perform that action at this time.
0 commit comments