Skip to content

Commit 9d4fdc2

Browse files
authored
bump version to v7.11.0 and update CHANGELOG.md (#424)
1 parent 5188200 commit 9d4fdc2

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
## CHANGE LOG
2+
## 7.11.0
3+
- 对象存储,新增支持归档直读存储
4+
- 对象存储,批量操作、解冻操作支持自动查询 rs 服务域名
5+
26
## 7.10.1
37
- 对象存储,修复无法上传带有英文双引号的文件
48

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qiniu",
3-
"version": "7.10.1",
3+
"version": "7.11.0",
44
"description": "Node wrapper for Qiniu Resource (Cloud) Storage API",
55
"main": "index.js",
66
"directories": {

test/rs.test.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ describe('test start bucket manager', function () {
399399
name: ruleName,
400400
prefix: 'test',
401401
to_line_after_days: 30,
402-
// to_archive_ir_after_days: 35,
402+
to_archive_ir_after_days: 35,
403403
to_archive_after_days: 40,
404404
to_deep_archive_after_days: 50,
405405
delete_after_days: 65
@@ -413,7 +413,7 @@ describe('test start bucket manager', function () {
413413
testGet({
414414
prefix: 'test',
415415
to_line_after_days: 30,
416-
// to_archive_ir_after_days: 35,
416+
to_archive_ir_after_days: 35,
417417
to_archive_after_days: 40,
418418
to_deep_archive_after_days: 50,
419419
delete_after_days: 65,
@@ -429,7 +429,7 @@ describe('test start bucket manager', function () {
429429
name: ruleName,
430430
prefix: 'update_prefix',
431431
to_line_after_days: 30,
432-
// to_archive_ir_after_days: 40,
432+
to_archive_ir_after_days: 40,
433433
to_archive_after_days: 50,
434434
to_deep_archive_after_days: 60,
435435
delete_after_days: 65
@@ -444,7 +444,7 @@ describe('test start bucket manager', function () {
444444
testGet({
445445
prefix: 'update_prefix',
446446
to_line_after_days: 30,
447-
// to_archive_ir_after_days: 40,
447+
to_archive_ir_after_days: 40,
448448
to_archive_after_days: 50,
449449
to_deep_archive_after_days: 60,
450450
delete_after_days: 65,
@@ -478,7 +478,7 @@ describe('test start bucket manager', function () {
478478
key,
479479
{
480480
toIaAfterDays: 10,
481-
// toArchiveIRAfterDays: 15,
481+
toArchiveIRAfterDays: 15,
482482
toArchiveAfterDays: 20,
483483
toDeepArchiveAfterDays: 30,
484484
deleteAfterDays: 40
@@ -504,7 +504,7 @@ describe('test start bucket manager', function () {
504504
key,
505505
{
506506
toIaAfterDays: 10,
507-
// toArchiveIRAfterDays: 15,
507+
toArchiveIRAfterDays: 15,
508508
toArchiveAfterDays: 20,
509509
toDeepArchiveAfterDays: 30,
510510
deleteAfterDays: 40,

0 commit comments

Comments
 (0)