File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
src/main/java/com/qiniu/api/rs Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 6
6
7
7
增加私有资源fop的接口,包括exif,imageInfo,ImageView
8
8
9
- v6.0.4
9
+ ### v6.0.4
10
10
11
- 2013-08-21 issue [ #77 ] ( https://github.com/qiniu/java-sdk/pull/77 )
11
+ 2013-09-02 issue [ #78 ] ( https://github.com/qiniu/java-sdk/pull/78 )
12
12
13
- 添加ListPrefix
13
+ - 添加ListPrefix
14
+ - hot fix,增加EndUser字段至PutPolicy的JSON字符串中
14
15
15
16
### v6.0.3
16
17
17
18
2013-08-5 issue [ #76 ] ( https://github.com/qiniu/java-sdk/pull/76 )
18
19
19
- Bug fix,编码强制UTF-8修复
20
+ - Bug fix,编码强制UTF-8修复
20
21
21
22
### v6.0.1
22
23
23
24
2013-08-5 issue [ #74 ] ( https://github.com/qiniu/java-sdk/pull/74 )
24
25
25
- Bug fix,增加PutPolicy类的 callbackBody字段到PutPolicy的Json格式中
26
+ - Bug fix,增加PutPolicy类的 callbackBody字段到PutPolicy的Json格式中
26
27
27
28
28
29
### v6.0.0
Original file line number Diff line number Diff line change @@ -56,6 +56,9 @@ private String marshal() throws JSONException {
56
56
if (this .asyncOps != null && this .asyncOps .length () > 0 ) {
57
57
stringer .key ("asyncOps" ).value (this .asyncOps );
58
58
}
59
+ if (this .endUser != null && this .endUser .length () > 0 ) {
60
+ stringer .key ("endUser" ).value (this .endUser );
61
+ }
59
62
stringer .key ("deadline" ).value (this .expires );
60
63
stringer .endObject ();
61
64
You can’t perform that action at this time.
0 commit comments