File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
- ## 7.13.1(2024-02-04 )
2
+ ## 7.13.1(2024-02-21 )
3
3
* 对象存储,修复上传部分配置项的兼容
4
+ * 对象存储,添加上传策略部分字段
4
5
5
6
## 7.13.0(2023-12-11)
6
7
* 对象存储,新增支持归档直读存储
Original file line number Diff line number Diff line change 11
11
12
12
# 上传策略,参数规格详见
13
13
# https://developer.qiniu.com/kodo/manual/1206/put-policy
14
- _policy_fields = set ([
14
+ _policy_fields = {
15
15
'callbackUrl' , # 回调URL
16
16
'callbackBody' , # 回调Body
17
17
'callbackHost' , # 回调URL指定的Host
38
38
'deleteAfterDays' , # 文件多少天后自动删除
39
39
'fileType' , # 文件的存储类型,0为标准存储,1为低频存储,2为归档存储,3为深度归档存储,4为归档直读存储
40
40
'isPrefixalScope' # 指定上传文件必须使用的前缀
41
- ])
41
+
42
+ 'transform' , # deprecated
43
+ 'transformFallbackKey' , # deprecated
44
+ 'transformFallbackMode' # deprecated
45
+ }
42
46
43
47
44
48
class Auth (object ):
You can’t perform that action at this time.
0 commit comments