Skip to content

Commit 4f8da66

Browse files
authored
chore: update changelog and fix draft script. (#1073)
1 parent 14636e2 commit 4f8da66

File tree

2 files changed

+37
-3
lines changed

2 files changed

+37
-3
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## 1.72.8 (June 02, 2022)
2+
3+
ENHANCEMENTS:
4+
5+
* resource `tencentcloud_mysql_instance` support device type
6+
* resource `tencentcloud_mysql_readonly_instance` support device type
7+
8+
COMMON:
9+
10+
* resource `tencentcloud_tcaplus_table` add test sweeper
11+
* chore: add changelog draft script
12+
13+
## 1.72.7 (May 31, 2022)
14+
15+
BUGFIXES:
16+
17+
* resource `tencentcloud_mysql_readonly_instance` make zone arguments optional.
18+
19+
## 1.72.6 (May 31, 2022)
20+
21+
FEATURES:
22+
* new resource `tencentcloud_cam_role_sso`
23+
24+
ENHANCEMENTS:
25+
* resource `tencentcloud_mysql_instance` support fast upgrade and param template id
26+
27+
BUGFIXES:
28+
* resource `tencentcloud_sqlserver_instance` disable recycle
29+
* resource `tencentcloud_mysql_instance` / `tencentcloud_mongodb_instance` cancel validate required db pwd.
30+
31+
COMMON:
32+
* testcases fix: dnspod, cvm, kafka, as, tcr, sqlserver, cbs, cos, cfs, mongo, tke
33+
134
## 1.72.5 (May 20, 2022)
235

336
ENHANCEMENTS:

scripts/draft-changelog.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ diffs=$(git diff --name-only HEAD $gitTag | grep "tencentcloud/*")
3939

4040
resource="^tencentcloud\/resource_tc_([a-z_]+)\.go$"
4141
data="^tencentcloud\/data_source_tc_([a-z_]+)\.go$"
42-
service="^tencentcloud\/service_([a-z_]+)\.go$"
42+
service="^tencentcloud\/([a-z_]+)\.go$"
4343
test="([a-z_]+)_test$"
4444

4545
items=""
@@ -54,7 +54,8 @@ for file in ${diffs}; do
5454
fileType="data source"
5555
module="tencentcloud_${BASH_REMATCH[1]}"
5656
elif [[ $file =~ $service ]]; then
57-
module="tencentcloud_${BASH_REMATCH[1]}"
57+
fileType="service"
58+
module="${BASH_REMATCH[1]}"
5859
fi
5960

6061
if [[ $module =~ $test ]]; then
@@ -73,7 +74,7 @@ LANG=en_US
7374
dateStr=$(date +"%B %d, %Y")
7475

7576
template="
76-
## $version $dateStr
77+
## $version ($dateStr)
7778
\n
7879
\nFEATURES:
7980
\nDEPRECATED:

0 commit comments

Comments
 (0)