Skip to content

Commit 0fa84e1

Browse files
committed
merge from master
2 parents 5ba09fa + 69434d7 commit 0fa84e1

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,24 @@ v6.0.5
66

77
增加私有资源fop的接口,包括exif,imageInfo,ImageView
88

9-
v6.0.4
9+
### v6.0.4
1010

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)
1212

13-
添加ListPrefix
13+
- 添加ListPrefix
14+
- hot fix,增加EndUser字段至PutPolicy的JSON字符串中
1415

1516
### v6.0.3
1617

1718
2013-08-5 issue [#76](https://github.com/qiniu/java-sdk/pull/76)
1819

19-
Bug fix,编码强制UTF-8修复
20+
- Bug fix,编码强制UTF-8修复
2021

2122
### v6.0.1
2223

2324
2013-08-5 issue [#74](https://github.com/qiniu/java-sdk/pull/74)
2425

25-
Bug fix,增加PutPolicy类的 callbackBody字段到PutPolicy的Json格式中
26+
- Bug fix,增加PutPolicy类的 callbackBody字段到PutPolicy的Json格式中
2627

2728

2829
### v6.0.0

src/main/java/com/qiniu/api/rs/PutPolicy.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ private String marshal() throws JSONException {
5656
if (this.asyncOps != null && this.asyncOps.length() > 0) {
5757
stringer.key("asyncOps").value(this.asyncOps);
5858
}
59+
if (this.endUser != null && this.endUser.length() > 0) {
60+
stringer.key("endUser").value(this.endUser);
61+
}
5962
stringer.key("deadline").value(this.expires);
6063
stringer.endObject();
6164

0 commit comments

Comments
 (0)