Skip to content

Commit 96971af

Browse files
authored
bump version to v7.12.0 and update CHANGELOG.md (#425)
* bump version to v7.12.0 and update CHANGELOG.md * Revert "pending server update" This reverts commit d653fff.
1 parent 8074af5 commit 96971af

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 7.12.0 (2023-12-11)
4+
* 对象存储,支持归档直读存储
5+
* 对象存储,批量操作支持自动查询 rs 服务域名
6+
37
## 7.11.0 (2023-09-05)
48
* 支持代理
59

src/Qiniu/Config.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
final class Config
66
{
7-
const SDK_VER = '7.11.0';
7+
const SDK_VER = '7.12.0';
88

99
const BLOCK_SIZE = 4194304; //4*1024*1024 分块上传块大小,该参数为接口规格,不能修改
1010

tests/Qiniu/Tests/BucketTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function testBucketLifecycleRule()
193193
$this->assertEquals(self::$bucketLifeRulePrefix, $rule["prefix"]);
194194
$this->assertEquals(80, $rule["delete_after_days"]);
195195
$this->assertEquals(70, $rule["to_line_after_days"]);
196-
//$this->assertEquals(71, $rule["to_archive_ir_after_days"]);
196+
$this->assertEquals(71, $rule["to_archive_ir_after_days"]);
197197
$this->assertEquals(72, $rule["to_archive_after_days"]);
198198
$this->assertEquals(74, $rule["to_deep_archive_after_days"]);
199199

@@ -226,7 +226,7 @@ public function testBucketLifecycleRule()
226226
$this->assertEquals('update-' . self::$bucketLifeRulePrefix, $rule["prefix"]);
227227
$this->assertEquals(90, $rule["delete_after_days"]);
228228
$this->assertEquals(75, $rule["to_line_after_days"]);
229-
//$this->assertEquals(78, $rule["to_archive_ir_after_days"]);
229+
$this->assertEquals(78, $rule["to_archive_ir_after_days"]);
230230
$this->assertEquals(80, $rule["to_archive_after_days"]);
231231
$this->assertEquals(85, $rule["to_deep_archive_after_days"]);
232232

@@ -561,7 +561,7 @@ public function testSetObjectLifecycle()
561561
list($ret, $error) = self::$bucketManager->stat(self::$bucketName, $key);
562562
$this->assertNull($error);
563563
$this->assertNotNull($ret['transitionToIA']);
564-
//$this->assertNotNull($ret['transitionToArchiveIR']);
564+
$this->assertNotNull($ret['transitionToArchiveIR']);
565565
$this->assertNotNull($ret['transitionToARCHIVE']);
566566
$this->assertNotNull($ret['transitionToDeepArchive']);
567567
$this->assertNotNull($ret['expiration']);
@@ -594,7 +594,7 @@ public function testSetObjectLifecycleWithCond()
594594
list($ret, $error) = self::$bucketManager->stat(self::$bucketName, $key);
595595
$this->assertNull($error);
596596
$this->assertNotNull($ret['transitionToIA']);
597-
//$this->assertNotNull($ret['transitionToArchiveIR']);
597+
$this->assertNotNull($ret['transitionToArchiveIR']);
598598
$this->assertNotNull($ret['transitionToARCHIVE']);
599599
$this->assertNotNull($ret['transitionToDeepArchive']);
600600
$this->assertNotNull($ret['expiration']);

0 commit comments

Comments
 (0)