File tree Expand file tree Collapse file tree 5 files changed +21
-7
lines changed
src/main/java/com/qiniu/common Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 27
27
QINIU_LINKING_APPID : ${{ secrets.QINIU_LINKING_APPID }}
28
28
QINIU_SECRET_KEY : ${{ secrets.QINIU_SECRET_KEY }}
29
29
QINIU_TEST_ENV : travis
30
- run :
30
+ run : |
31
31
./gradlew build --stacktrace --info
32
+ ./gradlew test -d
33
+ ./gradlew jacocoTestReport
34
+
35
+ - name : Upload coverage to Codecov
36
+
37
+ with :
38
+ token : ${{secrets.CODECOV_TOKEN}}
39
+ file : build/reports/jacoco/test/jacocoTestReport.xml
Original file line number Diff line number Diff line change 1
1
# Changelog
2
+
3
+ ## 7.7.0 (2021-05-28)
4
+
5
+ ## 增加
6
+ * 支持跨区域双活上传,提供区域级别上传故障情况下上传可用性保障,跨区域双活功能需要工单申请开通
7
+
2
8
## 7.6.0 (2021-04-29)
3
9
4
10
## 增加
5
- * 上传服务基础上传数据 api 支持 InputStream
6
- * 支持构建 DownloadUrl 功能
11
+ * 上传每个服务端 API 对应基础上传数据 API 支持流式数据 InputStream
12
+ * 提供更友好的构建 DownloadUrl 能力
7
13
8
14
9
15
## 7.5.0 (2021-04-15)
Original file line number Diff line number Diff line change 12
12
<dependency >
13
13
<groupId >com.qiniu</groupId >
14
14
<artifactId >qiniu-java-sdk</artifactId >
15
- <version >[7.6 .0, 7.6 .99]</version >
15
+ <version >[7.7 .0, 7.7 .99]</version >
16
16
</dependency >
17
17
```
18
18
或者 Gradle:
19
19
``` groovy
20
- compile 'com.qiniu:qiniu-java-sdk:7.6 .+'
20
+ compile 'com.qiniu:qiniu-java-sdk:7.7 .+'
21
21
```
22
22
23
23
## 运行环境
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.0.1 -bin.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.3 -bin.zip
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public final class Constants {
9
9
/**
10
10
* 版本号
11
11
*/
12
- public static final String VERSION = "7.6 .0" ;
12
+ public static final String VERSION = "7.7 .0" ;
13
13
/**
14
14
* 块大小,不能改变
15
15
*/
You can’t perform that action at this time.
0 commit comments